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
41ed7ab4
  * H.264 / AVC / MPEG-4 part10  reference picture handling.
ea6f00c4
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
 
cba4e606
 #include <inttypes.h>
 
7ac85f4b
 #include "libavutil/avassert.h"
ea6f00c4
 #include "internal.h"
 #include "avcodec.h"
251cbb44
 #include "h264.h"
9df889a5
 #include "h264dec.h"
ea6f00c4
 #include "golomb.h"
e0c16e4e
 #include "mpegutils.h"
ea6f00c4
 
 #include <assert.h>
 
a12d3188
 static void pic_as_field(H264Ref *pic, const int parity)
 {
ea6f00c4
     int i;
a12d3188
     for (i = 0; i < FF_ARRAY_ELEMS(pic->data); ++i) {
ea6f00c4
         if (parity == PICT_BOTTOM_FIELD)
a12d3188
             pic->data[i]   += pic->linesize[i];
c2597c5a
         pic->reference      = parity;
a12d3188
         pic->linesize[i] *= 2;
ea6f00c4
     }
a12d3188
     pic->poc = pic->parent->field_poc[parity == PICT_BOTTOM_FIELD];
 }
 
 static void ref_from_h264pic(H264Ref *dst, H264Picture *src)
 {
a0f29460
     memcpy(dst->data,     src->f->data,     sizeof(dst->data));
     memcpy(dst->linesize, src->f->linesize, sizeof(dst->linesize));
a12d3188
     dst->reference = src->reference;
     dst->poc       = src->poc;
     dst->pic_id    = src->pic_id;
     dst->parent = src;
ea6f00c4
 }
 
a12d3188
 static int split_field_copy(H264Ref *dest, H264Picture *src, int parity, int id_add)
c2597c5a
 {
759001c5
     int match = !!(src->reference & parity);
ea6f00c4
 
     if (match) {
a12d3188
         ref_from_h264pic(dest, src);
c2597c5a
         if (parity != PICT_FRAME) {
ea6f00c4
             pic_as_field(dest, parity);
             dest->pic_id *= 2;
             dest->pic_id += id_add;
         }
     }
 
     return match;
 }
 
a12d3188
 static int build_def_list(H264Ref *def, int def_len,
755f79f8
                           H264Picture * const *in, int len, int is_long, int sel)
c2597c5a
 {
     int  i[2] = { 0 };
     int index = 0;
ea6f00c4
 
c2597c5a
     while (i[0] < len || i[1] < len) {
649686d8
         while (i[0] < len && !(in[i[0]] && (in[i[0]]->reference & sel)))
ea6f00c4
             i[0]++;
c2597c5a
         while (i[1] < len && !(in[i[1]] && (in[i[1]]->reference & (sel ^ 3))))
ea6f00c4
             i[1]++;
c2597c5a
         if (i[0] < len) {
0a5ca63c
             av_assert0(index < def_len);
c2597c5a
             in[i[0]]->pic_id = is_long ? i[0] : in[i[0]]->frame_num;
             split_field_copy(&def[index++], in[i[0]++], sel, 1);
ea6f00c4
         }
c2597c5a
         if (i[1] < len) {
0a5ca63c
             av_assert0(index < def_len);
c2597c5a
             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);
ea6f00c4
         }
     }
 
     return index;
 }
 
755f79f8
 static int add_sorted(H264Picture **sorted, H264Picture * const *src,
                       int len, int limit, int dir)
c2597c5a
 {
ea6f00c4
     int i, best_poc;
c2597c5a
     int out_i = 0;
ea6f00c4
 
c2597c5a
     for (;;) {
         best_poc = dir ? INT_MIN : INT_MAX;
ea6f00c4
 
c2597c5a
         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];
ea6f00c4
             }
         }
c2597c5a
         if (best_poc == (dir ? INT_MIN : INT_MAX))
ea6f00c4
             break;
c2597c5a
         limit = sorted[out_i++]->poc - dir;
ea6f00c4
     }
     return out_i;
 }
 
222e7d23
 static int mismatches_ref(const H264Context *h, const H264Picture *pic)
aa427537
 {
222e7d23
     const AVFrame *f = pic->f;
aa427537
     return (h->cur_pic_ptr->f->width  != f->width ||
             h->cur_pic_ptr->f->height != f->height ||
             h->cur_pic_ptr->f->format != f->format);
 }
 
741b494f
 static void h264_initialise_ref_list(H264Context *h, H264SliceContext *sl)
c2597c5a
 {
ea6f00c4
     int i, len;
4aa0de64
     int j;
ea6f00c4
 
56febc99
     if (sl->slice_type_nos == AV_PICTURE_TYPE_B) {
9b749c82
         H264Picture *sorted[32];
ea6f00c4
         int cur_poc, list;
         int lens[2];
 
7fa00653
         if (FIELD_PICTURE(h))
c2597c5a
             cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure == PICT_BOTTOM_FIELD];
ea6f00c4
         else
c2597c5a
             cur_poc = h->cur_pic_ptr->poc;
 
         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);
87d263a1
             av_assert0(len <= 32);
4d388c0c
 
741b494f
             len  = build_def_list(sl->ref_list[list], FF_ARRAY_ELEMS(sl->ref_list[0]),
4d388c0c
                                   sorted, len, 0, h->picture_structure);
741b494f
             len += build_def_list(sl->ref_list[list] + len,
                                   FF_ARRAY_ELEMS(sl->ref_list[0]) - len,
4d388c0c
                                   h->long_ref, 16, 1, h->picture_structure);
87d263a1
             av_assert0(len <= 32);
c2597c5a
 
95eb35f3
             if (len < sl->ref_count[list])
741b494f
                 memset(&sl->ref_list[list][len], 0, sizeof(H264Ref) * (sl->ref_count[list] - len));
c2597c5a
             lens[list] = len;
ea6f00c4
         }
 
c2597c5a
         if (lens[0] == lens[1] && lens[1] > 1) {
a553c6a3
             for (i = 0; i < lens[0] &&
741b494f
                         sl->ref_list[0][i].parent->f->buf[0]->buffer ==
                         sl->ref_list[1][i].parent->f->buf[0]->buffer; i++);
759001c5
             if (i == lens[0]) {
741b494f
                 FFSWAP(H264Ref, sl->ref_list[1][0], sl->ref_list[1][1]);
759001c5
             }
ea6f00c4
         }
c2597c5a
     } else {
741b494f
         len  = build_def_list(sl->ref_list[0], FF_ARRAY_ELEMS(sl->ref_list[0]),
4d388c0c
                               h->short_ref, h->short_ref_count, 0, h->picture_structure);
741b494f
         len += build_def_list(sl->ref_list[0] + len,
                               FF_ARRAY_ELEMS(sl->ref_list[0]) - len,
4d388c0c
                               h-> long_ref, 16, 1, h->picture_structure);
87d263a1
         av_assert0(len <= 32);
4d388c0c
 
95eb35f3
         if (len < sl->ref_count[0])
741b494f
             memset(&sl->ref_list[0][len], 0, sizeof(H264Ref) * (sl->ref_count[0] - len));
ea6f00c4
     }
9434ec5f
 #ifdef TRACE
     for (i = 0; i < sl->ref_count[0]; i++) {
         ff_tlog(h->avctx, "List0: %s fn:%d 0x%p\n",
                 (sl->ref_list[0][i].parent ? (sl->ref_list[0][i].parent->long_ref ? "LT" : "ST") : "??"),
                 sl->ref_list[0][i].pic_id,
                 sl->ref_list[0][i].data[0]);
     }
     if (sl->slice_type_nos == AV_PICTURE_TYPE_B) {
         for (i = 0; i < sl->ref_count[1]; i++) {
             ff_tlog(h->avctx, "List1: %s fn:%d 0x%p\n",
                     (sl->ref_list[1][i].parent ? (sl->ref_list[1][i].parent->long_ref ? "LT" : "ST") : "??"),
                     sl->ref_list[1][i].pic_id,
                     sl->ref_list[1][i].data[0]);
         }
     }
 #endif
4aa0de64
 
     for (j = 0; j<1+(sl->slice_type_nos == AV_PICTURE_TYPE_B); j++) {
         for (i = 0; i < sl->ref_count[j]; i++) {
bc66451e
             if (sl->ref_list[j][i].parent) {
                 if (mismatches_ref(h, sl->ref_list[j][i].parent)) {
4aa0de64
                     av_log(h->avctx, AV_LOG_ERROR, "Discarding mismatching reference\n");
bc66451e
                     memset(&sl->ref_list[j][i], 0, sizeof(sl->ref_list[j][i]));
4aa0de64
                 }
             }
         }
     }
4da2ac5c
     for (i = 0; i < sl->list_count; i++)
         h->default_ref[i] = sl->ref_list[i][0];
ea6f00c4
 }
 
a2fd5478
 /**
  * print short term list
  */
755f79f8
 static void print_short_term(const H264Context *h)
a2fd5478
 {
     uint32_t i;
     if (h->avctx->debug & FF_DEBUG_MMCO) {
         av_log(h->avctx, AV_LOG_DEBUG, "short term list:\n");
         for (i = 0; i < h->short_ref_count; i++) {
             H264Picture *pic = h->short_ref[i];
             av_log(h->avctx, AV_LOG_DEBUG, "%"PRIu32" fn:%d poc:%d %p\n",
                    i, pic->frame_num, pic->poc, pic->f->data[0]);
         }
     }
 }
 
 /**
  * print long term list
  */
755f79f8
 static void print_long_term(const H264Context *h)
a2fd5478
 {
     uint32_t i;
     if (h->avctx->debug & FF_DEBUG_MMCO) {
         av_log(h->avctx, AV_LOG_DEBUG, "long term list:\n");
         for (i = 0; i < 16; i++) {
             H264Picture *pic = h->long_ref[i];
             if (pic) {
                 av_log(h->avctx, AV_LOG_DEBUG, "%"PRIu32" fn:%d poc:%d %p\n",
                        i, pic->frame_num, pic->poc, pic->f->data[0]);
             }
         }
     }
 }
ea6f00c4
 
 /**
  * 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
  */
755f79f8
 static int pic_num_extract(const H264Context *h, int pic_num, int *structure)
c2597c5a
 {
2c541554
     *structure = h->picture_structure;
7fa00653
     if (FIELD_PICTURE(h)) {
ea6f00c4
         if (!(pic_num & 1))
             /* opposite field */
             *structure ^= PICT_FRAME;
         pic_num >>= 1;
     }
 
     return pic_num;
 }
 
7b50d604
 static void h264_fill_mbaff_ref_list(H264SliceContext *sl)
 {
     int list, i, j;
     for (list = 0; list < sl->list_count; list++) {
         for (i = 0; i < sl->ref_count[list]; i++) {
             H264Ref *frame = &sl->ref_list[list][i];
             H264Ref *field = &sl->ref_list[list][16 + 2 * i];
 
             field[0] = *frame;
 
             for (j = 0; j < 3; j++)
                 field[0].linesize[j] <<= 1;
             field[0].reference = PICT_TOP_FIELD;
             field[0].poc       = field[0].parent->field_poc[0];
 
             field[1] = field[0];
 
             for (j = 0; j < 3; j++)
                 field[1].data[j] += frame->parent->f->linesize[j];
             field[1].reference = PICT_BOTTOM_FIELD;
             field[1].poc       = field[1].parent->field_poc[1];
         }
     }
 }
 
2aff557c
 int ff_h264_build_ref_list(H264Context *h, H264SliceContext *sl)
