[FFmpeg-cvslog] h264probe: Don't error out on bits that no longer are reserved

Michael Niedermayer git at videolan.org
Thu Oct 4 13:18:03 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon May  9 16:05:29 2011 +0200| [769ed3057efec12820f9245f6ad3fa5bcfc95c5e] | committer: Martin Storsjö

h264probe: Don't error out on bits that no longer are reserved

Signed-off-by: Martin Storsjö <martin at martin.st>

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

 libavformat/h264dec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/h264dec.c b/libavformat/h264dec.c
index 8070086..0c85bae 100644
--- a/libavformat/h264dec.c
+++ b/libavformat/h264dec.c
@@ -54,7 +54,7 @@ static int h264_probe(AVProbeData *p)
             case     1:   sli++; break;
             case     5:   idr++; break;
             case     7:
-                if(p->buf[i+2]&0x0F)
+                if (p->buf[i + 2] & 0x03)
                     return 0;
                 sps++;
                 break;



More information about the ffmpeg-cvslog mailing list