diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-08-05 10:19:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-08-05 10:19:43 +0000 |
commit | 59c673d5180cd85f367df0badf435f09513a5947 (patch) | |
tree | 3b9e8bf6901570b3a18d6f84a4f41496279e3c7f /libavcodec/mpegvideo.c | |
parent | 2864dfd5794a5a9bff612e730179a9026f042a06 (diff) | |
download | ffmpeg-59c673d5180cd85f367df0badf435f09513a5947.tar.gz |
cleanup / fixes
Originally committed as revision 2103 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 1b01aa32d5..4ccc7d571a 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -951,7 +951,7 @@ int MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) assert(s->last_picture_ptr==NULL || s->out_format != FMT_H264 || s->codec_id == CODEC_ID_SVQ3); /* mark&release old frames */ - if (s->pict_type != B_TYPE && s->last_picture_ptr) { + if (s->pict_type != B_TYPE && s->last_picture_ptr && s->last_picture_ptr->data[0]) { avctx->release_buffer(avctx, (AVFrame*)s->last_picture_ptr); /* release forgotten pictures */ |