libavcodec/h264_refs.c
ea6f00c4
 /*
  * H.26L/H.264/AVC/JVT/14496-10/... reference picture handling
  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
ea6f00c4
  * H.264 / AVC / MPEG4 part10  reference picture handling.
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
 
7ac85f4b
 #include "libavutil/avassert.h"
ea6f00c4
 #include "internal.h"
 #include "avcodec.h"
 #include "h264.h"
 #include "golomb.h"
 
 //#undef NDEBUG
 #include <assert.h>
 
 
 static void pic_as_field(Picture *pic, const int parity){
     int i;
     for (i = 0; i < 4; ++i) {
         if (parity == PICT_BOTTOM_FIELD)
657ccb5a
             pic->f.data[i] += pic->f.linesize[i];
         pic->f.reference    = parity;
         pic->f.linesize[i] *= 2;
ea6f00c4
     }
     pic->poc= pic->field_poc[parity == PICT_BOTTOM_FIELD];
 }
 
 static int split_field_copy(Picture *dest, Picture *src,
                             int parity, int id_add){
657ccb5a
     int match = !!(src->f.reference & parity);
ea6f00c4
 
     if (match) {
         *dest = *src;
         if(parity != PICT_FRAME){
             pic_as_field(dest, parity);
             dest->pic_id *= 2;
             dest->pic_id += id_add;
         }
     }
 
     return match;
 }
 
 static int build_def_list(Picture *def, Picture **in, int len, int is_long, int sel){
     int i[2]={0};
     int index=0;
 
     while(i[0]<len || i[1]<len){
657ccb5a
         while (i[0] < len && !(in[ i[0] ] && (in[ i[0] ]->f.reference & sel)))
ea6f00c4
             i[0]++;
657ccb5a
         while (i[1] < len && !(in[ i[1] ] && (in[ i[1] ]->f.reference & (sel^3))))
ea6f00c4
             i[1]++;
         if(i[0] < len){
             in[ i[0] ]->pic_id= is_long ? i[0] : in[ i[0] ]->frame_num;
             split_field_copy(&def[index++], in[ i[0]++ ], sel  , 1);
         }
         if(i[1] < len){
             in[ i[1] ]->pic_id= is_long ? i[1] : in[ i[1] ]->frame_num;
             split_field_copy(&def[index++], in[ i[1]++ ], sel^3, 0);
         }
     }
 
     return index;
 }
 
 static int add_sorted(Picture **sorted, Picture **src, int len, int limit, int dir){
     int i, best_poc;
     int out_i= 0;
 
     for(;;){
         best_poc= dir ? INT_MIN : INT_MAX;
 
         for(i=0; i<len; i++){
             const int poc= src[i]->poc;
             if(((poc > limit) ^ dir) && ((poc < best_poc) ^ dir)){
                 best_poc= poc;
                 sorted[out_i]= src[i];
             }
         }
         if(best_poc == (dir ? INT_MIN : INT_MAX))
             break;
         limit= sorted[out_i++]->poc - dir;
     }
     return out_i;
 }
 
 int ff_h264_fill_default_ref_list(H264Context *h){
     int i, len;
 
ce5e49b0
     if(h->slice_type_nos==AV_PICTURE_TYPE_B){
ea6f00c4
         Picture *sorted[32];
         int cur_poc, list;
         int lens[2];
 
         if(FIELD_PICTURE)
2c541554
             cur_poc= h->cur_pic_ptr->field_poc[h->picture_structure == PICT_BOTTOM_FIELD];
ea6f00c4
         else
2c541554
             cur_poc= h->cur_pic_ptr->poc;
ea6f00c4
 
         for(list= 0; list<2; list++){
             len= add_sorted(sorted    , h->short_ref, h->short_ref_count, cur_poc, 1^list);
             len+=add_sorted(sorted+len, h->short_ref, h->short_ref_count, cur_poc, 0^list);
35782bfb
             av_assert0(len<=32);
2c541554
             len= build_def_list(h->default_ref_list[list]    , sorted     , len, 0, h->picture_structure);
             len+=build_def_list(h->default_ref_list[list]+len, h->long_ref, 16 , 1, h->picture_structure);
35782bfb
             av_assert0(len<=32);
ea6f00c4
 
             if(len < h->ref_count[list])
                 memset(&h->default_ref_list[list][len], 0, sizeof(Picture)*(h->ref_count[list] - len));
             lens[list]= len;
         }
 
         if(lens[0] == lens[1] && lens[1] > 1){
657ccb5a
             for (i = 0; h->default_ref_list[0][i].f.data[0] == h->default_ref_list[1][i].f.data[0] && i < lens[0]; i++);
ea6f00c4
             if(i == lens[0])
                 FFSWAP(Picture, h->default_ref_list[1][0], h->default_ref_list[1][1]);
         }
     }else{
2c541554
         len = build_def_list(h->default_ref_list[0]    , h->short_ref, h->short_ref_count, 0, h->picture_structure);
         len+= build_def_list(h->default_ref_list[0]+len, h-> long_ref, 16                , 1, h->picture_structure);
35782bfb
         av_assert0(len<=32);
ea6f00c4
         if(len < h->ref_count[0])
             memset(&h->default_ref_list[0][len], 0, sizeof(Picture)*(h->ref_count[0] - len));
     }
 #ifdef TRACE
     for (i=0; i<h->ref_count[0]; i++) {
2c541554
         tprintf(h->avctx, "List0: %s fn:%d 0x%p\n", (h->default_ref_list[0][i].long_ref ? "LT" : "ST"), h->default_ref_list[0][i].pic_id, h->default_ref_list[0][i].f.data[0]);
ea6f00c4
     }
ce5e49b0
     if(h->slice_type_nos==AV_PICTURE_TYPE_B){
ea6f00c4
         for (i=0; i<h->ref_count[1]; i++) {
2c541554
             tprintf(h->avctx, "List1: %s fn:%d 0x%p\n", (h->default_ref_list[1][i].long_ref ? "LT" : "ST"), h->default_ref_list[1][i].pic_id, h->default_ref_list[1][i].f.data[0]);
ea6f00c4
         }
     }
 #endif
     return 0;
 }
 
 static void print_short_term(H264Context *h);
 static void print_long_term(H264Context *h);
 
 /**
  * Extract structure information about the picture described by pic_num in
  * the current decoding context (frame or field). Note that pic_num is
  * picture number without wrapping (so, 0<=pic_num<max_pic_num).
  * @param pic_num picture number for which to extract structure information
  * @param structure one of PICT_XXX describing structure of picture
  *                      with pic_num
  * @return frame number (short term) or long term index of picture
  *         described by pic_num
  */
 static int pic_num_extract(H264Context *h, int pic_num, int *structure){
2c541554
     *structure = h->picture_structure;
ea6f00c4
     if(FIELD_PICTURE){
         if (!(pic_num & 1))
             /* opposite field */
             *structure ^= PICT_FRAME;
         pic_num >>= 1;
     }
 
     return pic_num;
 }
 
 int ff_h264_decode_ref_pic_list_reordering(H264Context *h){
     int list, index, pic_structure;
 
     print_short_term(h);
     print_long_term(h);
 
     for(list=0; list<h->list_count; list++){
         memcpy(h->ref_list[list], h->default_ref_list[list], sizeof(Picture)*h->ref_count[list]);
 
2c541554
         if(get_bits1(&h->gb)){
ea6f00c4
             int pred= h->curr_pic_num;
 
             for(index=0; ; index++){
2c541554
                 unsigned int reordering_of_pic_nums_idc= get_ue_golomb_31(&h->gb);
ea6f00c4
                 unsigned int pic_id;
                 int i;
                 Picture *ref = NULL;
 
                 if(reordering_of_pic_nums_idc==3)
                     break;
 
                 if(index >= h->ref_count[list]){
2c541554
                     av_log(h->avctx, AV_LOG_ERROR, "reference count overflow\n");
ea6f00c4
                     return -1;
                 }
 
                 if(reordering_of_pic_nums_idc<3){
                     if(reordering_of_pic_nums_idc<2){
2c541554
                         const unsigned int abs_diff_pic_num= get_ue_golomb(&h->gb) + 1;
ea6f00c4
                         int frame_num;
 
                         if(abs_diff_pic_num > h->max_pic_num){
2c541554
                             av_log(h->avctx, AV_LOG_ERROR, "abs_diff_pic_num overflow\n");
ea6f00c4
                             return -1;
                         }
 
                         if(reordering_of_pic_nums_idc == 0) pred-= abs_diff_pic_num;
                         else                                pred+= abs_diff_pic_num;
                         pred &= h->max_pic_num - 1;
 
                         frame_num = pic_num_extract(h, pred, &pic_structure);
 
                         for(i= h->short_ref_count-1; i>=0; i--){
                             ref = h->short_ref[i];
657ccb5a
                             assert(ref->f.reference);
ea6f00c4
                             assert(!ref->long_ref);
                             if(
                                    ref->frame_num == frame_num &&
657ccb5a
                                    (ref->f.reference & pic_structure)
ea6f00c4
                               )
                                 break;
                         }
                         if(i>=0)
                             ref->pic_id= pred;
                     }else{
                         int long_idx;
2c541554
                         pic_id= get_ue_golomb(&h->gb); //long_term_pic_idx
ea6f00c4
 
                         long_idx= pic_num_extract(h, pic_id, &pic_structure);
 
                         if(long_idx>31){
2c541554
                             av_log(h->avctx, AV_LOG_ERROR, "long_term_pic_idx overflow\n");
ea6f00c4
                             return -1;
                         }
                         ref = h->long_ref[long_idx];
657ccb5a
                         assert(!(ref && !ref->f.reference));
                         if (ref && (ref->f.reference & pic_structure)) {
ea6f00c4
                             ref->pic_id= pic_id;
                             assert(ref->long_ref);
                             i=0;
                         }else{
                             i=-1;
                         }
                     }
 
                     if (i < 0) {
2c541554
                         av_log(h->avctx, AV_LOG_ERROR, "reference picture missing during reorder\n");
ea6f00c4
                         memset(&h->ref_list[list][index], 0, sizeof(Picture)); //FIXME
                     } else {
                         for(i=index; i+1<h->ref_count[list]; i++){
                             if(ref->long_ref == h->ref_list[list][i].long_ref && ref->pic_id == h->ref_list[list][i].pic_id)
                                 break;
                         }
                         for(; i > index; i--){
                             h->ref_list[list][i]= h->ref_list[list][i-1];
                         }
                         h->ref_list[list][index]= *ref;
                         if (FIELD_PICTURE){
                             pic_as_field(&h->ref_list[list][index], pic_structure);
                         }
                     }
                 }else{
2c541554
                     av_log(h->avctx, AV_LOG_ERROR, "illegal reordering_of_pic_nums_idc\n");
ea6f00c4
                     return -1;
                 }
             }
         }
     }
     for(list=0; list<h->list_count; list++){
         for(index= 0; index < h->ref_count[list]; index++){
657ccb5a
             if (!h->ref_list[list][index].f.data[0]) {
c230af9b
                 int i;
b7fe35c9
                 av_log(h->avctx, AV_LOG_ERROR, "Missing reference picture, default is %d\n", h->default_ref_list[list][0].poc);
c230af9b
                 for (i=0; i<FF_ARRAY_ELEMS(h->last_pocs); i++)
                     h->last_pocs[i] = INT_MIN;
657ccb5a
                 if (h->default_ref_list[list][0].f.data[0])
ea6f00c4
                     h->ref_list[list][index]= h->default_ref_list[list][0];
                 else
                     return -1;
             }
         }
     }
 
     return 0;
 }
 
 void ff_h264_fill_mbaff_ref_list(H264Context *h){
     int list, i, j;
237d31e0
     for(list=0; list<h->list_count; list++){
ea6f00c4
         for(i=0; i<h->ref_count[list]; i++){
             Picture *frame = &h->ref_list[list][i];
             Picture *field = &h->ref_list[list][16+2*i];
             field[0] = *frame;
             for(j=0; j<3; j++)
657ccb5a
                 field[0].f.linesize[j] <<= 1;
             field[0].f.reference = PICT_TOP_FIELD;
ea6f00c4
             field[0].poc= field[0].field_poc[0];
             field[1] = field[0];
             for(j=0; j<3; j++)
657ccb5a
                 field[1].f.data[j] += frame->f.linesize[j];
             field[1].f.reference = PICT_BOTTOM_FIELD;
ea6f00c4
             field[1].poc= field[1].field_poc[1];
 
3d9137c8
             h->luma_weight[16+2*i][list][0] = h->luma_weight[16+2*i+1][list][0] = h->luma_weight[i][list][0];
             h->luma_weight[16+2*i][list][1] = h->luma_weight[16+2*i+1][list][1] = h->luma_weight[i][list][1];
ea6f00c4
             for(j=0; j<2; j++){
3d9137c8
                 h->chroma_weight[16+2*i][list][j][0] = h->chroma_weight[16+2*i+1][list][j][0] = h->chroma_weight[i][list][j][0];
                 h->chroma_weight[16+2*i][list][j][1] = h->chroma_weight[16+2*i+1][list][j][1] = h->chroma_weight[i][list][j][1];
ea6f00c4
             }
         }
     }
 }
 
 /**
  * Mark a picture as no longer needed for reference. The refmask
  * argument allows unreferencing of individual fields or the whole frame.
  * If the picture becomes entirely unreferenced, but is being held for
  * display purposes, it is marked as such.
  * @param refmask mask of fields to unreference; the mask is bitwise
  *                anded with the reference marking of pic
  * @return non-zero if pic becomes entirely unreferenced (except possibly
  *         for display purposes) zero if one of the fields remains in
  *         reference
  */
 static inline int unreference_pic(H264Context *h, Picture *pic, int refmask){
     int i;
657ccb5a
     if (pic->f.reference &= refmask) {
ea6f00c4
         return 0;
     } else {
         for(i = 0; h->delayed_pic[i]; i++)
             if(pic == h->delayed_pic[i]){
657ccb5a
                 pic->f.reference = DELAYED_PIC_REF;
ea6f00c4
                 break;
             }
         return 1;
     }
 }
 
 /**
  * Find a Picture in the short term reference list by frame number.
  * @param frame_num frame number to search for
  * @param idx the index into h->short_ref where returned picture is found
  *            undefined if no picture found.
  * @return pointer to the found picture, or NULL if no pic with the provided
  *                 frame number is found
  */
 static Picture * find_short(H264Context *h, int frame_num, int *idx){
     int i;
 
     for(i=0; i<h->short_ref_count; i++){
         Picture *pic= h->short_ref[i];
2c541554
         if(h->avctx->debug&FF_DEBUG_MMCO)
             av_log(h->avctx, AV_LOG_DEBUG, "%d %d %p\n", i, pic->frame_num, pic);
ea6f00c4
         if(pic->frame_num == frame_num) {
             *idx = i;
             return pic;
         }
     }
     return NULL;
 }
 
 /**
  * Remove a picture from the short term reference list by its index in
  * that list.  This does no checking on the provided index; it is assumed
  * to be valid. Other list entries are shifted down.
  * @param i index into h->short_ref of picture to remove.
  */
 static void remove_short_at_index(H264Context *h, int i){
     assert(i >= 0 && i < h->short_ref_count);
     h->short_ref[i]= NULL;
     if (--h->short_ref_count)
         memmove(&h->short_ref[i], &h->short_ref[i+1], (h->short_ref_count - i)*sizeof(Picture*));
 }
 
 /**
  *
  * @return the removed picture or NULL if an error occurs
  */
 static Picture * remove_short(H264Context *h, int frame_num, int ref_mask){
     Picture *pic;
     int i;
 
2c541554
     if(h->avctx->debug&FF_DEBUG_MMCO)
         av_log(h->avctx, AV_LOG_DEBUG, "remove short %d count %d\n", frame_num, h->short_ref_count);
ea6f00c4
 
     pic = find_short(h, frame_num, &i);
     if (pic){
         if(unreference_pic(h, pic, ref_mask))
         remove_short_at_index(h, i);
     }
 
     return pic;
 }
 
 /**
  * Remove a picture from the long term reference list by its index in
  * that list.
  * @return the removed picture or NULL if an error occurs
  */
 static Picture * remove_long(H264Context *h, int i, int ref_mask){
     Picture *pic;
 
     pic= h->long_ref[i];
     if (pic){
         if(unreference_pic(h, pic, ref_mask)){
             assert(h->long_ref[i]->long_ref == 1);
             h->long_ref[i]->long_ref= 0;
             h->long_ref[i]= NULL;
             h->long_ref_count--;
         }
     }
 
     return pic;
 }
 
 void ff_h264_remove_all_refs(H264Context *h){
     int i;
 
     for(i=0; i<16; i++){
         remove_long(h, i, 0);
     }
     assert(h->long_ref_count==0);
 
     for(i=0; i<h->short_ref_count; i++){
         unreference_pic(h, h->short_ref[i], 0);
         h->short_ref[i]= NULL;
     }
     h->short_ref_count=0;
87b98689
 
     memset(h->default_ref_list, 0, sizeof(h->default_ref_list));
     memset(h->ref_list, 0, sizeof(h->ref_list));
ea6f00c4
 }
 
 /**
  * print short term list
  */
 static void print_short_term(H264Context *h) {
     uint32_t i;
2c541554
     if(h->avctx->debug&FF_DEBUG_MMCO) {
         av_log(h->avctx, AV_LOG_DEBUG, "short term list:\n");
ea6f00c4
         for(i=0; i<h->short_ref_count; i++){
             Picture *pic= h->short_ref[i];
2c541554
             av_log(h->avctx, AV_LOG_DEBUG, "%d fn:%d poc:%d %p\n",
657ccb5a
                    i, pic->frame_num, pic->poc, pic->f.data[0]);
ea6f00c4
         }
     }
 }
 
 /**
  * print long term list
  */
 static void print_long_term(H264Context *h) {
     uint32_t i;
2c541554
     if(h->avctx->debug&FF_DEBUG_MMCO) {
         av_log(h->avctx, AV_LOG_DEBUG, "long term list:\n");
ea6f00c4
         for(i = 0; i < 16; i++){
             Picture *pic= h->long_ref[i];
             if (pic) {
2c541554
                 av_log(h->avctx, AV_LOG_DEBUG, "%d fn:%d poc:%d %p\n",
657ccb5a
                        i, pic->frame_num, pic->poc, pic->f.data[0]);
ea6f00c4
             }
         }
     }
 }
 
