diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-05 09:21:55 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-05 09:21:55 +0000 |
commit | eaa7557c73aa40dcea2a0444e86820acff921ef1 (patch) | |
tree | ee6998bb6253ade1d0a9c6721c24fa746c1a6a47 /libavcodec/mdec.c | |
parent | 56be950afaac0322dd46e419f62613fce551619a (diff) | |
download | ffmpeg-eaa7557c73aa40dcea2a0444e86820acff921ef1.tar.gz |
add proper ff_ prefix to new extern symbols
Originally committed as revision 9479 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdec.c')
-rw-r--r-- | libavcodec/mdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index ee43b27772..1f63bbd7b7 100644 --- a/libavcodec/mdec.c +++ b/libavcodec/mdec.c @@ -60,7 +60,7 @@ static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n) { int level, diff, i, j, run; int component; - RLTable *rl = &rl_mpeg1; + RLTable *rl = &ff_rl_mpeg1; uint8_t * const scantable= a->scantable.permutated; const uint16_t *quant_matrix= ff_mpeg1_default_intra_matrix; const int qscale= a->qscale; |