Commit c8f4c83e authored by Michael Niedermayer's avatar Michael Niedermayer

h.263dec: use av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 258dfff8
...@@ -42,9 +42,6 @@ ...@@ -42,9 +42,6 @@
#include "flv.h" #include "flv.h"
#include "mpeg4video.h" #include "mpeg4video.h"
//#undef NDEBUG
//#include <assert.h>
// The defines below define the number of bits that are read at once for // The defines below define the number of bits that are read at once for
// reading vlc values. Changing these may improve speed and data cache needs // reading vlc values. Changing these may improve speed and data cache needs
// be aware though that decreasing them may need the number of stages that is // be aware though that decreasing them may need the number of stages that is
...@@ -212,7 +209,7 @@ static int h263_decode_gob_header(MpegEncContext *s) ...@@ -212,7 +209,7 @@ static int h263_decode_gob_header(MpegEncContext *s)
*/ */
const uint8_t *ff_h263_find_resync_marker(const uint8_t *av_restrict p, const uint8_t *av_restrict end) const uint8_t *ff_h263_find_resync_marker(const uint8_t *av_restrict p, const uint8_t *av_restrict end)
{ {
assert(p < end); av_assert2(p < end);
end-=2; end-=2;
p++; p++;
...@@ -608,7 +605,7 @@ int ff_h263_decode_mb(MpegEncContext *s, ...@@ -608,7 +605,7 @@ int ff_h263_decode_mb(MpegEncContext *s,
const int xy= s->mb_x + s->mb_y * s->mb_stride; const int xy= s->mb_x + s->mb_y * s->mb_stride;
int cbpb = 0, pb_mv_count = 0; int cbpb = 0, pb_mv_count = 0;
assert(!s->h263_pred); av_assert2(!s->h263_pred);
if (s->pict_type == AV_PICTURE_TYPE_P) { if (s->pict_type == AV_PICTURE_TYPE_P) {
do{ do{
...@@ -748,7 +745,7 @@ int ff_h263_decode_mb(MpegEncContext *s, ...@@ -748,7 +745,7 @@ int ff_h263_decode_mb(MpegEncContext *s,
}else }else
cbp=0; cbp=0;
assert(!s->mb_intra); av_assert2(!s->mb_intra);
if(IS_QUANT(mb_type)){ if(IS_QUANT(mb_type)){
h263_decode_dquant(s); h263_decode_dquant(s);
......
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