f6badba1
 static int check_opcodes(MMCO *mmco1, MMCO *mmco2, int n_mmcos)
 {
     int i;
 
     for (i = 0; i < n_mmcos; i++) {
dcbe1581
         if (mmco1[i].opcode != mmco2[i].opcode) {
             av_log(NULL, AV_LOG_ERROR, "MMCO opcode [%d, %d] at %d mismatches between slices\n",
                    mmco1[i].opcode, mmco2[i].opcode, i);
f6badba1
             return -1;
dcbe1581
         }
f6badba1
     }
 
     return 0;
 }
733f5990
 
ea382767
 int ff_generate_sliding_window_mmcos(H264Context *h, int first_slice)
f6badba1
 {
     MMCO mmco_temp[MAX_MMCO_COUNT], *mmco = first_slice ? h->mmco : mmco_temp;
     int mmco_index = 0, i;
 
     if (h->short_ref_count &&
         h->long_ref_count + h->short_ref_count >= h->sps.ref_frame_count &&
2c541554
         !(FIELD_PICTURE && !h->first_field && h->cur_pic_ptr->f.reference)) {
f6badba1
         mmco[0].opcode = MMCO_SHORT2UNUSED;
         mmco[0].short_pic_num = h->short_ref[h->short_ref_count - 1]->frame_num;
         mmco_index = 1;
733f5990
         if (FIELD_PICTURE) {
f6badba1
             mmco[0].short_pic_num *= 2;
             mmco[1].opcode = MMCO_SHORT2UNUSED;
             mmco[1].short_pic_num = mmco[0].short_pic_num + 1;
             mmco_index = 2;
733f5990
         }
     }
f6badba1
 
     if (first_slice) {
         h->mmco_index = mmco_index;
     } else if (!first_slice && mmco_index >= 0 &&
                (mmco_index != h->mmco_index ||
                 (i = check_opcodes(h->mmco, mmco_temp, mmco_index)))) {
2c541554
         av_log(h->avctx, AV_LOG_ERROR,
3fba3e79
                "Inconsistent MMCO state between slices [%d, %d]\n",
                mmco_index, h->mmco_index);
f6badba1
         return AVERROR_INVALIDDATA;
     }
ea382767
     return 0;
733f5990
 }
 
