[FFmpeg-cvslog] libavcodec/mpegvideo: change some asserts to av_assert0()
Michael Niedermayer
git at videolan.org
Fri Jul 26 22:38:05 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Jul 26 21:46:47 2013 +0200| [205f423e28bcb1070bf83906371ed2fa87735396] | committer: Michael Niedermayer
libavcodec/mpegvideo: change some asserts to av_assert0()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=205f423e28bcb1070bf83906371ed2fa87735396
---
libavcodec/mpegvideo.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 12123cd..4116f34 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -386,10 +386,10 @@ int ff_alloc_picture(MpegEncContext *s, Picture *pic, int shared)
free_picture_tables(pic);
if (shared) {
- assert(pic->f.data[0]);
+ av_assert0(pic->f.data[0]);
pic->shared = 1;
} else {
- assert(!pic->f.data[0]);
+ av_assert0(!pic->f.data[0]);
if (alloc_frame_buffer(s, pic) < 0)
return -1;
@@ -1669,7 +1669,7 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
return ret;
}
- assert(s->pict_type == AV_PICTURE_TYPE_I || (s->last_picture_ptr &&
+ av_assert0(s->pict_type == AV_PICTURE_TYPE_I || (s->last_picture_ptr &&
s->last_picture_ptr->f.data[0]));
if (s->picture_structure!= PICT_FRAME) {
More information about the ffmpeg-cvslog
mailing list