c2597c5a
 {
a12d3188
     int list, index, pic_structure;
ea6f00c4
 
     print_short_term(h);
     print_long_term(h);
 
741b494f
     h264_initialise_ref_list(h, sl);
ea6f00c4
 
741b494f
     for (list = 0; list < sl->list_count; list++) {
debca908
         int pred = sl->curr_pic_num;
ed9a20eb
 
         for (index = 0; index < sl->nb_ref_modifications[list]; index++) {
             unsigned int modification_of_pic_nums_idc = sl->ref_modifications[list][index].op;
             unsigned int                          val = sl->ref_modifications[list][index].val;
             unsigned int pic_id;
             int i;
             H264Picture *ref = NULL;
 
             switch (modification_of_pic_nums_idc) {
             case 0:
             case 1: {
                 const unsigned int abs_diff_pic_num = val + 1;
                 int frame_num;
 
debca908
                 if (abs_diff_pic_num > sl->max_pic_num) {
ed9a20eb
                     av_log(h->avctx, AV_LOG_ERROR,
                            "abs_diff_pic_num overflow\n");
                     return AVERROR_INVALIDDATA;
ea6f00c4
                 }
 
ed9a20eb
                 if (modification_of_pic_nums_idc == 0)
                     pred -= abs_diff_pic_num;
                 else
                     pred += abs_diff_pic_num;
debca908
                 pred &= sl->max_pic_num - 1;
ed9a20eb
 
                 frame_num = pic_num_extract(h, pred, &pic_structure);
 
                 for (i = h->short_ref_count - 1; i >= 0; i--) {
                     ref = h->short_ref[i];
                     assert(ref->reference);
                     assert(!ref->long_ref);
                     if (ref->frame_num == frame_num &&
                         (ref->reference & pic_structure))
                         break;
f8c507f4
                 }
ed9a20eb
                 if (i >= 0)
                     ref->pic_id = pred;
                 break;
             }
             case 2: {
                 int long_idx;
                 pic_id = val; // long_term_pic_idx
 
                 long_idx = pic_num_extract(h, pic_id, &pic_structure);
 
2aff557c
                 if (long_idx > 31U) {
f8c507f4
                     av_log(h->avctx, AV_LOG_ERROR,
ed9a20eb
                            "long_term_pic_idx overflow\n");
f8c507f4
                     return AVERROR_INVALIDDATA;
                 }
ed9a20eb
                 ref = h->long_ref[long_idx];
                 assert(!(ref && !ref->reference));
                 if (ref && (ref->reference & pic_structure)) {
                     ref->pic_id = pic_id;
                     assert(ref->long_ref);
                     i = 0;
c2597c5a
                 } else {
ed9a20eb
                     i = -1;
                 }
                 break;
             }
58dc8bbc
             default:
5bbffe34
                 av_assert0(0);
ed9a20eb
             }
 
             if (i < 0) {
                 av_log(h->avctx, AV_LOG_ERROR,
                        "reference picture missing during reorder\n");
                 memset(&sl->ref_list[list][index], 0, sizeof(sl->ref_list[0][0])); // FIXME
             } else {
                 for (i = index; i + 1 < sl->ref_count[list]; i++) {
                     if (sl->ref_list[list][i].parent &&
                         ref->long_ref == sl->ref_list[list][i].parent->long_ref &&
                         ref->pic_id   == sl->ref_list[list][i].pic_id)
                         break;
                 }
                 for (; i > index; i--) {
                     sl->ref_list[list][i] = sl->ref_list[list][i - 1];
                 }
                 ref_from_h264pic(&sl->ref_list[list][index], ref);
                 if (FIELD_PICTURE(h)) {
                     pic_as_field(&sl->ref_list[list][index], pic_structure);
ea6f00c4
                 }
             }
         }
     }
95eb35f3
     for (list = 0; list < sl->list_count; list++) {
         for (index = 0; index < sl->ref_count[list]; index++) {
d8151a7e
             if (   !sl->ref_list[list][index].parent
cc2cfdc4
                 || (!FIELD_PICTURE(h) && (sl->ref_list[list][index].reference&3) != 3)) {
c230af9b
                 int i;
4da2ac5c
                 av_log(h->avctx, AV_LOG_ERROR, "Missing reference picture, default is %d\n", h->default_ref[list].poc);
87d263a1
                 for (i = 0; i < FF_ARRAY_ELEMS(h->last_pocs); i++)
c230af9b
                     h->last_pocs[i] = INT_MIN;
4da2ac5c
                 if (h->default_ref[list].parent
                     && !(!FIELD_PICTURE(h) && (h->default_ref[list].reference&3) != 3))
                     sl->ref_list[list][index] = h->default_ref[list];
                 else
                     return -1;
ea6f00c4
             }
36f862e0
             av_assert0(av_buffer_get_ref_count(sl->ref_list[list][index].parent->f->buf[0]) > 0);
ea6f00c4
         }
     }
 
7b50d604
     if (FRAME_MBAFF(h))
         h264_fill_mbaff_ref_list(sl);
a12d3188
 
7b50d604
     return 0;
ea6f00c4
 }
 
b13fc1e3
 int ff_h264_decode_ref_pic_list_reordering(H264SliceContext *sl, void *logctx)