ea6f00c4
 int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
     int i, av_uninit(j);
12fe7594
     int current_ref_assigned=0, err=0;
ea6f00c4
     Picture *av_uninit(pic);
 
2c541554
     if((h->avctx->debug&FF_DEBUG_MMCO) && mmco_count==0)
         av_log(h->avctx, AV_LOG_DEBUG, "no mmco here\n");
ea6f00c4
 
     for(i=0; i<mmco_count; i++){
         int av_uninit(structure), av_uninit(frame_num);
2c541554
         if(h->avctx->debug&FF_DEBUG_MMCO)
             av_log(h->avctx, AV_LOG_DEBUG, "mmco:%d %d %d\n", h->mmco[i].opcode, h->mmco[i].short_pic_num, h->mmco[i].long_arg);
ea6f00c4
 
         if(   mmco[i].opcode == MMCO_SHORT2UNUSED
            || mmco[i].opcode == MMCO_SHORT2LONG){
             frame_num = pic_num_extract(h, mmco[i].short_pic_num, &structure);
             pic = find_short(h, frame_num, &j);
             if(!pic){
                 if(mmco[i].opcode != MMCO_SHORT2LONG || !h->long_ref[mmco[i].long_arg]
28ca701e
                    || h->long_ref[mmco[i].long_arg]->frame_num != frame_num) {
2c541554
                     av_log(h->avctx, AV_LOG_ERROR, "mmco: unref short failure\n");
28ca701e
                     err = AVERROR_INVALIDDATA;
                 }
ea6f00c4
                 continue;
             }
         }
 
         switch(mmco[i].opcode){
         case MMCO_SHORT2UNUSED:
2c541554
             if(h->avctx->debug&FF_DEBUG_MMCO)
                 av_log(h->avctx, AV_LOG_DEBUG, "mmco: unref short %d count %d\n", h->mmco[i].short_pic_num, h->short_ref_count);
ea6f00c4
             remove_short(h, frame_num, structure ^ PICT_FRAME);
             break;
         case MMCO_SHORT2LONG:
                 if (h->long_ref[mmco[i].long_arg] != pic)
                     remove_long(h, mmco[i].long_arg, 0);
 
                 remove_short_at_index(h, j);
                 h->long_ref[ mmco[i].long_arg ]= pic;
                 if (h->long_ref[ mmco[i].long_arg ]){
                     h->long_ref[ mmco[i].long_arg ]->long_ref=1;
                     h->long_ref_count++;
                 }
             break;
         case MMCO_LONG2UNUSED:
             j = pic_num_extract(h, mmco[i].long_arg, &structure);
             pic = h->long_ref[j];
             if (pic) {
                 remove_long(h, j, structure ^ PICT_FRAME);
2c541554
             } else if(h->avctx->debug&FF_DEBUG_MMCO)
                 av_log(h->avctx, AV_LOG_DEBUG, "mmco: unref long failure\n");
ea6f00c4
             break;
         case MMCO_LONG:
                     // Comment below left from previous code as it is an interresting note.
                     /* First field in pair is in short term list or
                      * at a different long term index.
                      * This is not allowed; see 7.4.3.3, notes 2 and 3.
                      * Report the problem and keep the pair where it is,
                      * and mark this field valid.
                      */
 
2c541554
             if (h->long_ref[mmco[i].long_arg] != h->cur_pic_ptr) {
ea6f00c4
                 remove_long(h, mmco[i].long_arg, 0);
 
2c541554
                 h->long_ref[ mmco[i].long_arg ]= h->cur_pic_ptr;
ea6f00c4
                 h->long_ref[ mmco[i].long_arg ]->long_ref=1;
                 h->long_ref_count++;
             }
 
2c541554
             h->cur_pic_ptr->f.reference |= h->picture_structure;
ea6f00c4
             current_ref_assigned=1;
             break;
         case MMCO_SET_MAX_LONG:
             assert(mmco[i].long_arg <= 16);
             // just remove the long term which index is greater than new max
             for(j = mmco[i].long_arg; j<16; j++){
                 remove_long(h, j, 0);
             }
             break;
         case MMCO_RESET:
             while(h->short_ref_count){
                 remove_short(h, h->short_ref[0]->frame_num, 0);
             }
             for(j = 0; j < 16; j++) {
                 remove_long(h, j, 0);
             }
             h->frame_num=
2c541554
             h->cur_pic_ptr->frame_num= 0;
adedd840
             h->mmco_reset = 1;
2c541554
             h->cur_pic_ptr->mmco_reset=1;
5b2873c1
             for (j = 0; j < MAX_DELAYED_PIC_COUNT; j++)
                 h->last_pocs[j] = INT_MIN;
ea6f00c4
             break;
         default: assert(0);
         }
     }
 
     if (!current_ref_assigned) {
         /* Second field of complementary field pair; the first field of
          * which is already referenced. If short referenced, it
          * should be first entry in short_ref. If not, it must exist
          * in long_ref; trying to put it on the short list here is an
          * error in the encoded bit stream (ref: 7.4.3.3, NOTE 2 and 3).
          */
2c541554
         if (h->short_ref_count && h->short_ref[0] == h->cur_pic_ptr) {
ea6f00c4
             /* Just mark the second field valid */
2c541554
             h->cur_pic_ptr->f.reference = PICT_FRAME;
         } else if (h->cur_pic_ptr->long_ref) {
             av_log(h->avctx, AV_LOG_ERROR, "illegal short term reference "
                                            "assignment for second field "
                                            "in complementary field pair "
                                            "(first field is long term)\n");
12fe7594
             err = AVERROR_INVALIDDATA;
ea6f00c4
         } else {
2c541554
             pic= remove_short(h, h->cur_pic_ptr->frame_num, 0);
ea6f00c4
             if(pic){
2c541554
                 av_log(h->avctx, AV_LOG_ERROR, "illegal short term buffer state detected\n");
12fe7594
                 err = AVERROR_INVALIDDATA;
ea6f00c4
             }
 
             if(h->short_ref_count)
                 memmove(&h->short_ref[1], &h->short_ref[0], h->short_ref_count*sizeof(Picture*));
 
2c541554
             h->short_ref[0]= h->cur_pic_ptr;
ea6f00c4
             h->short_ref_count++;
2c541554
             h->cur_pic_ptr->f.reference |= h->picture_structure;
ea6f00c4
         }
     }
 
