Mercurial > libavcodec.hg
changeset 7385:617eababb511 libavcodec
Clear long_ref when a frame is no longer a long_ref.
author | michael |
---|---|
date | Fri, 25 Jul 2008 11:52:40 +0000 |
parents | 8b9a02536781 |
children | 00b1f0ecb386 |
files | h264.c |
diffstat | 1 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/h264.c Fri Jul 25 11:48:32 2008 +0000 +++ b/h264.c Fri Jul 25 11:52:40 2008 +0000 @@ -61,6 +61,7 @@ static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc); static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize); static void filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize); +static void remove_long_at_index(H264Context *h, int i); static av_always_inline uint32_t pack16to32(int a, int b){ #ifdef WORDS_BIGENDIAN @@ -3297,10 +3298,10 @@ for(i=0; i<16; i++){ if (h->long_ref[i] != NULL) { unreference_pic(h, h->long_ref[i], 0); - h->long_ref[i]= NULL; - } - } - h->long_ref_count=0; + remove_long_at_index(h, i); + } + } + assert(h->long_ref_count==0); for(i=0; i<h->short_ref_count; i++){ unreference_pic(h, h->short_ref[i], 0); @@ -3393,6 +3394,8 @@ * @param i index into h->long_ref of picture to remove. */ static void remove_long_at_index(H264Context *h, int i){ + assert(h->long_ref[i]->long_ref == 1); + h->long_ref[i]->long_ref= 0; h->long_ref[i]= NULL; h->long_ref_count--; }