Commit 47af6239 authored by Reimar Döffinger's avatar Reimar Döffinger

Since the 24 bit format is decoded to endian-dependant

BGR32 and not BGR24, do not swap red and blue on big-endian
for this format as well.

Originally committed as revision 24863 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 751c5093
...@@ -226,11 +226,7 @@ static int make_ydt24_entry(int p1, int p2, int16_t *ydt) ...@@ -226,11 +226,7 @@ static int make_ydt24_entry(int p1, int p2, int16_t *ydt)
return (lo + (hi << 8) + (hi << 16)) << 1; return (lo + (hi << 8) + (hi << 16)) << 1;
} }
#if HAVE_BIGENDIAN
static int make_cdt24_entry(int p2, int p1, int16_t *cdt)
#else
static int make_cdt24_entry(int p1, int p2, int16_t *cdt) static int make_cdt24_entry(int p1, int p2, int16_t *cdt)
#endif
{ {
int r, b; int r, b;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment