Commit 9c0e4624 authored by Michael Niedermayer's avatar Michael Niedermayer

Make remove_long() call unreference_pic() internally.

Originally committed as revision 14393 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1cea5d0d
...@@ -61,7 +61,7 @@ static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp); ...@@ -61,7 +61,7 @@ static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp);
static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc); 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( 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 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 Picture * remove_long(H264Context *h, int i); static Picture * remove_long(H264Context *h, int i, int ref_mask);
static av_always_inline uint32_t pack16to32(int a, int b){ static av_always_inline uint32_t pack16to32(int a, int b){
#ifdef WORDS_BIGENDIAN #ifdef WORDS_BIGENDIAN
...@@ -3297,10 +3297,7 @@ static void idr(H264Context *h){ ...@@ -3297,10 +3297,7 @@ static void idr(H264Context *h){
int i; int i;
for(i=0; i<16; i++){ for(i=0; i<16; i++){
if (h->long_ref[i] != NULL) { remove_long(h, i, 0);
unreference_pic(h, h->long_ref[i], 0);
remove_long(h, i);
}
} }
assert(h->long_ref_count==0); assert(h->long_ref_count==0);
...@@ -3393,15 +3390,17 @@ static Picture * remove_short(H264Context *h, int frame_num){ ...@@ -3393,15 +3390,17 @@ static Picture * remove_short(H264Context *h, int frame_num){
* that list. * that list.
* @return the removed picture or NULL if an error occurs * @return the removed picture or NULL if an error occurs
*/ */
static Picture * remove_long(H264Context *h, int i){ static Picture * remove_long(H264Context *h, int i, int ref_mask){
Picture *pic; Picture *pic;
pic= h->long_ref[i]; pic= h->long_ref[i];
if (pic){ if (pic){
assert(h->long_ref[i]->long_ref == 1); if(unreference_pic(h, pic, ref_mask)){
h->long_ref[i]->long_ref= 0; assert(h->long_ref[i]->long_ref == 1);
h->long_ref[i]= NULL; h->long_ref[i]->long_ref= 0;
h->long_ref_count--; h->long_ref[i]= NULL;
h->long_ref_count--;
}
} }
return pic; return pic;
...@@ -3474,8 +3473,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ ...@@ -3474,8 +3473,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
} else { } else {
int frame_num = mmco[i].short_pic_num >> FIELD_PICTURE; int frame_num = mmco[i].short_pic_num >> FIELD_PICTURE;
pic= remove_long(h, mmco[i].long_arg); remove_long(h, mmco[i].long_arg, 0);
if(pic) unreference_pic(h, pic, 0);
h->long_ref[ mmco[i].long_arg ]= remove_short(h, frame_num); h->long_ref[ mmco[i].long_arg ]= remove_short(h, frame_num);
if (h->long_ref[ mmco[i].long_arg ]){ if (h->long_ref[ mmco[i].long_arg ]){
...@@ -3488,8 +3486,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ ...@@ -3488,8 +3486,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
j = pic_num_extract(h, mmco[i].long_arg, &structure); j = pic_num_extract(h, mmco[i].long_arg, &structure);
pic = h->long_ref[j]; pic = h->long_ref[j];
if (pic) { if (pic) {
if (unreference_pic(h, pic, structure ^ PICT_FRAME)) remove_long(h, j, structure ^ PICT_FRAME);
remove_long(h, j);
} else if(s->avctx->debug&FF_DEBUG_MMCO) } else if(s->avctx->debug&FF_DEBUG_MMCO)
av_log(h->s.avctx, AV_LOG_DEBUG, "mmco: unref long failure\n"); av_log(h->s.avctx, AV_LOG_DEBUG, "mmco: unref long failure\n");
break; break;
...@@ -3503,8 +3500,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ ...@@ -3503,8 +3500,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
*/ */
if (h->long_ref[mmco[i].long_arg] != s->current_picture_ptr) { if (h->long_ref[mmco[i].long_arg] != s->current_picture_ptr) {
pic= remove_long(h, mmco[i].long_arg); remove_long(h, mmco[i].long_arg, 0);
if(pic) unreference_pic(h, pic, 0);
h->long_ref[ mmco[i].long_arg ]= s->current_picture_ptr; h->long_ref[ mmco[i].long_arg ]= s->current_picture_ptr;
h->long_ref[ mmco[i].long_arg ]->long_ref=1; h->long_ref[ mmco[i].long_arg ]->long_ref=1;
...@@ -3518,8 +3514,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ ...@@ -3518,8 +3514,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
assert(mmco[i].long_arg <= 16); assert(mmco[i].long_arg <= 16);
// just remove the long term which index is greater than new max // just remove the long term which index is greater than new max
for(j = mmco[i].long_arg; j<16; j++){ for(j = mmco[i].long_arg; j<16; j++){
pic = remove_long(h, j); remove_long(h, j, 0);
if (pic) unreference_pic(h, pic, 0);
} }
break; break;
case MMCO_RESET: case MMCO_RESET:
...@@ -3528,8 +3523,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ ...@@ -3528,8 +3523,7 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
if(pic) unreference_pic(h, pic, 0); if(pic) unreference_pic(h, pic, 0);
} }
for(j = 0; j < 16; j++) { for(j = 0; j < 16; j++) {
pic= remove_long(h, j); remove_long(h, j, 0);
if(pic) unreference_pic(h, pic, 0);
} }
s->current_picture_ptr->poc= s->current_picture_ptr->poc=
s->current_picture_ptr->field_poc[0]= s->current_picture_ptr->field_poc[0]=
...@@ -3590,13 +3584,12 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ ...@@ -3590,13 +3584,12 @@ static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
break; break;
assert(i < 16); assert(i < 16);
pic = h->long_ref[i]; remove_long(h, i, 0);
remove_long(h, i);
} else { } else {
pic = h->short_ref[h->short_ref_count - 1]; pic = h->short_ref[h->short_ref_count - 1];
remove_short_at_index(h, h->short_ref_count - 1); remove_short_at_index(h, h->short_ref_count - 1);
unreference_pic(h, pic, 0);
} }
unreference_pic(h, pic, 0);
} }
print_short_term(h); print_short_term(h);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment