diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-09 11:28:46 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:22 +0200 |
commit | ddce8953a5056800ec795df2dfd84fc17a11b5fc (patch) | |
tree | a5bd29bb71950114ae9504e5f581bb542d5eca37 /libavcodec/h263dec.c | |
parent | 167f3b8de71657dec0948f0a859259f35b318fac (diff) | |
download | ffmpeg-ddce8953a5056800ec795df2dfd84fc17a11b5fc.tar.gz |
h263: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index f056d1fbe2..5404c90153 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -113,7 +113,7 @@ av_cold int ff_h263_decode_init(AVCodecContext *avctx) if (MPV_common_init(s) < 0) return -1; - h263_decode_init_vlc(s); + ff_h263_decode_init_vlc(s); return 0; } @@ -421,7 +421,7 @@ retry: } else if (CONFIG_FLV_DECODER && s->h263_flv) { ret = ff_flv_decode_picture_header(s); } else { - ret = h263_decode_picture_header(s); + ret = ff_h263_decode_picture_header(s); } if(ret==FRAME_SKIPPED) return get_consumed_bytes(s, buf_size); |