You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

813 lines
29KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... reference picture handling
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * H.264 / AVC / MPEG4 part10 reference picture handling.
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include <inttypes.h>
  27. #include "internal.h"
  28. #include "avcodec.h"
  29. #include "h264.h"
  30. #include "golomb.h"
  31. #include "mpegutils.h"
  32. #include <assert.h>
  33. static void pic_as_field(H264Ref *pic, const int parity)
  34. {
  35. int i;
  36. for (i = 0; i < FF_ARRAY_ELEMS(pic->data); ++i) {
  37. if (parity == PICT_BOTTOM_FIELD)
  38. pic->data[i] += pic->linesize[i];
  39. pic->reference = parity;
  40. pic->linesize[i] *= 2;
  41. }
  42. pic->poc = pic->parent->field_poc[parity == PICT_BOTTOM_FIELD];
  43. }
  44. static void ref_from_h264pic(H264Ref *dst, H264Picture *src)
  45. {
  46. memcpy(dst->data, src->f->data, sizeof(dst->data));
  47. memcpy(dst->linesize, src->f->linesize, sizeof(dst->linesize));
  48. dst->reference = src->reference;
  49. dst->poc = src->poc;
  50. dst->pic_id = src->pic_id;
  51. dst->parent = src;
  52. }
  53. static int split_field_copy(H264Ref *dest, H264Picture *src, int parity, int id_add)
  54. {
  55. int match = !!(src->reference & parity);
  56. if (match) {
  57. ref_from_h264pic(dest, src);
  58. if (parity != PICT_FRAME) {
  59. pic_as_field(dest, parity);
  60. dest->pic_id *= 2;
  61. dest->pic_id += id_add;
  62. }
  63. }
  64. return match;
  65. }
  66. static int build_def_list(H264Ref *def, int def_len,
  67. H264Picture **in, int len, int is_long, int sel)
  68. {
  69. int i[2] = { 0 };
  70. int index = 0;
  71. while ((i[0] < len || i[1] < len) && index < def_len) {
  72. while (i[0] < len && !(in[i[0]] && (in[i[0]]->reference & sel)))
  73. i[0]++;
  74. while (i[1] < len && !(in[i[1]] && (in[i[1]]->reference & (sel ^ 3))))
  75. i[1]++;
  76. if (i[0] < len && index < def_len) {
  77. in[i[0]]->pic_id = is_long ? i[0] : in[i[0]]->frame_num;
  78. split_field_copy(&def[index++], in[i[0]++], sel, 1);
  79. }
  80. if (i[1] < len && index < def_len) {
  81. in[i[1]]->pic_id = is_long ? i[1] : in[i[1]]->frame_num;
  82. split_field_copy(&def[index++], in[i[1]++], sel ^ 3, 0);
  83. }
  84. }
  85. return index;
  86. }
  87. static int add_sorted(H264Picture **sorted, H264Picture **src, int len, int limit, int dir)
  88. {
  89. int i, best_poc;
  90. int out_i = 0;
  91. for (;;) {
  92. best_poc = dir ? INT_MIN : INT_MAX;
  93. for (i = 0; i < len; i++) {
  94. const int poc = src[i]->poc;
  95. if (((poc > limit) ^ dir) && ((poc < best_poc) ^ dir)) {
  96. best_poc = poc;
  97. sorted[out_i] = src[i];
  98. }
  99. }
  100. if (best_poc == (dir ? INT_MIN : INT_MAX))
  101. break;
  102. limit = sorted[out_i++]->poc - dir;
  103. }
  104. return out_i;
  105. }
  106. static void h264_initialise_ref_list(H264Context *h, H264SliceContext *sl)
  107. {
  108. int i, len;
  109. if (sl->slice_type_nos == AV_PICTURE_TYPE_B) {
  110. H264Picture *sorted[32];
  111. int cur_poc, list;
  112. int lens[2];
  113. if (FIELD_PICTURE(h))
  114. cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure == PICT_BOTTOM_FIELD];
  115. else
  116. cur_poc = h->cur_pic_ptr->poc;
  117. for (list = 0; list < 2; list++) {
  118. len = add_sorted(sorted, h->short_ref, h->short_ref_count, cur_poc, 1 ^ list);
  119. len += add_sorted(sorted + len, h->short_ref, h->short_ref_count, cur_poc, 0 ^ list);
  120. assert(len <= 32);
  121. len = build_def_list(sl->ref_list[list], FF_ARRAY_ELEMS(sl->ref_list[0]),
  122. sorted, len, 0, h->picture_structure);
  123. len += build_def_list(sl->ref_list[list] + len,
  124. FF_ARRAY_ELEMS(sl->ref_list[0]) - len,
  125. h->long_ref, 16, 1, h->picture_structure);
  126. if (len < sl->ref_count[list])
  127. memset(&sl->ref_list[list][len], 0, sizeof(H264Ref) * (sl->ref_count[list] - len));
  128. lens[list] = len;
  129. }
  130. if (lens[0] == lens[1] && lens[1] > 1) {
  131. for (i = 0; i < lens[0] &&
  132. sl->ref_list[0][i].parent->f->buf[0]->buffer ==
  133. sl->ref_list[1][i].parent->f->buf[0]->buffer; i++);
  134. if (i == lens[0]) {
  135. FFSWAP(H264Ref, sl->ref_list[1][0], sl->ref_list[1][1]);
  136. }
  137. }
  138. } else {
  139. len = build_def_list(sl->ref_list[0], FF_ARRAY_ELEMS(sl->ref_list[0]),
  140. h->short_ref, h->short_ref_count, 0, h->picture_structure);
  141. len += build_def_list(sl->ref_list[0] + len,
  142. FF_ARRAY_ELEMS(sl->ref_list[0]) - len,
  143. h-> long_ref, 16, 1, h->picture_structure);
  144. if (len < sl->ref_count[0])
  145. memset(&sl->ref_list[0][len], 0, sizeof(H264Ref) * (sl->ref_count[0] - len));
  146. }
  147. }
  148. static void print_short_term(H264Context *h);
  149. static void print_long_term(H264Context *h);
  150. /**
  151. * Extract structure information about the picture described by pic_num in
  152. * the current decoding context (frame or field). Note that pic_num is
  153. * picture number without wrapping (so, 0<=pic_num<max_pic_num).
  154. * @param pic_num picture number for which to extract structure information
  155. * @param structure one of PICT_XXX describing structure of picture
  156. * with pic_num
  157. * @return frame number (short term) or long term index of picture
  158. * described by pic_num
  159. */
  160. static int pic_num_extract(H264Context *h, int pic_num, int *structure)
  161. {
  162. *structure = h->picture_structure;
  163. if (FIELD_PICTURE(h)) {
  164. if (!(pic_num & 1))
  165. /* opposite field */
  166. *structure ^= PICT_FRAME;
  167. pic_num >>= 1;
  168. }
  169. return pic_num;
  170. }
  171. int ff_h264_decode_ref_pic_list_reordering(H264Context *h, H264SliceContext *sl)
  172. {
  173. int list, index, pic_structure;
  174. print_short_term(h);
  175. print_long_term(h);
  176. h264_initialise_ref_list(h, sl);
  177. for (list = 0; list < sl->list_count; list++) {
  178. if (get_bits1(&sl->gb)) { // ref_pic_list_modification_flag_l[01]
  179. int pred = h->curr_pic_num;
  180. for (index = 0; ; index++) {
  181. unsigned int modification_of_pic_nums_idc = get_ue_golomb_31(&sl->gb);
  182. unsigned int pic_id;
  183. int i;
  184. H264Picture *ref = NULL;
  185. if (modification_of_pic_nums_idc == 3)
  186. break;
  187. if (index >= sl->ref_count[list]) {
  188. av_log(h->avctx, AV_LOG_ERROR, "reference count overflow\n");
  189. return -1;
  190. }
  191. switch (modification_of_pic_nums_idc) {
  192. case 0:
  193. case 1: {
  194. const unsigned int abs_diff_pic_num = get_ue_golomb(&sl->gb) + 1;
  195. int frame_num;
  196. if (abs_diff_pic_num > h->max_pic_num) {
  197. av_log(h->avctx, AV_LOG_ERROR,
  198. "abs_diff_pic_num overflow\n");
  199. return AVERROR_INVALIDDATA;
  200. }
  201. if (modification_of_pic_nums_idc == 0)
  202. pred -= abs_diff_pic_num;
  203. else
  204. pred += abs_diff_pic_num;
  205. pred &= h->max_pic_num - 1;
  206. frame_num = pic_num_extract(h, pred, &pic_structure);
  207. for (i = h->short_ref_count - 1; i >= 0; i--) {
  208. ref = h->short_ref[i];
  209. assert(ref->reference);
  210. assert(!ref->long_ref);
  211. if (ref->frame_num == frame_num &&
  212. (ref->reference & pic_structure))
  213. break;
  214. }
  215. if (i >= 0)
  216. ref->pic_id = pred;
  217. break;
  218. }
  219. case 2: {
  220. int long_idx;
  221. pic_id = get_ue_golomb(&sl->gb); // long_term_pic_idx
  222. long_idx = pic_num_extract(h, pic_id, &pic_structure);
  223. if (long_idx > 31) {
  224. av_log(h->avctx, AV_LOG_ERROR,
  225. "long_term_pic_idx overflow\n");
  226. return AVERROR_INVALIDDATA;
  227. }
  228. ref = h->long_ref[long_idx];
  229. assert(!(ref && !ref->reference));
  230. if (ref && (ref->reference & pic_structure)) {
  231. ref->pic_id = pic_id;
  232. assert(ref->long_ref);
  233. i = 0;
  234. } else {
  235. i = -1;
  236. }
  237. break;
  238. }
  239. default:
  240. av_log(h->avctx, AV_LOG_ERROR,
  241. "illegal modification_of_pic_nums_idc %u\n",
  242. modification_of_pic_nums_idc);
  243. return AVERROR_INVALIDDATA;
  244. }
  245. if (i < 0) {
  246. av_log(h->avctx, AV_LOG_ERROR,
  247. "reference picture missing during reorder\n");
  248. memset(&sl->ref_list[list][index], 0, sizeof(sl->ref_list[0][0])); // FIXME
  249. } else {
  250. for (i = index; i + 1 < sl->ref_count[list]; i++) {
  251. if (sl->ref_list[list][i].parent &&
  252. ref->long_ref == sl->ref_list[list][i].parent->long_ref &&
  253. ref->pic_id == sl->ref_list[list][i].pic_id)
  254. break;
  255. }
  256. for (; i > index; i--) {
  257. sl->ref_list[list][i] = sl->ref_list[list][i - 1];
  258. }
  259. ref_from_h264pic(&sl->ref_list[list][index], ref);
  260. if (FIELD_PICTURE(h)) {
  261. pic_as_field(&sl->ref_list[list][index], pic_structure);
  262. }
  263. }
  264. }
  265. }
  266. }
  267. for (list = 0; list < sl->list_count; list++) {
  268. for (index = 0; index < sl->ref_count[list]; index++) {
  269. if (!sl->ref_list[list][index].parent) {
  270. av_log(h->avctx, AV_LOG_ERROR, "Missing reference picture\n");
  271. if (index == 0 || h->avctx->err_recognition & AV_EF_EXPLODE)
  272. return AVERROR_INVALIDDATA;
  273. else
  274. sl->ref_list[list][index] = sl->ref_list[list][index - 1];
  275. }
  276. }
  277. }
  278. return 0;
  279. }
  280. void ff_h264_fill_mbaff_ref_list(H264Context *h, H264SliceContext *sl)
  281. {
  282. int list, i, j;
  283. for (list = 0; list < sl->list_count; list++) { //FIXME try list_count
  284. for (i = 0; i < sl->ref_count[list]; i++) {
  285. H264Ref *frame = &sl->ref_list[list][i];
  286. H264Ref *field = &sl->ref_list[list][16 + 2 * i];
  287. field[0] = *frame;
  288. for (j = 0; j < 3; j++)
  289. field[0].linesize[j] <<= 1;
  290. field[0].reference = PICT_TOP_FIELD;
  291. field[0].poc = field[0].parent->field_poc[0];
  292. field[1] = field[0];
  293. for (j = 0; j < 3; j++)
  294. field[1].data[j] += frame->parent->f->linesize[j];
  295. field[1].reference = PICT_BOTTOM_FIELD;
  296. field[1].poc = field[1].parent->field_poc[1];
  297. sl->pwt.luma_weight[16 + 2 * i][list][0] = sl->pwt.luma_weight[16 + 2 * i + 1][list][0] = sl->pwt.luma_weight[i][list][0];
  298. sl->pwt.luma_weight[16 + 2 * i][list][1] = sl->pwt.luma_weight[16 + 2 * i + 1][list][1] = sl->pwt.luma_weight[i][list][1];
  299. for (j = 0; j < 2; j++) {
  300. sl->pwt.chroma_weight[16 + 2 * i][list][j][0] = sl->pwt.chroma_weight[16 + 2 * i + 1][list][j][0] = sl->pwt.chroma_weight[i][list][j][0];
  301. sl->pwt.chroma_weight[16 + 2 * i][list][j][1] = sl->pwt.chroma_weight[16 + 2 * i + 1][list][j][1] = sl->pwt.chroma_weight[i][list][j][1];
  302. }
  303. }
  304. }
  305. }
  306. /**
  307. * Mark a picture as no longer needed for reference. The refmask
  308. * argument allows unreferencing of individual fields or the whole frame.
  309. * If the picture becomes entirely unreferenced, but is being held for
  310. * display purposes, it is marked as such.
  311. * @param refmask mask of fields to unreference; the mask is bitwise
  312. * anded with the reference marking of pic
  313. * @return non-zero if pic becomes entirely unreferenced (except possibly
  314. * for display purposes) zero if one of the fields remains in
  315. * reference
  316. */
  317. static inline int unreference_pic(H264Context *h, H264Picture *pic, int refmask)
  318. {
  319. int i;
  320. if (pic->reference &= refmask) {
  321. return 0;
  322. } else {
  323. for(i = 0; h->delayed_pic[i]; i++)
  324. if(pic == h->delayed_pic[i]){
  325. pic->reference = DELAYED_PIC_REF;
  326. break;
  327. }
  328. return 1;
  329. }
  330. }
  331. /**
  332. * Find a H264Picture in the short term reference list by frame number.
  333. * @param frame_num frame number to search for
  334. * @param idx the index into h->short_ref where returned picture is found
  335. * undefined if no picture found.
  336. * @return pointer to the found picture, or NULL if no pic with the provided
  337. * frame number is found
  338. */
  339. static H264Picture *find_short(H264Context *h, int frame_num, int *idx)
  340. {
  341. int i;
  342. for (i = 0; i < h->short_ref_count; i++) {
  343. H264Picture *pic = h->short_ref[i];
  344. if (h->avctx->debug & FF_DEBUG_MMCO)
  345. av_log(h->avctx, AV_LOG_DEBUG, "%d %d %p\n", i, pic->frame_num, pic);
  346. if (pic->frame_num == frame_num) {
  347. *idx = i;
  348. return pic;
  349. }
  350. }
  351. return NULL;
  352. }
  353. /**
  354. * Remove a picture from the short term reference list by its index in
  355. * that list. This does no checking on the provided index; it is assumed
  356. * to be valid. Other list entries are shifted down.
  357. * @param i index into h->short_ref of picture to remove.
  358. */
  359. static void remove_short_at_index(H264Context *h, int i)
  360. {
  361. assert(i >= 0 && i < h->short_ref_count);
  362. h->short_ref[i] = NULL;
  363. if (--h->short_ref_count)
  364. memmove(&h->short_ref[i], &h->short_ref[i + 1],
  365. (h->short_ref_count - i) * sizeof(H264Picture*));
  366. }
  367. /**
  368. * @return the removed picture or NULL if an error occurs
  369. */
  370. static H264Picture *remove_short(H264Context *h, int frame_num, int ref_mask)
  371. {
  372. H264Picture *pic;
  373. int i;
  374. if (h->avctx->debug & FF_DEBUG_MMCO)
  375. av_log(h->avctx, AV_LOG_DEBUG, "remove short %d count %d\n", frame_num, h->short_ref_count);
  376. pic = find_short(h, frame_num, &i);
  377. if (pic) {
  378. if (unreference_pic(h, pic, ref_mask))
  379. remove_short_at_index(h, i);
  380. }
  381. return pic;
  382. }
  383. /**
  384. * Remove a picture from the long term reference list by its index in
  385. * that list.
  386. * @return the removed picture or NULL if an error occurs
  387. */
  388. static H264Picture *remove_long(H264Context *h, int i, int ref_mask)
  389. {
  390. H264Picture *pic;
  391. pic = h->long_ref[i];
  392. if (pic) {
  393. if (unreference_pic(h, pic, ref_mask)) {
  394. assert(h->long_ref[i]->long_ref == 1);
  395. h->long_ref[i]->long_ref = 0;
  396. h->long_ref[i] = NULL;
  397. h->long_ref_count--;
  398. }
  399. }
  400. return pic;
  401. }
  402. void ff_h264_remove_all_refs(H264Context *h)
  403. {
  404. int i;
  405. for (i = 0; i < 16; i++) {
  406. remove_long(h, i, 0);
  407. }
  408. assert(h->long_ref_count == 0);
  409. for (i = 0; i < h->short_ref_count; i++) {
  410. unreference_pic(h, h->short_ref[i], 0);
  411. h->short_ref[i] = NULL;
  412. }
  413. h->short_ref_count = 0;
  414. }
  415. /**
  416. * print short term list
  417. */
  418. static void print_short_term(H264Context *h)
  419. {
  420. uint32_t i;
  421. if (h->avctx->debug & FF_DEBUG_MMCO) {
  422. av_log(h->avctx, AV_LOG_DEBUG, "short term list:\n");
  423. for (i = 0; i < h->short_ref_count; i++) {
  424. H264Picture *pic = h->short_ref[i];
  425. av_log(h->avctx, AV_LOG_DEBUG, "%"PRIu32" fn:%d poc:%d %p\n",
  426. i, pic->frame_num, pic->poc, pic->f->data[0]);
  427. }
  428. }
  429. }
  430. /**
  431. * print long term list
  432. */
  433. static void print_long_term(H264Context *h)
  434. {
  435. uint32_t i;
  436. if (h->avctx->debug & FF_DEBUG_MMCO) {
  437. av_log(h->avctx, AV_LOG_DEBUG, "long term list:\n");
  438. for (i = 0; i < 16; i++) {
  439. H264Picture *pic = h->long_ref[i];
  440. if (pic) {
  441. av_log(h->avctx, AV_LOG_DEBUG, "%"PRIu32" fn:%d poc:%d %p\n",
  442. i, pic->frame_num, pic->poc, pic->f->data[0]);
  443. }
  444. }
  445. }
  446. }
  447. static int check_opcodes(MMCO *mmco1, MMCO *mmco2, int n_mmcos)
  448. {
  449. int i;
  450. for (i = 0; i < n_mmcos; i++) {
  451. if (mmco1[i].opcode != mmco2[i].opcode)
  452. return -1;
  453. }
  454. return 0;
  455. }
  456. int ff_generate_sliding_window_mmcos(H264Context *h, int first_slice)
  457. {
  458. MMCO mmco_temp[MAX_MMCO_COUNT], *mmco = first_slice ? h->mmco : mmco_temp;
  459. int mmco_index = 0, i = 0;
  460. assert(h->long_ref_count + h->short_ref_count <= h->ps.sps->ref_frame_count);
  461. if (h->short_ref_count &&
  462. h->long_ref_count + h->short_ref_count == h->ps.sps->ref_frame_count &&
  463. !(FIELD_PICTURE(h) && !h->first_field && h->cur_pic_ptr->reference)) {
  464. mmco[0].opcode = MMCO_SHORT2UNUSED;
  465. mmco[0].short_pic_num = h->short_ref[h->short_ref_count - 1]->frame_num;
  466. mmco_index = 1;
  467. if (FIELD_PICTURE(h)) {
  468. mmco[0].short_pic_num *= 2;
  469. mmco[1].opcode = MMCO_SHORT2UNUSED;
  470. mmco[1].short_pic_num = mmco[0].short_pic_num + 1;
  471. mmco_index = 2;
  472. }
  473. }
  474. if (first_slice) {
  475. h->mmco_index = mmco_index;
  476. } else if (!first_slice && mmco_index >= 0 &&
  477. (mmco_index != h->mmco_index ||
  478. (i = check_opcodes(h->mmco, mmco_temp, mmco_index)))) {
  479. av_log(h->avctx, AV_LOG_ERROR,
  480. "Inconsistent MMCO state between slices [%d, %d, %d]\n",
  481. mmco_index, h->mmco_index, i);
  482. return AVERROR_INVALIDDATA;
  483. }
  484. return 0;
  485. }
  486. int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count)
  487. {
  488. int i, av_uninit(j);
  489. int current_ref_assigned = 0, err = 0;
  490. H264Picture *av_uninit(pic);
  491. if ((h->avctx->debug & FF_DEBUG_MMCO) && mmco_count == 0)
  492. av_log(h->avctx, AV_LOG_DEBUG, "no mmco here\n");
  493. for (i = 0; i < mmco_count; i++) {
  494. int av_uninit(structure), av_uninit(frame_num);
  495. if (h->avctx->debug & FF_DEBUG_MMCO)
  496. av_log(h->avctx, AV_LOG_DEBUG, "mmco:%d %d %d\n", h->mmco[i].opcode,
  497. h->mmco[i].short_pic_num, h->mmco[i].long_arg);
  498. if (mmco[i].opcode == MMCO_SHORT2UNUSED ||
  499. mmco[i].opcode == MMCO_SHORT2LONG) {
  500. frame_num = pic_num_extract(h, mmco[i].short_pic_num, &structure);
  501. pic = find_short(h, frame_num, &j);
  502. if (!pic) {
  503. if (mmco[i].opcode != MMCO_SHORT2LONG ||
  504. !h->long_ref[mmco[i].long_arg] ||
  505. h->long_ref[mmco[i].long_arg]->frame_num != frame_num) {
  506. av_log(h->avctx, AV_LOG_ERROR, "mmco: unref short failure\n");
  507. err = AVERROR_INVALIDDATA;
  508. }
  509. continue;
  510. }
  511. }
  512. switch (mmco[i].opcode) {
  513. case MMCO_SHORT2UNUSED:
  514. if (h->avctx->debug & FF_DEBUG_MMCO)
  515. av_log(h->avctx, AV_LOG_DEBUG, "mmco: unref short %d count %d\n",
  516. h->mmco[i].short_pic_num, h->short_ref_count);
  517. remove_short(h, frame_num, structure ^ PICT_FRAME);
  518. break;
  519. case MMCO_SHORT2LONG:
  520. if (h->long_ref[mmco[i].long_arg] != pic)
  521. remove_long(h, mmco[i].long_arg, 0);
  522. remove_short_at_index(h, j);
  523. h->long_ref[ mmco[i].long_arg ] = pic;
  524. if (h->long_ref[mmco[i].long_arg]) {
  525. h->long_ref[mmco[i].long_arg]->long_ref = 1;
  526. h->long_ref_count++;
  527. }
  528. break;
  529. case MMCO_LONG2UNUSED:
  530. j = pic_num_extract(h, mmco[i].long_arg, &structure);
  531. pic = h->long_ref[j];
  532. if (pic) {
  533. remove_long(h, j, structure ^ PICT_FRAME);
  534. } else if (h->avctx->debug & FF_DEBUG_MMCO)
  535. av_log(h->avctx, AV_LOG_DEBUG, "mmco: unref long failure\n");
  536. break;
  537. case MMCO_LONG:
  538. // Comment below left from previous code as it is an interresting note.
  539. /* First field in pair is in short term list or
  540. * at a different long term index.
  541. * This is not allowed; see 7.4.3.3, notes 2 and 3.
  542. * Report the problem and keep the pair where it is,
  543. * and mark this field valid.
  544. */
  545. if (h->short_ref[0] == h->cur_pic_ptr)
  546. remove_short_at_index(h, 0);
  547. /* make sure the current picture is not already assigned as a long ref */
  548. if (h->cur_pic_ptr->long_ref) {
  549. for (j = 0; j < FF_ARRAY_ELEMS(h->long_ref); j++) {
  550. if (h->long_ref[j] == h->cur_pic_ptr)
  551. remove_long(h, j, 0);
  552. }
  553. }
  554. if (h->long_ref[mmco[i].long_arg] != h->cur_pic_ptr) {
  555. remove_long(h, mmco[i].long_arg, 0);
  556. h->long_ref[mmco[i].long_arg] = h->cur_pic_ptr;
  557. h->long_ref[mmco[i].long_arg]->long_ref = 1;
  558. h->long_ref_count++;
  559. }
  560. h->cur_pic_ptr->reference |= h->picture_structure;
  561. current_ref_assigned = 1;
  562. break;
  563. case MMCO_SET_MAX_LONG:
  564. assert(mmco[i].long_arg <= 16);
  565. // just remove the long term which index is greater than new max
  566. for (j = mmco[i].long_arg; j < 16; j++) {
  567. remove_long(h, j, 0);
  568. }
  569. break;
  570. case MMCO_RESET:
  571. while (h->short_ref_count) {
  572. remove_short(h, h->short_ref[0]->frame_num, 0);
  573. }
  574. for (j = 0; j < 16; j++) {
  575. remove_long(h, j, 0);
  576. }
  577. h->frame_num = h->cur_pic_ptr->frame_num = 0;
  578. h->mmco_reset = 1;
  579. h->cur_pic_ptr->mmco_reset = 1;
  580. break;
  581. default: assert(0);
  582. }
  583. }
  584. if (!current_ref_assigned) {
  585. /* Second field of complementary field pair; the first field of
  586. * which is already referenced. If short referenced, it
  587. * should be first entry in short_ref. If not, it must exist
  588. * in long_ref; trying to put it on the short list here is an
  589. * error in the encoded bit stream (ref: 7.4.3.3, NOTE 2 and 3).
  590. */
  591. if (h->short_ref_count && h->short_ref[0] == h->cur_pic_ptr) {
  592. /* Just mark the second field valid */
  593. h->cur_pic_ptr->reference = PICT_FRAME;
  594. } else if (h->cur_pic_ptr->long_ref) {
  595. av_log(h->avctx, AV_LOG_ERROR, "illegal short term reference "
  596. "assignment for second field "
  597. "in complementary field pair "
  598. "(first field is long term)\n");
  599. err = AVERROR_INVALIDDATA;
  600. } else {
  601. pic = remove_short(h, h->cur_pic_ptr->frame_num, 0);
  602. if (pic) {
  603. av_log(h->avctx, AV_LOG_ERROR, "illegal short term buffer state detected\n");
  604. err = AVERROR_INVALIDDATA;
  605. }
  606. if (h->short_ref_count)
  607. memmove(&h->short_ref[1], &h->short_ref[0],
  608. h->short_ref_count * sizeof(H264Picture*));
  609. h->short_ref[0] = h->cur_pic_ptr;
  610. h->short_ref_count++;
  611. h->cur_pic_ptr->reference |= h->picture_structure;
  612. }
  613. }
  614. if (h->long_ref_count + h->short_ref_count -
  615. (h->short_ref[0] == h->cur_pic_ptr) > h->ps.sps->ref_frame_count) {
  616. /* We have too many reference frames, probably due to corrupted
  617. * stream. Need to discard one frame. Prevents overrun of the
  618. * short_ref and long_ref buffers.
  619. */
  620. av_log(h->avctx, AV_LOG_ERROR,
  621. "number of reference frames (%d+%d) exceeds max (%d; probably "
  622. "corrupt input), discarding one\n",
  623. h->long_ref_count, h->short_ref_count, h->ps.sps->ref_frame_count);
  624. err = AVERROR_INVALIDDATA;
  625. if (h->long_ref_count && !h->short_ref_count) {
  626. for (i = 0; i < 16; ++i)
  627. if (h->long_ref[i])
  628. break;
  629. assert(i < 16);
  630. remove_long(h, i, 0);
  631. } else {
  632. pic = h->short_ref[h->short_ref_count - 1];
  633. remove_short(h, pic->frame_num, 0);
  634. }
  635. }
  636. print_short_term(h);
  637. print_long_term(h);
  638. return (h->avctx->err_recognition & AV_EF_EXPLODE) ? err : 0;
  639. }
  640. int ff_h264_decode_ref_pic_marking(H264Context *h, GetBitContext *gb,
  641. int first_slice)
  642. {
  643. int i, ret;
  644. MMCO mmco_temp[MAX_MMCO_COUNT], *mmco = first_slice ? h->mmco : mmco_temp;
  645. int mmco_index = 0;
  646. if (h->nal_unit_type == NAL_IDR_SLICE) { // FIXME fields
  647. skip_bits1(gb); // broken_link
  648. if (get_bits1(gb)) {
  649. mmco[0].opcode = MMCO_LONG;
  650. mmco[0].long_arg = 0;
  651. mmco_index = 1;
  652. }
  653. } else {
  654. if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag
  655. for (i = 0; i < MAX_MMCO_COUNT; i++) {
  656. MMCOOpcode opcode = get_ue_golomb_31(gb);
  657. mmco[i].opcode = opcode;
  658. if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG) {
  659. mmco[i].short_pic_num =
  660. (h->curr_pic_num - get_ue_golomb(gb) - 1) &
  661. (h->max_pic_num - 1);
  662. #if 0
  663. if (mmco[i].short_pic_num >= h->short_ref_count ||
  664. !h->short_ref[mmco[i].short_pic_num]) {
  665. av_log(s->avctx, AV_LOG_ERROR,
  666. "illegal short ref in memory management control "
  667. "operation %d\n", mmco);
  668. return -1;
  669. }
  670. #endif
  671. }
  672. if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED ||
  673. opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG) {
  674. unsigned int long_arg = get_ue_golomb_31(gb);
  675. if (long_arg >= 32 ||
  676. (long_arg >= 16 && !(opcode == MMCO_SET_MAX_LONG &&
  677. long_arg == 16) &&
  678. !(opcode == MMCO_LONG2UNUSED && FIELD_PICTURE(h)))) {
  679. av_log(h->avctx, AV_LOG_ERROR,
  680. "illegal long ref in memory management control "
  681. "operation %d\n", opcode);
  682. return -1;
  683. }
  684. mmco[i].long_arg = long_arg;
  685. }
  686. if (opcode > (unsigned) MMCO_LONG) {
  687. av_log(h->avctx, AV_LOG_ERROR,
  688. "illegal memory management control operation %d\n",
  689. opcode);
  690. return -1;
  691. }
  692. if (opcode == MMCO_END)
  693. break;
  694. }
  695. mmco_index = i;
  696. } else {
  697. if (first_slice) {
  698. ret = ff_generate_sliding_window_mmcos(h, first_slice);
  699. if (ret < 0 && h->avctx->err_recognition & AV_EF_EXPLODE)
  700. return ret;
  701. }
  702. mmco_index = -1;
  703. }
  704. }
  705. if (first_slice && mmco_index != -1) {
  706. h->mmco_index = mmco_index;
  707. } else if (!first_slice && mmco_index >= 0 &&
  708. (mmco_index != h->mmco_index ||
  709. check_opcodes(h->mmco, mmco_temp, mmco_index))) {
  710. av_log(h->avctx, AV_LOG_ERROR,
  711. "Inconsistent MMCO state between slices [%d, %d]\n",
  712. mmco_index, h->mmco_index);
  713. return AVERROR_INVALIDDATA;
  714. }
  715. return 0;
  716. }