c059d7aa
     if (h->long_ref_count + h->short_ref_count > FFMAX(h->sps.ref_frame_count, 1)){
ea6f00c4
 
         /* We have too many reference frames, probably due to corrupted
          * stream. Need to discard one frame. Prevents overrun of the
          * short_ref and long_ref buffers.
          */
2c541554
         av_log(h->avctx, AV_LOG_ERROR,
e86fbe17
                "number of reference frames (%d+%d) exceeds max (%d; probably "
                "corrupt input), discarding one\n",
                h->long_ref_count, h->short_ref_count, h->sps.ref_frame_count);
12fe7594
         err = AVERROR_INVALIDDATA;
ea6f00c4
 
         if (h->long_ref_count && !h->short_ref_count) {
             for (i = 0; i < 16; ++i)
                 if (h->long_ref[i])
                     break;
 
             assert(i < 16);
             remove_long(h, i, 0);
         } else {
             pic = h->short_ref[h->short_ref_count - 1];
             remove_short(h, pic->frame_num, 0);
         }
     }
 
     print_short_term(h);
     print_long_term(h);
c881df33
 
b7fe35c9
     if(err >= 0 && h->long_ref_count==0 && h->short_ref_count<=2 && h->pps.ref_count[0]<=1 + (h->picture_structure != PICT_FRAME) && h->cur_pic_ptr->f.pict_type == AV_PICTURE_TYPE_I){
         h->cur_pic_ptr->sync |= 1;
         if(!h->avctx->has_b_frames)
3360b851
             h->sync = 2;
c881df33
     }
 
