Mercurial > libavcodec.hg
changeset 7318:cd231f79c52b libavcodec
Try to fix my latest 100l fate SVQ3 breakage.
author | michael |
---|---|
date | Sat, 19 Jul 2008 12:21:09 +0000 |
parents | c010b69e12eb |
children | d0937cc65db3 |
files | h264.c |
diffstat | 1 files changed, 9 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/h264.c Sat Jul 19 11:57:29 2008 +0000 +++ b/h264.c Sat Jul 19 12:21:09 2008 +0000 @@ -2259,7 +2259,15 @@ memset(h->slice_table, -1, (s->mb_height*s->mb_stride-1) * sizeof(uint8_t)); // s->decode= (s->flags&CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.reference /*|| h->contains_intra*/ || 1; - s->current_picture_ptr->reference= 0; + + // We mark the current picture as non reference after allocating it, so + // that if we break out due to an error it can be released automatically + // in the next MPV_frame_start(). + // SVQ3 as well as most other codecs have only last/next/current and thus + // get released even with set reference, besides SVQ3 and others do not + // mark frames as reference later "naturally". + if(s->codec_id != CODEC_ID_SVQ3) + s->current_picture_ptr->reference= 0; return 0; }