diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-10 19:42:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-10 19:42:18 +0000 |
commit | a90466f741245240b80f5477b63d5e4488a96d6c (patch) | |
tree | 4e783cec0328f7bb6968fea2e627756cbe42304b /libavformat/mov.c | |
parent | 44f110f509d0ab4fc73b9f2363a97c6577d3850f (diff) | |
download | ffmpeg-a90466f741245240b80f5477b63d5e4488a96d6c.tar.gz |
prefix global
Originally committed as revision 2994 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 4de976ac08..b325ceb6d7 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -903,11 +903,11 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) /* if flag bit 3 is set, use the default palette */ color_count = 1 << color_depth; if (color_depth == 2) - color_table = qt_default_palette_4; + color_table = ff_qt_default_palette_4; else if (color_depth == 4) - color_table = qt_default_palette_16; + color_table = ff_qt_default_palette_16; else - color_table = qt_default_palette_256; + color_table = ff_qt_default_palette_256; for (j = 0; j < color_count; j++) { r = color_table[j * 4 + 0]; |