Skip to content
Snippets Groups Projects
Commit 2121b160 authored by Ronald S. Bultje's avatar Ronald S. Bultje
Browse files

Remove alpha channel from default colorspace tables, since it is unused. See

"qtpalette.h" thread on mailinglist.

Originally committed as revision 18144 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3c3e0680
No related branches found
No related tags found
No related merge requests found
...@@ -881,9 +881,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) ...@@ -881,9 +881,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
color_table = ff_qt_default_palette_256; color_table = ff_qt_default_palette_256;
for (j = 0; j < color_count; j++) { for (j = 0; j < color_count; j++) {
r = color_table[j * 4 + 0]; r = color_table[j * 3 + 0];
g = color_table[j * 4 + 1]; g = color_table[j * 3 + 1];
b = color_table[j * 4 + 2]; b = color_table[j * 3 + 2];
st->codec->palctrl->palette[j] = st->codec->palctrl->palette[j] =
(r << 16) | (g << 8) | (b); (r << 16) | (g << 8) | (b);
} }
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment