diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 13:54:05 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:07:17 +0200 |
commit | 6c28d657548ae6f3289c664700eeadabc537b869 (patch) | |
tree | 3bcac61082aac1e626501f4e2ba015b87b262e4b /libavcodec/ituh263dec.c | |
parent | d1b357d78b62e8560da1cd52326f6f5031a2cc69 (diff) | |
download | ffmpeg-6c28d657548ae6f3289c664700eeadabc537b869.tar.gz |
rv: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/ituh263dec.c')
-rw-r--r-- | libavcodec/ituh263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index 6e6e013314..20c2d7c23f 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -465,7 +465,7 @@ static int h263_decode_block(MpegEncContext * s, DCTELEM * block, component = (n <= 3 ? 0 : n - 4 + 1); level = s->last_dc[component]; if (s->rv10_first_dc_coded[component]) { - diff = rv_decode_dc(s, n); + diff = ff_rv_decode_dc(s, n); if (diff == 0xffff) return -1; level += diff; |