]> git.sesse.net Git - ffmpeg/commitdiff
h264_parser: use av_assert
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 25 Jun 2012 19:12:22 +0000 (21:12 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 25 Jun 2012 21:10:45 +0000 (23:10 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/h264_parser.c

index 3d557599e0d86f2e3cc89baae32eafed67bb36ca..6a7acdcb2854b4607936386b63eb6c90b3225785 100644 (file)
@@ -31,8 +31,6 @@
 #include "h264data.h"
 #include "golomb.h"
 
-#include <assert.h>
-
 
 static int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size)
 {
@@ -324,7 +322,7 @@ static int h264_parse(AVCodecParserContext *s,
         }
 
         if(next<0 && next != END_NOT_FOUND){
-            assert(pc->last_index + next >= 0 );
+            av_assert1(pc->last_index + next >= 0 );
             ff_h264_find_frame_end(h, &pc->buffer[pc->last_index + next], -next); //update state
         }
     }