[FFmpeg-cvslog] Make the avi palette opaque.

Carl Eugen Hoyos git at videolan.org
Sat Dec 24 03:43:09 CET 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sat Dec 24 03:41:50 2011 +0100| [64cafe340bd5ddfe704efa95cd9f21471ca12a12] | committer: Carl Eugen Hoyos

Make the avi palette opaque.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64cafe340bd5ddfe704efa95cd9f21471ca12a12
---

 libavformat/avidec.c |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 9191b62..6112af4 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -623,12 +623,8 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
 
                         pal_size = FFMIN(pal_size, st->codec->extradata_size);
                         pal_src = st->codec->extradata + st->codec->extradata_size - pal_size;
-#if HAVE_BIGENDIAN
                         for (i = 0; i < pal_size/4; i++)
-                            ast->pal[i] = AV_RL32(pal_src+4*i);
-#else
-                        memcpy(ast->pal, pal_src, pal_size);
-#endif
+                            ast->pal[i] = 0xFF<<24 | AV_RL32(pal_src+4*i);
                         ast->has_pal = 1;
                     }
 
@@ -971,7 +967,7 @@ start_sync:
                 avio_rl16(pb); //flags
 
                 for (; k <= last; k++)
-                    ast->pal[k] = avio_rb32(pb)>>8;// b + (g << 8) + (r << 16);
+                    ast->pal[k] = 0xFF<<24 | avio_rb32(pb)>>8;// b + (g << 8) + (r << 16);
                 ast->has_pal= 1;
                 goto start_sync;
             } else if(   ((ast->prefix_count<5 || sync+9 > i) && d[2]<128 && d[3]<128) ||



More information about the ffmpeg-cvslog mailing list