libavcodec/mpegvideo: change some asserts to av_assert0()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c88bbc01eb
commit
205f423e28
@ -386,10 +386,10 @@ int ff_alloc_picture(MpegEncContext *s, Picture *pic, int shared)
|
|||||||
free_picture_tables(pic);
|
free_picture_tables(pic);
|
||||||
|
|
||||||
if (shared) {
|
if (shared) {
|
||||||
assert(pic->f.data[0]);
|
av_assert0(pic->f.data[0]);
|
||||||
pic->shared = 1;
|
pic->shared = 1;
|
||||||
} else {
|
} else {
|
||||||
assert(!pic->f.data[0]);
|
av_assert0(!pic->f.data[0]);
|
||||||
|
|
||||||
if (alloc_frame_buffer(s, pic) < 0)
|
if (alloc_frame_buffer(s, pic) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
@ -1669,7 +1669,7 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
|
|||||||
return ret;
|
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]));
|
s->last_picture_ptr->f.data[0]));
|
||||||
|
|
||||||
if (s->picture_structure!= PICT_FRAME) {
|
if (s->picture_structure!= PICT_FRAME) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user