2c541554
     return (h->avctx->err_recognition & AV_EF_EXPLODE) ? err : 0;
ea6f00c4
 }
 
f6badba1
 int ff_h264_decode_ref_pic_marking(H264Context *h, GetBitContext *gb,
                                    int first_slice)
 {
ea382767
     int i, ret;
f6badba1
     MMCO mmco_temp[MAX_MMCO_COUNT], *mmco = first_slice ? h->mmco : mmco_temp;
     int mmco_index = 0;
 
     if (h->nal_unit_type == NAL_IDR_SLICE){ // FIXME fields
2c541554
         skip_bits1(gb); // broken_link
f6badba1
         if (get_bits1(gb)){
             mmco[0].opcode = MMCO_LONG;
             mmco[0].long_arg = 0;
             mmco_index = 1;
ea6f00c4
         }
f6badba1
     } else {
         if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag
             for (i = 0; i < MAX_MMCO_COUNT; i++) {
                 MMCOOpcode opcode = get_ue_golomb_31(gb);
 
                 mmco[i].opcode = opcode;
                 if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG){
                     mmco[i].short_pic_num =
                         (h->curr_pic_num - get_ue_golomb(gb) - 1) &
                             (h->max_pic_num - 1);
 #if 0
                     if (mmco[i].short_pic_num >= h->short_ref_count ||
                         h->short_ref[ mmco[i].short_pic_num ] == NULL){
                         av_log(s->avctx, AV_LOG_ERROR,
                                "illegal short ref in memory management control "
                                "operation %d\n", mmco);
ea6f00c4
                         return -1;
f6badba1
                     }
 #endif
ea6f00c4
                 }
f6badba1
                 if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED ||
                     opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG) {
                     unsigned int long_arg = get_ue_golomb_31(gb);
                     if (long_arg >= 32 ||
                         (long_arg >= 16 && !(opcode == MMCO_SET_MAX_LONG &&
                                              long_arg == 16) &&
                          !(opcode == MMCO_LONG2UNUSED && FIELD_PICTURE))){
2c541554
                         av_log(h->avctx, AV_LOG_ERROR,
f6badba1
                                "illegal long ref in memory management control "
                                "operation %d\n", opcode);
ea6f00c4
                         return -1;
                     }
f6badba1
                     mmco[i].long_arg = long_arg;
ea6f00c4
                 }
 
f6badba1
                 if (opcode > (unsigned) MMCO_LONG){
2c541554
                     av_log(h->avctx, AV_LOG_ERROR,
f6badba1
                            "illegal memory management control operation %d\n",
                            opcode);
ea6f00c4
                     return -1;
                 }
f6badba1
                 if (opcode == MMCO_END)
ea6f00c4
                     break;
             }
f6badba1
             mmco_index = i;
         } else {
ea382767
             if (first_slice) {
                 ret = ff_generate_sliding_window_mmcos(h, first_slice);
2c541554
                 if (ret < 0 && h->avctx->err_recognition & AV_EF_EXPLODE)
ea382767
                     return ret;
             }
f6badba1
             mmco_index = -1;
ea6f00c4
         }
     }
 
f6badba1
     if (first_slice && mmco_index != -1) {
         h->mmco_index = mmco_index;
     } else if (!first_slice && mmco_index >= 0 &&
                (mmco_index != h->mmco_index ||
                 (i = check_opcodes(h->mmco, mmco_temp, mmco_index)))) {
2c541554
         av_log(h->avctx, AV_LOG_ERROR,
fc86f88b
                "Inconsistent MMCO state between slices [%d, %d]\n",
                mmco_index, h->mmco_index);
f6badba1
         return AVERROR_INVALIDDATA;
     }
 
ea6f00c4
     return 0;
 }