ed9a20eb
 {
     int list, index;
 
     sl->nb_ref_modifications[0] = 0;
     sl->nb_ref_modifications[1] = 0;
 
     for (list = 0; list < sl->list_count; list++) {
         if (!get_bits1(&sl->gb))    // ref_pic_list_modification_flag_l[01]
             continue;
 
         for (index = 0; ; index++) {
             unsigned int op = get_ue_golomb_31(&sl->gb);
 
             if (op == 3)
                 break;
 
             if (index >= sl->ref_count[list]) {
b13fc1e3
                 av_log(logctx, AV_LOG_ERROR, "reference count overflow\n");
ed9a20eb
                 return AVERROR_INVALIDDATA;
             } else if (op > 2) {
b13fc1e3
                 av_log(logctx, AV_LOG_ERROR,
ed9a20eb
                        "illegal modification_of_pic_nums_idc %u\n",
                        op);
                 return AVERROR_INVALIDDATA;
             }
2aff557c
             sl->ref_modifications[list][index].val = get_ue_golomb_long(&sl->gb);
ed9a20eb
             sl->ref_modifications[list][index].op  = op;
             sl->nb_ref_modifications[list]++;
         }
     }
 
     return 0;
 }
 
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
  */
9b749c82
 static inline int unreference_pic(H264Context *h, H264Picture *pic, int refmask)
c2597c5a
 {
ea6f00c4
     int i;
759001c5
     if (pic->reference &= refmask) {
ea6f00c4
         return 0;
     } else {
         for(i = 0; h->delayed_pic[i]; i++)
             if(pic == h->delayed_pic[i]){
759001c5
                 pic->reference = DELAYED_PIC_REF;
ea6f00c4
                 break;
             }
         return 1;
     }
 }
 
 /**
9b749c82
  * Find a H264Picture in the short term reference list by frame number.
ea6f00c4
  * @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
  */
9b749c82
 static H264Picture *find_short(H264Context *h, int frame_num, int *idx)
