Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-07-05 13:21:55 +0400
committerAurelien Jacobs <aurel@gnuage.org>2007-07-05 13:21:55 +0400
commiteaa7557c73aa40dcea2a0444e86820acff921ef1 (patch)
treeee6998bb6253ade1d0a9c6721c24fa746c1a6a47 /libavcodec/mdec.c
parent56be950afaac0322dd46e419f62613fce551619a (diff)
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.c2
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;