Browse Source

h261dec: use av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
07732b4f09
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavcodec/h261dec.c

+ 3
- 2
libavcodec/h261dec.c View File

@@ -25,6 +25,7 @@
* H.261 decoder.
*/

#include "libavutil/avassert.h"
#include "dsputil.h"
#include "avcodec.h"
#include "mpegvideo.h"
@@ -629,8 +630,8 @@ retry:
}
ff_MPV_frame_end(s);

assert(s->current_picture.f.pict_type == s->current_picture_ptr->f.pict_type);
assert(s->current_picture.f.pict_type == s->pict_type);
av_assert0(s->current_picture.f.pict_type == s->current_picture_ptr->f.pict_type);
av_assert0(s->current_picture.f.pict_type == s->pict_type);

*pict = s->current_picture_ptr->f;
ff_print_debug_info(s, pict);


Loading…
Cancel
Save