c2597c5a
 {
ea6f00c4
     int i;
 
c2597c5a
     for (i = 0; i < h->short_ref_count; i++) {
9b749c82
         H264Picture *pic = h->short_ref[i];
c2597c5a
         if (h->avctx->debug & FF_DEBUG_MMCO)
2c541554
             av_log(h->avctx, AV_LOG_DEBUG, "%d %d %p\n", i, pic->frame_num, pic);
c2597c5a
         if (pic->frame_num == frame_num) {
ea6f00c4
             *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.
  */
c2597c5a
 static void remove_short_at_index(H264Context *h, int i)
 {
ea6f00c4
     assert(i >= 0 && i < h->short_ref_count);
c2597c5a
     h->short_ref[i] = NULL;
ea6f00c4
     if (--h->short_ref_count)
c2597c5a
         memmove(&h->short_ref[i], &h->short_ref[i + 1],
9b749c82
                 (h->short_ref_count - i) * sizeof(H264Picture*));
ea6f00c4
 }
 
 /**
  * @return the removed picture or NULL if an error occurs
  */
9b749c82
 static H264Picture *remove_short(H264Context *h, int frame_num, int ref_mask)
c2597c5a
 {
9b749c82
     H264Picture *pic;
ea6f00c4
     int i;
 
c2597c5a
     if (h->avctx->debug & FF_DEBUG_MMCO)
2c541554
         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);
c2597c5a
     if (pic) {
         if (unreference_pic(h, pic, ref_mask))
             remove_short_at_index(h, i);
ea6f00c4
     }
 
     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
  */
9b749c82
 static H264Picture *remove_long(H264Context *h, int i, int ref_mask)
c2597c5a
 {
9b749c82
     H264Picture *pic;
ea6f00c4
 
c2597c5a
     pic = h->long_ref[i];
     if (pic) {
         if (unreference_pic(h, pic, ref_mask)) {
ea6f00c4
             assert(h->long_ref[i]->long_ref == 1);
c2597c5a
             h->long_ref[i]->long_ref = 0;
             h->long_ref[i]           = NULL;
ea6f00c4
             h->long_ref_count--;
         }
     }
 
     return pic;
 }
 
c2597c5a
 void ff_h264_remove_all_refs(H264Context *h)
 {
ea6f00c4
     int i;
 
c2597c5a
     for (i = 0; i < 16; i++) {
ea6f00c4
         remove_long(h, i, 0);
     }
c2597c5a
     assert(h->long_ref_count == 0);
ea6f00c4
 
36f862e0
     if (h->short_ref_count && !h->last_pic_for_ec.f->data[0]) {
e09ad5bd
         ff_h264_unref_picture(h, &h->last_pic_for_ec);
b6eaa392
         ff_h264_ref_picture(h, &h->last_pic_for_ec, h->short_ref[0]);
e09ad5bd
     }
855463c0
 
c2597c5a
     for (i = 0; i < h->short_ref_count; i++) {
ea6f00c4
         unreference_pic(h, h->short_ref[i], 0);
c2597c5a
         h->short_ref[i] = NULL;
ea6f00c4
     }
c2597c5a
     h->short_ref_count = 0;
87b98689
 
4da2ac5c
     memset(h->default_ref, 0, sizeof(h->default_ref));
ea6f00c4
 }
 
bec99338
 static void generate_sliding_window_mmcos(H264Context *h)
f6badba1
 {
bec99338
     MMCO *mmco = h->mmco;
     int nb_mmco = 0;
f6badba1
 
     if (h->short_ref_count &&
1534ef87
         h->long_ref_count + h->short_ref_count >= h->ps.sps->ref_frame_count &&
7fa00653
         !(FIELD_PICTURE(h) && !h->first_field && h->cur_pic_ptr->reference)) {
c2597c5a
         mmco[0].opcode        = MMCO_SHORT2UNUSED;
f6badba1
         mmco[0].short_pic_num = h->short_ref[h->short_ref_count - 1]->frame_num;
39ab2ea5
         nb_mmco               = 1;
7fa00653
         if (FIELD_PICTURE(h)) {
f6badba1
             mmco[0].short_pic_num *= 2;
c2597c5a
             mmco[1].opcode         = MMCO_SHORT2UNUSED;
             mmco[1].short_pic_num  = mmco[0].short_pic_num + 1;
39ab2ea5
             nb_mmco                = 2;
733f5990
         }
     }
f6badba1
 
bec99338
     h->nb_mmco = nb_mmco;
733f5990
 }
 
bec99338
 int ff_h264_execute_ref_pic_marking(H264Context *h)
c2597c5a
 {
bec99338
     MMCO *mmco = h->mmco;
     int mmco_count;
ea6f00c4
     int i, av_uninit(j);
0a6aa30f
     int pps_ref_count[2] = {0};
c2597c5a
     int current_ref_assigned = 0, err = 0;
9b749c82
     H264Picture *av_uninit(pic);
ea6f00c4
 
cb167f29
     if (!h->ps.sps) {
         av_log(h->avctx, AV_LOG_ERROR, "SPS is unset\n");
         err = AVERROR_INVALIDDATA;
         goto out;
     }
 
bec99338
     if (!h->explicit_ref_marking)
         generate_sliding_window_mmcos(h);
     mmco_count = h->nb_mmco;
 
c2597c5a
     if ((h->avctx->debug & FF_DEBUG_MMCO) && mmco_count == 0)
2c541554
         av_log(h->avctx, AV_LOG_DEBUG, "no mmco here\n");
ea6f00c4
 
c2597c5a
     for (i = 0; i < mmco_count; i++) {
ea6f00c4
         int av_uninit(structure), av_uninit(frame_num);
c2597c5a
         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
 
c2597c5a
         if (mmco[i].opcode == MMCO_SHORT2UNUSED ||
             mmco[i].opcode == MMCO_SHORT2LONG) {
ea6f00c4
             frame_num = pic_num_extract(h, mmco[i].short_pic_num, &structure);
c2597c5a
             pic       = find_short(h, frame_num, &j);
             if (!pic) {
                 if (mmco[i].opcode != MMCO_SHORT2LONG ||
                     !h->long_ref[mmco[i].long_arg]    ||
                     h->long_ref[mmco[i].long_arg]->frame_num != frame_num) {
08a89761
                     av_log(h->avctx, h->short_ref_count ? AV_LOG_ERROR : AV_LOG_DEBUG, "mmco: unref short failure\n");
28ca701e
                     err = AVERROR_INVALIDDATA;
                 }
ea6f00c4
                 continue;
             }
         }
 
c2597c5a
         switch (mmco[i].opcode) {
ea6f00c4
         case MMCO_SHORT2UNUSED:
c2597c5a
             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);
c2597c5a
                 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;
ea6f00c4
                     h->long_ref_count++;
                 }
             break;
         case MMCO_LONG2UNUSED:
c2597c5a
             j   = pic_num_extract(h, mmco[i].long_arg, &structure);
ea6f00c4
             pic = h->long_ref[j];
             if (pic) {
                 remove_long(h, j, structure ^ PICT_FRAME);
c2597c5a
             } else if (h->avctx->debug & FF_DEBUG_MMCO)
2c541554
                 av_log(h->avctx, AV_LOG_DEBUG, "mmco: unref long failure\n");
ea6f00c4
             break;
         case MMCO_LONG:
41ed7ab4
                     // Comment below left from previous code as it is an interesting note.
ea6f00c4
                     /* 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.
                      */
59fb3c4b
             if (h->short_ref[0] == h->cur_pic_ptr) {
                 av_log(h->avctx, AV_LOG_ERROR, "mmco: cannot assign current picture to short and long at the same time\n");
98cc9efc
                 remove_short_at_index(h, 0);
59fb3c4b
             }
ea6f00c4
 
6d4d3fee
             /* make sure the current picture is not already assigned as a long ref */
             if (h->cur_pic_ptr->long_ref) {
                 for (j = 0; j < FF_ARRAY_ELEMS(h->long_ref); j++) {
77412f0e
                     if (h->long_ref[j] == h->cur_pic_ptr) {
                         if (j != mmco[i].long_arg)
34ea5f41
                             av_log(h->avctx, AV_LOG_ERROR, "mmco: cannot assign current picture to 2 long term references\n");
6d4d3fee
                         remove_long(h, j, 0);
34ea5f41
                     }
                 }
6d4d3fee
             }
 
2c541554
             if (h->long_ref[mmco[i].long_arg] != h->cur_pic_ptr) {
fbb6741a
                 av_assert0(!h->cur_pic_ptr->long_ref);
ea6f00c4
                 remove_long(h, mmco[i].long_arg, 0);
 
c2597c5a
                 h->long_ref[mmco[i].long_arg]           = h->cur_pic_ptr;
                 h->long_ref[mmco[i].long_arg]->long_ref = 1;
ea6f00c4
                 h->long_ref_count++;
             }
 
759001c5
             h->cur_pic_ptr->reference |= h->picture_structure;
c2597c5a
             current_ref_assigned = 1;
ea6f00c4
             break;
         case MMCO_SET_MAX_LONG:
             assert(mmco[i].long_arg <= 16);
             // just remove the long term which index is greater than new max
c2597c5a
             for (j = mmco[i].long_arg; j < 16; j++) {
ea6f00c4
                 remove_long(h, j, 0);
             }
             break;
         case MMCO_RESET:
c2597c5a
             while (h->short_ref_count) {
ea6f00c4
                 remove_short(h, h->short_ref[0]->frame_num, 0);
             }
c2597c5a
             for (j = 0; j < 16; j++) {
ea6f00c4
                 remove_long(h, j, 0);
             }
c8dcff0c
             h->poc.frame_num = h->cur_pic_ptr->frame_num = 0;
adedd840
             h->mmco_reset = 1;
c2597c5a
             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 */
429de043
             h->cur_pic_ptr->reference |= h->picture_structure;
2c541554
         } 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 {
c2597c5a
             pic = remove_short(h, h->cur_pic_ptr->frame_num, 0);
             if (pic) {
2c541554
                 av_log(h->avctx, AV_LOG_ERROR, "illegal short term buffer state detected\n");
12fe7594
                 err = AVERROR_INVALIDDATA;
ea6f00c4
             }
 
c2597c5a
             if (h->short_ref_count)
                 memmove(&h->short_ref[1], &h->short_ref[0],
9b749c82
                         h->short_ref_count * sizeof(H264Picture*));
ea6f00c4
 
c2597c5a
             h->short_ref[0] = h->cur_pic_ptr;
ea6f00c4
             h->short_ref_count++;
759001c5
             h->cur_pic_ptr->reference |= h->picture_structure;
ea6f00c4
         }
     }
 
1534ef87
     if (h->long_ref_count + h->short_ref_count > FFMAX(h->ps.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",
3176217c
                h->long_ref_count, h->short_ref_count, h->ps.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);
         }
     }
 
649686d8
     for (i = 0; i<h->short_ref_count; i++) {
         pic = h->short_ref[i];
         if (pic->invalid_gap) {
1534ef87
             int d = av_mod_uintp2(h->cur_pic_ptr->frame_num - pic->frame_num, h->ps.sps->log2_max_frame_num);
             if (d > h->ps.sps->ref_frame_count)
649686d8
                 remove_short(h, pic->frame_num, 0);
         }
     }
 
ea6f00c4
     print_short_term(h);
     print_long_term(h);
c881df33
 
1534ef87
     for (i = 0; i < FF_ARRAY_ELEMS(h->ps.pps_list); i++) {
         if (h->ps.pps_list[i]) {
             const PPS *pps = (const PPS *)h->ps.pps_list[i]->data;
             pps_ref_count[0] = FFMAX(pps_ref_count[0], pps->ref_count[0]);
             pps_ref_count[1] = FFMAX(pps_ref_count[1], pps->ref_count[1]);
3402871f
         }
0a6aa30f
     }
e3d7a397
 
ab6ea7a8
     if (   err >= 0
         && h->long_ref_count==0
9ec17e45
         && (   h->short_ref_count<=2
             || pps_ref_count[0] <= 1 + (h->picture_structure != PICT_FRAME) && pps_ref_count[1] <= 1)
0a6aa30f
         && pps_ref_count[0]<=2 + (h->picture_structure != PICT_FRAME) + (2*!h->has_recovery_point)
36f862e0
         && h->cur_pic_ptr->f->pict_type == AV_PICTURE_TYPE_I){
78265fcf
         h->cur_pic_ptr->recovered |= 1;
b7fe35c9
         if(!h->avctx->has_b_frames)
8183e332
             h->frame_recovered |= FRAME_RECOVERED_SEI;
c881df33
     }
 
cb167f29
 out:
2c541554
     return (h->avctx->err_recognition & AV_EF_EXPLODE) ? err : 0;
ea6f00c4
 }
 
b13fc1e3
 int ff_h264_decode_ref_pic_marking(H264SliceContext *sl, GetBitContext *gb,
                                    const H2645NAL *nal, void *logctx)
f6badba1
 {
bec99338
     int i;
2d410ebb
     MMCO *mmco = sl->mmco;
39ab2ea5
     int nb_mmco = 0;
f6badba1
 
b13fc1e3
     if (nal->type == H264_NAL_IDR_SLICE) { // FIXME fields
2c541554
         skip_bits1(gb); // broken_link
c2597c5a
         if (get_bits1(gb)) {
             mmco[0].opcode   = MMCO_LONG;
f6badba1
             mmco[0].long_arg = 0;
39ab2ea5
             nb_mmco          = 1;
ea6f00c4
         }
bec99338
         sl->explicit_ref_marking = 1;
f6badba1
     } else {
bec99338
         sl->explicit_ref_marking = get_bits1(gb);
         if (sl->explicit_ref_marking) {
f6badba1
             for (i = 0; i < MAX_MMCO_COUNT; i++) {
                 MMCOOpcode opcode = get_ue_golomb_31(gb);
 
                 mmco[i].opcode = opcode;
c2597c5a
                 if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG) {
f6badba1
                     mmco[i].short_pic_num =
6c41eda1
                         (sl->curr_pic_num - get_ue_golomb_long(gb) - 1) &
debca908
                             (sl->max_pic_num - 1);
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) &&
b13fc1e3
                          !(opcode == MMCO_LONG2UNUSED && FIELD_PICTURE(sl)))) {
                         av_log(logctx, 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
                 }
 
c2597c5a
                 if (opcode > (unsigned) MMCO_LONG) {
b13fc1e3
                     av_log(logctx, AV_LOG_ERROR,
f6badba1
                            "illegal memory management control operation %d\n",
                            opcode);
ea6f00c4
                     return -1;
                 }
f6badba1
                 if (opcode == MMCO_END)
ea6f00c4
                     break;
             }
39ab2ea5
             nb_mmco = i;
ea6f00c4
         }
     }
 
bec99338
     sl->nb_mmco = nb_mmco;
f6badba1
 
ea6f00c4
     return 0;
 }