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.

2823 lines
106KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... decoder
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 / MPEG-4 part10 codec.
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include "libavutil/avassert.h"
  27. #include "libavutil/display.h"
  28. #include "libavutil/imgutils.h"
  29. #include "libavutil/stereo3d.h"
  30. #include "libavutil/timer.h"
  31. #include "internal.h"
  32. #include "cabac.h"
  33. #include "cabac_functions.h"
  34. #include "error_resilience.h"
  35. #include "avcodec.h"
  36. #include "h264.h"
  37. #include "h264dec.h"
  38. #include "h264data.h"
  39. #include "h264chroma.h"
  40. #include "h264_mvpred.h"
  41. #include "h264_ps.h"
  42. #include "golomb.h"
  43. #include "mathops.h"
  44. #include "mpegutils.h"
  45. #include "mpegvideo.h"
  46. #include "rectangle.h"
  47. #include "thread.h"
  48. static const uint8_t field_scan[16+1] = {
  49. 0 + 0 * 4, 0 + 1 * 4, 1 + 0 * 4, 0 + 2 * 4,
  50. 0 + 3 * 4, 1 + 1 * 4, 1 + 2 * 4, 1 + 3 * 4,
  51. 2 + 0 * 4, 2 + 1 * 4, 2 + 2 * 4, 2 + 3 * 4,
  52. 3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4, 3 + 3 * 4,
  53. };
  54. static const uint8_t field_scan8x8[64+1] = {
  55. 0 + 0 * 8, 0 + 1 * 8, 0 + 2 * 8, 1 + 0 * 8,
  56. 1 + 1 * 8, 0 + 3 * 8, 0 + 4 * 8, 1 + 2 * 8,
  57. 2 + 0 * 8, 1 + 3 * 8, 0 + 5 * 8, 0 + 6 * 8,
  58. 0 + 7 * 8, 1 + 4 * 8, 2 + 1 * 8, 3 + 0 * 8,
  59. 2 + 2 * 8, 1 + 5 * 8, 1 + 6 * 8, 1 + 7 * 8,
  60. 2 + 3 * 8, 3 + 1 * 8, 4 + 0 * 8, 3 + 2 * 8,
  61. 2 + 4 * 8, 2 + 5 * 8, 2 + 6 * 8, 2 + 7 * 8,
  62. 3 + 3 * 8, 4 + 1 * 8, 5 + 0 * 8, 4 + 2 * 8,
  63. 3 + 4 * 8, 3 + 5 * 8, 3 + 6 * 8, 3 + 7 * 8,
  64. 4 + 3 * 8, 5 + 1 * 8, 6 + 0 * 8, 5 + 2 * 8,
  65. 4 + 4 * 8, 4 + 5 * 8, 4 + 6 * 8, 4 + 7 * 8,
  66. 5 + 3 * 8, 6 + 1 * 8, 6 + 2 * 8, 5 + 4 * 8,
  67. 5 + 5 * 8, 5 + 6 * 8, 5 + 7 * 8, 6 + 3 * 8,
  68. 7 + 0 * 8, 7 + 1 * 8, 6 + 4 * 8, 6 + 5 * 8,
  69. 6 + 6 * 8, 6 + 7 * 8, 7 + 2 * 8, 7 + 3 * 8,
  70. 7 + 4 * 8, 7 + 5 * 8, 7 + 6 * 8, 7 + 7 * 8,
  71. };
  72. static const uint8_t field_scan8x8_cavlc[64+1] = {
  73. 0 + 0 * 8, 1 + 1 * 8, 2 + 0 * 8, 0 + 7 * 8,
  74. 2 + 2 * 8, 2 + 3 * 8, 2 + 4 * 8, 3 + 3 * 8,
  75. 3 + 4 * 8, 4 + 3 * 8, 4 + 4 * 8, 5 + 3 * 8,
  76. 5 + 5 * 8, 7 + 0 * 8, 6 + 6 * 8, 7 + 4 * 8,
  77. 0 + 1 * 8, 0 + 3 * 8, 1 + 3 * 8, 1 + 4 * 8,
  78. 1 + 5 * 8, 3 + 1 * 8, 2 + 5 * 8, 4 + 1 * 8,
  79. 3 + 5 * 8, 5 + 1 * 8, 4 + 5 * 8, 6 + 1 * 8,
  80. 5 + 6 * 8, 7 + 1 * 8, 6 + 7 * 8, 7 + 5 * 8,
  81. 0 + 2 * 8, 0 + 4 * 8, 0 + 5 * 8, 2 + 1 * 8,
  82. 1 + 6 * 8, 4 + 0 * 8, 2 + 6 * 8, 5 + 0 * 8,
  83. 3 + 6 * 8, 6 + 0 * 8, 4 + 6 * 8, 6 + 2 * 8,
  84. 5 + 7 * 8, 6 + 4 * 8, 7 + 2 * 8, 7 + 6 * 8,
  85. 1 + 0 * 8, 1 + 2 * 8, 0 + 6 * 8, 3 + 0 * 8,
  86. 1 + 7 * 8, 3 + 2 * 8, 2 + 7 * 8, 4 + 2 * 8,
  87. 3 + 7 * 8, 5 + 2 * 8, 4 + 7 * 8, 5 + 4 * 8,
  88. 6 + 3 * 8, 6 + 5 * 8, 7 + 3 * 8, 7 + 7 * 8,
  89. };
  90. // zigzag_scan8x8_cavlc[i] = zigzag_scan8x8[(i/4) + 16*(i%4)]
  91. static const uint8_t zigzag_scan8x8_cavlc[64+1] = {
  92. 0 + 0 * 8, 1 + 1 * 8, 1 + 2 * 8, 2 + 2 * 8,
  93. 4 + 1 * 8, 0 + 5 * 8, 3 + 3 * 8, 7 + 0 * 8,
  94. 3 + 4 * 8, 1 + 7 * 8, 5 + 3 * 8, 6 + 3 * 8,
  95. 2 + 7 * 8, 6 + 4 * 8, 5 + 6 * 8, 7 + 5 * 8,
  96. 1 + 0 * 8, 2 + 0 * 8, 0 + 3 * 8, 3 + 1 * 8,
  97. 3 + 2 * 8, 0 + 6 * 8, 4 + 2 * 8, 6 + 1 * 8,
  98. 2 + 5 * 8, 2 + 6 * 8, 6 + 2 * 8, 5 + 4 * 8,
  99. 3 + 7 * 8, 7 + 3 * 8, 4 + 7 * 8, 7 + 6 * 8,
  100. 0 + 1 * 8, 3 + 0 * 8, 0 + 4 * 8, 4 + 0 * 8,
  101. 2 + 3 * 8, 1 + 5 * 8, 5 + 1 * 8, 5 + 2 * 8,
  102. 1 + 6 * 8, 3 + 5 * 8, 7 + 1 * 8, 4 + 5 * 8,
  103. 4 + 6 * 8, 7 + 4 * 8, 5 + 7 * 8, 6 + 7 * 8,
  104. 0 + 2 * 8, 2 + 1 * 8, 1 + 3 * 8, 5 + 0 * 8,
  105. 1 + 4 * 8, 2 + 4 * 8, 6 + 0 * 8, 4 + 3 * 8,
  106. 0 + 7 * 8, 4 + 4 * 8, 7 + 2 * 8, 3 + 6 * 8,
  107. 5 + 5 * 8, 6 + 5 * 8, 6 + 6 * 8, 7 + 7 * 8,
  108. };
  109. static void release_unused_pictures(H264Context *h, int remove_current)
  110. {
  111. int i;
  112. /* release non reference frames */
  113. for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
  114. if (h->DPB[i].f->buf[0] && !h->DPB[i].reference &&
  115. (remove_current || &h->DPB[i] != h->cur_pic_ptr)) {
  116. ff_h264_unref_picture(h, &h->DPB[i]);
  117. }
  118. }
  119. }
  120. static int alloc_scratch_buffers(H264SliceContext *sl, int linesize)
  121. {
  122. const H264Context *h = sl->h264;
  123. int alloc_size = FFALIGN(FFABS(linesize) + 32, 32);
  124. av_fast_malloc(&sl->bipred_scratchpad, &sl->bipred_scratchpad_allocated, 16 * 6 * alloc_size);
  125. // edge emu needs blocksize + filter length - 1
  126. // (= 21x21 for H.264)
  127. av_fast_malloc(&sl->edge_emu_buffer, &sl->edge_emu_buffer_allocated, alloc_size * 2 * 21);
  128. av_fast_mallocz(&sl->top_borders[0], &sl->top_borders_allocated[0],
  129. h->mb_width * 16 * 3 * sizeof(uint8_t) * 2);
  130. av_fast_mallocz(&sl->top_borders[1], &sl->top_borders_allocated[1],
  131. h->mb_width * 16 * 3 * sizeof(uint8_t) * 2);
  132. if (!sl->bipred_scratchpad || !sl->edge_emu_buffer ||
  133. !sl->top_borders[0] || !sl->top_borders[1]) {
  134. av_freep(&sl->bipred_scratchpad);
  135. av_freep(&sl->edge_emu_buffer);
  136. av_freep(&sl->top_borders[0]);
  137. av_freep(&sl->top_borders[1]);
  138. sl->bipred_scratchpad_allocated = 0;
  139. sl->edge_emu_buffer_allocated = 0;
  140. sl->top_borders_allocated[0] = 0;
  141. sl->top_borders_allocated[1] = 0;
  142. return AVERROR(ENOMEM);
  143. }
  144. return 0;
  145. }
  146. static int init_table_pools(H264Context *h)
  147. {
  148. const int big_mb_num = h->mb_stride * (h->mb_height + 1) + 1;
  149. const int mb_array_size = h->mb_stride * h->mb_height;
  150. const int b4_stride = h->mb_width * 4 + 1;
  151. const int b4_array_size = b4_stride * h->mb_height * 4;
  152. h->qscale_table_pool = av_buffer_pool_init(big_mb_num + h->mb_stride,
  153. av_buffer_allocz);
  154. h->mb_type_pool = av_buffer_pool_init((big_mb_num + h->mb_stride) *
  155. sizeof(uint32_t), av_buffer_allocz);
  156. h->motion_val_pool = av_buffer_pool_init(2 * (b4_array_size + 4) *
  157. sizeof(int16_t), av_buffer_allocz);
  158. h->ref_index_pool = av_buffer_pool_init(4 * mb_array_size, av_buffer_allocz);
  159. if (!h->qscale_table_pool || !h->mb_type_pool || !h->motion_val_pool ||
  160. !h->ref_index_pool) {
  161. av_buffer_pool_uninit(&h->qscale_table_pool);
  162. av_buffer_pool_uninit(&h->mb_type_pool);
  163. av_buffer_pool_uninit(&h->motion_val_pool);
  164. av_buffer_pool_uninit(&h->ref_index_pool);
  165. return AVERROR(ENOMEM);
  166. }
  167. return 0;
  168. }
  169. static int alloc_picture(H264Context *h, H264Picture *pic)
  170. {
  171. int i, ret = 0;
  172. av_assert0(!pic->f->data[0]);
  173. pic->tf.f = pic->f;
  174. ret = ff_thread_get_buffer(h->avctx, &pic->tf, pic->reference ?
  175. AV_GET_BUFFER_FLAG_REF : 0);
  176. if (ret < 0)
  177. goto fail;
  178. if (h->avctx->hwaccel) {
  179. const AVHWAccel *hwaccel = h->avctx->hwaccel;
  180. av_assert0(!pic->hwaccel_picture_private);
  181. if (hwaccel->frame_priv_data_size) {
  182. pic->hwaccel_priv_buf = av_buffer_allocz(hwaccel->frame_priv_data_size);
  183. if (!pic->hwaccel_priv_buf)
  184. return AVERROR(ENOMEM);
  185. pic->hwaccel_picture_private = pic->hwaccel_priv_buf->data;
  186. }
  187. }
  188. if (CONFIG_GRAY && !h->avctx->hwaccel && h->flags & AV_CODEC_FLAG_GRAY && pic->f->data[2]) {
  189. int h_chroma_shift, v_chroma_shift;
  190. av_pix_fmt_get_chroma_sub_sample(pic->f->format,
  191. &h_chroma_shift, &v_chroma_shift);
  192. for(i=0; i<AV_CEIL_RSHIFT(pic->f->height, v_chroma_shift); i++) {
  193. memset(pic->f->data[1] + pic->f->linesize[1]*i,
  194. 0x80, AV_CEIL_RSHIFT(pic->f->width, h_chroma_shift));
  195. memset(pic->f->data[2] + pic->f->linesize[2]*i,
  196. 0x80, AV_CEIL_RSHIFT(pic->f->width, h_chroma_shift));
  197. }
  198. }
  199. if (!h->qscale_table_pool) {
  200. ret = init_table_pools(h);
  201. if (ret < 0)
  202. goto fail;
  203. }
  204. pic->qscale_table_buf = av_buffer_pool_get(h->qscale_table_pool);
  205. pic->mb_type_buf = av_buffer_pool_get(h->mb_type_pool);
  206. if (!pic->qscale_table_buf || !pic->mb_type_buf)
  207. goto fail;
  208. pic->mb_type = (uint32_t*)pic->mb_type_buf->data + 2 * h->mb_stride + 1;
  209. pic->qscale_table = pic->qscale_table_buf->data + 2 * h->mb_stride + 1;
  210. for (i = 0; i < 2; i++) {
  211. pic->motion_val_buf[i] = av_buffer_pool_get(h->motion_val_pool);
  212. pic->ref_index_buf[i] = av_buffer_pool_get(h->ref_index_pool);
  213. if (!pic->motion_val_buf[i] || !pic->ref_index_buf[i])
  214. goto fail;
  215. pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
  216. pic->ref_index[i] = pic->ref_index_buf[i]->data;
  217. }
  218. return 0;
  219. fail:
  220. ff_h264_unref_picture(h, pic);
  221. return (ret < 0) ? ret : AVERROR(ENOMEM);
  222. }
  223. static int find_unused_picture(H264Context *h)
  224. {
  225. int i;
  226. for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
  227. if (!h->DPB[i].f->buf[0])
  228. return i;
  229. }
  230. return AVERROR_INVALIDDATA;
  231. }
  232. #define IN_RANGE(a, b, size) (((void*)(a) >= (void*)(b)) && ((void*)(a) < (void*)((b) + (size))))
  233. #define REBASE_PICTURE(pic, new_ctx, old_ctx) \
  234. (((pic) && (pic) >= (old_ctx)->DPB && \
  235. (pic) < (old_ctx)->DPB + H264_MAX_PICTURE_COUNT) ? \
  236. &(new_ctx)->DPB[(pic) - (old_ctx)->DPB] : NULL)
  237. static void copy_picture_range(H264Picture **to, H264Picture **from, int count,
  238. H264Context *new_base,
  239. H264Context *old_base)
  240. {
  241. int i;
  242. for (i = 0; i < count; i++) {
  243. av_assert1(!from[i] ||
  244. IN_RANGE(from[i], old_base, 1) ||
  245. IN_RANGE(from[i], old_base->DPB, H264_MAX_PICTURE_COUNT));
  246. to[i] = REBASE_PICTURE(from[i], new_base, old_base);
  247. }
  248. }
  249. static int h264_slice_header_init(H264Context *h);
  250. int ff_h264_update_thread_context(AVCodecContext *dst,
  251. const AVCodecContext *src)
  252. {
  253. H264Context *h = dst->priv_data, *h1 = src->priv_data;
  254. int inited = h->context_initialized, err = 0;
  255. int need_reinit = 0;
  256. int i, ret;
  257. if (dst == src)
  258. return 0;
  259. // We can't fail if SPS isn't set at it breaks current skip_frame code
  260. //if (!h1->ps.sps)
  261. // return AVERROR_INVALIDDATA;
  262. if (inited &&
  263. (h->width != h1->width ||
  264. h->height != h1->height ||
  265. h->mb_width != h1->mb_width ||
  266. h->mb_height != h1->mb_height ||
  267. !h->ps.sps ||
  268. h->ps.sps->bit_depth_luma != h1->ps.sps->bit_depth_luma ||
  269. h->ps.sps->chroma_format_idc != h1->ps.sps->chroma_format_idc ||
  270. h->ps.sps->colorspace != h1->ps.sps->colorspace)) {
  271. need_reinit = 1;
  272. }
  273. /* copy block_offset since frame_start may not be called */
  274. memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
  275. // SPS/PPS
  276. for (i = 0; i < FF_ARRAY_ELEMS(h->ps.sps_list); i++) {
  277. av_buffer_unref(&h->ps.sps_list[i]);
  278. if (h1->ps.sps_list[i]) {
  279. h->ps.sps_list[i] = av_buffer_ref(h1->ps.sps_list[i]);
  280. if (!h->ps.sps_list[i])
  281. return AVERROR(ENOMEM);
  282. }
  283. }
  284. for (i = 0; i < FF_ARRAY_ELEMS(h->ps.pps_list); i++) {
  285. av_buffer_unref(&h->ps.pps_list[i]);
  286. if (h1->ps.pps_list[i]) {
  287. h->ps.pps_list[i] = av_buffer_ref(h1->ps.pps_list[i]);
  288. if (!h->ps.pps_list[i])
  289. return AVERROR(ENOMEM);
  290. }
  291. }
  292. av_buffer_unref(&h->ps.pps_ref);
  293. av_buffer_unref(&h->ps.sps_ref);
  294. h->ps.pps = NULL;
  295. h->ps.sps = NULL;
  296. if (h1->ps.pps_ref) {
  297. h->ps.pps_ref = av_buffer_ref(h1->ps.pps_ref);
  298. if (!h->ps.pps_ref)
  299. return AVERROR(ENOMEM);
  300. h->ps.pps = (const PPS*)h->ps.pps_ref->data;
  301. }
  302. if (h1->ps.sps_ref) {
  303. h->ps.sps_ref = av_buffer_ref(h1->ps.sps_ref);
  304. if (!h->ps.sps_ref)
  305. return AVERROR(ENOMEM);
  306. h->ps.sps = (const SPS*)h->ps.sps_ref->data;
  307. }
  308. if (need_reinit || !inited) {
  309. h->width = h1->width;
  310. h->height = h1->height;
  311. h->mb_height = h1->mb_height;
  312. h->mb_width = h1->mb_width;
  313. h->mb_num = h1->mb_num;
  314. h->mb_stride = h1->mb_stride;
  315. h->b_stride = h1->b_stride;
  316. if (h->context_initialized || h1->context_initialized) {
  317. if ((err = h264_slice_header_init(h)) < 0) {
  318. av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed");
  319. return err;
  320. }
  321. }
  322. /* copy block_offset since frame_start may not be called */
  323. memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
  324. }
  325. h->avctx->coded_height = h1->avctx->coded_height;
  326. h->avctx->coded_width = h1->avctx->coded_width;
  327. h->avctx->width = h1->avctx->width;
  328. h->avctx->height = h1->avctx->height;
  329. h->width_from_caller = h1->width_from_caller;
  330. h->height_from_caller = h1->height_from_caller;
  331. h->coded_picture_number = h1->coded_picture_number;
  332. h->first_field = h1->first_field;
  333. h->picture_structure = h1->picture_structure;
  334. h->mb_aff_frame = h1->mb_aff_frame;
  335. h->droppable = h1->droppable;
  336. for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
  337. ff_h264_unref_picture(h, &h->DPB[i]);
  338. if (h1->DPB[i].f->buf[0] &&
  339. (ret = ff_h264_ref_picture(h, &h->DPB[i], &h1->DPB[i])) < 0)
  340. return ret;
  341. }
  342. h->cur_pic_ptr = REBASE_PICTURE(h1->cur_pic_ptr, h, h1);
  343. ff_h264_unref_picture(h, &h->cur_pic);
  344. if (h1->cur_pic.f->buf[0]) {
  345. ret = ff_h264_ref_picture(h, &h->cur_pic, &h1->cur_pic);
  346. if (ret < 0)
  347. return ret;
  348. }
  349. h->enable_er = h1->enable_er;
  350. h->workaround_bugs = h1->workaround_bugs;
  351. h->droppable = h1->droppable;
  352. // extradata/NAL handling
  353. h->is_avc = h1->is_avc;
  354. h->nal_length_size = h1->nal_length_size;
  355. h->sei.unregistered.x264_build = h1->sei.unregistered.x264_build;
  356. memcpy(&h->poc, &h1->poc, sizeof(h->poc));
  357. memcpy(h->short_ref, h1->short_ref, sizeof(h->short_ref));
  358. memcpy(h->long_ref, h1->long_ref, sizeof(h->long_ref));
  359. memcpy(h->delayed_pic, h1->delayed_pic, sizeof(h->delayed_pic));
  360. memcpy(h->last_pocs, h1->last_pocs, sizeof(h->last_pocs));
  361. h->next_output_pic = h1->next_output_pic;
  362. h->next_outputed_poc = h1->next_outputed_poc;
  363. memcpy(h->mmco, h1->mmco, sizeof(h->mmco));
  364. h->nb_mmco = h1->nb_mmco;
  365. h->mmco_reset = h1->mmco_reset;
  366. h->explicit_ref_marking = h1->explicit_ref_marking;
  367. h->long_ref_count = h1->long_ref_count;
  368. h->short_ref_count = h1->short_ref_count;
  369. copy_picture_range(h->short_ref, h1->short_ref, 32, h, h1);
  370. copy_picture_range(h->long_ref, h1->long_ref, 32, h, h1);
  371. copy_picture_range(h->delayed_pic, h1->delayed_pic,
  372. MAX_DELAYED_PIC_COUNT + 2, h, h1);
  373. h->frame_recovered = h1->frame_recovered;
  374. if (!h->cur_pic_ptr)
  375. return 0;
  376. if (!h->droppable) {
  377. err = ff_h264_execute_ref_pic_marking(h);
  378. h->poc.prev_poc_msb = h->poc.poc_msb;
  379. h->poc.prev_poc_lsb = h->poc.poc_lsb;
  380. }
  381. h->poc.prev_frame_num_offset = h->poc.frame_num_offset;
  382. h->poc.prev_frame_num = h->poc.frame_num;
  383. h->recovery_frame = h1->recovery_frame;
  384. return err;
  385. }
  386. static int h264_frame_start(H264Context *h)
  387. {
  388. H264Picture *pic;
  389. int i, ret;
  390. const int pixel_shift = h->pixel_shift;
  391. int c[4] = {
  392. 1<<(h->ps.sps->bit_depth_luma-1),
  393. 1<<(h->ps.sps->bit_depth_chroma-1),
  394. 1<<(h->ps.sps->bit_depth_chroma-1),
  395. -1
  396. };
  397. if (!ff_thread_can_start_frame(h->avctx)) {
  398. av_log(h->avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
  399. return -1;
  400. }
  401. release_unused_pictures(h, 1);
  402. h->cur_pic_ptr = NULL;
  403. i = find_unused_picture(h);
  404. if (i < 0) {
  405. av_log(h->avctx, AV_LOG_ERROR, "no frame buffer available\n");
  406. return i;
  407. }
  408. pic = &h->DPB[i];
  409. pic->reference = h->droppable ? 0 : h->picture_structure;
  410. pic->f->coded_picture_number = h->coded_picture_number++;
  411. pic->field_picture = h->picture_structure != PICT_FRAME;
  412. pic->frame_num = h->poc.frame_num;
  413. /*
  414. * Zero key_frame here; IDR markings per slice in frame or fields are ORed
  415. * in later.
  416. * See decode_nal_units().
  417. */
  418. pic->f->key_frame = 0;
  419. pic->mmco_reset = 0;
  420. pic->recovered = 0;
  421. pic->invalid_gap = 0;
  422. pic->sei_recovery_frame_cnt = h->sei.recovery_point.recovery_frame_cnt;
  423. pic->f->pict_type = h->slice_ctx[0].slice_type;
  424. pic->f->crop_left = h->crop_left;
  425. pic->f->crop_right = h->crop_right;
  426. pic->f->crop_top = h->crop_top;
  427. pic->f->crop_bottom = h->crop_bottom;
  428. if ((ret = alloc_picture(h, pic)) < 0)
  429. return ret;
  430. if(!h->frame_recovered && !h->avctx->hwaccel
  431. #if FF_API_CAP_VDPAU
  432. && !(h->avctx->codec->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU)
  433. #endif
  434. )
  435. ff_color_frame(pic->f, c);
  436. h->cur_pic_ptr = pic;
  437. ff_h264_unref_picture(h, &h->cur_pic);
  438. if (CONFIG_ERROR_RESILIENCE) {
  439. ff_h264_set_erpic(&h->slice_ctx[0].er.cur_pic, NULL);
  440. }
  441. if ((ret = ff_h264_ref_picture(h, &h->cur_pic, h->cur_pic_ptr)) < 0)
  442. return ret;
  443. for (i = 0; i < h->nb_slice_ctx; i++) {
  444. h->slice_ctx[i].linesize = h->cur_pic_ptr->f->linesize[0];
  445. h->slice_ctx[i].uvlinesize = h->cur_pic_ptr->f->linesize[1];
  446. }
  447. if (CONFIG_ERROR_RESILIENCE && h->enable_er) {
  448. ff_er_frame_start(&h->slice_ctx[0].er);
  449. ff_h264_set_erpic(&h->slice_ctx[0].er.last_pic, NULL);
  450. ff_h264_set_erpic(&h->slice_ctx[0].er.next_pic, NULL);
  451. }
  452. for (i = 0; i < 16; i++) {
  453. h->block_offset[i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * pic->f->linesize[0] * ((scan8[i] - scan8[0]) >> 3);
  454. h->block_offset[48 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * pic->f->linesize[0] * ((scan8[i] - scan8[0]) >> 3);
  455. }
  456. for (i = 0; i < 16; i++) {
  457. h->block_offset[16 + i] =
  458. h->block_offset[32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * pic->f->linesize[1] * ((scan8[i] - scan8[0]) >> 3);
  459. h->block_offset[48 + 16 + i] =
  460. h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * pic->f->linesize[1] * ((scan8[i] - scan8[0]) >> 3);
  461. }
  462. /* We mark the current picture as non-reference after allocating it, so
  463. * that if we break out due to an error it can be released automatically
  464. * in the next ff_mpv_frame_start().
  465. */
  466. h->cur_pic_ptr->reference = 0;
  467. h->cur_pic_ptr->field_poc[0] = h->cur_pic_ptr->field_poc[1] = INT_MAX;
  468. h->next_output_pic = NULL;
  469. h->postpone_filter = 0;
  470. h->mb_aff_frame = h->ps.sps->mb_aff && (h->picture_structure == PICT_FRAME);
  471. assert(h->cur_pic_ptr->long_ref == 0);
  472. return 0;
  473. }
  474. static av_always_inline void backup_mb_border(const H264Context *h, H264SliceContext *sl,
  475. uint8_t *src_y,
  476. uint8_t *src_cb, uint8_t *src_cr,
  477. int linesize, int uvlinesize,
  478. int simple)
  479. {
  480. uint8_t *top_border;
  481. int top_idx = 1;
  482. const int pixel_shift = h->pixel_shift;
  483. int chroma444 = CHROMA444(h);
  484. int chroma422 = CHROMA422(h);
  485. src_y -= linesize;
  486. src_cb -= uvlinesize;
  487. src_cr -= uvlinesize;
  488. if (!simple && FRAME_MBAFF(h)) {
  489. if (sl->mb_y & 1) {
  490. if (!MB_MBAFF(sl)) {
  491. top_border = sl->top_borders[0][sl->mb_x];
  492. AV_COPY128(top_border, src_y + 15 * linesize);
  493. if (pixel_shift)
  494. AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
  495. if (simple || !CONFIG_GRAY || !(h->flags & AV_CODEC_FLAG_GRAY)) {
  496. if (chroma444) {
  497. if (pixel_shift) {
  498. AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
  499. AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
  500. AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
  501. AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
  502. } else {
  503. AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
  504. AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
  505. }
  506. } else if (chroma422) {
  507. if (pixel_shift) {
  508. AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
  509. AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
  510. } else {
  511. AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
  512. AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
  513. }
  514. } else {
  515. if (pixel_shift) {
  516. AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
  517. AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
  518. } else {
  519. AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
  520. AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
  521. }
  522. }
  523. }
  524. }
  525. } else if (MB_MBAFF(sl)) {
  526. top_idx = 0;
  527. } else
  528. return;
  529. }
  530. top_border = sl->top_borders[top_idx][sl->mb_x];
  531. /* There are two lines saved, the line above the top macroblock
  532. * of a pair, and the line above the bottom macroblock. */
  533. AV_COPY128(top_border, src_y + 16 * linesize);
  534. if (pixel_shift)
  535. AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
  536. if (simple || !CONFIG_GRAY || !(h->flags & AV_CODEC_FLAG_GRAY)) {
  537. if (chroma444) {
  538. if (pixel_shift) {
  539. AV_COPY128(top_border + 32, src_cb + 16 * linesize);
  540. AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
  541. AV_COPY128(top_border + 64, src_cr + 16 * linesize);
  542. AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
  543. } else {
  544. AV_COPY128(top_border + 16, src_cb + 16 * linesize);
  545. AV_COPY128(top_border + 32, src_cr + 16 * linesize);
  546. }
  547. } else if (chroma422) {
  548. if (pixel_shift) {
  549. AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
  550. AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
  551. } else {
  552. AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
  553. AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
  554. }
  555. } else {
  556. if (pixel_shift) {
  557. AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
  558. AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
  559. } else {
  560. AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
  561. AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
  562. }
  563. }
  564. }
  565. }
  566. /**
  567. * Initialize implicit_weight table.
  568. * @param field 0/1 initialize the weight for interlaced MBAFF
  569. * -1 initializes the rest
  570. */
  571. static void implicit_weight_table(const H264Context *h, H264SliceContext *sl, int field)
  572. {
  573. int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
  574. for (i = 0; i < 2; i++) {
  575. sl->pwt.luma_weight_flag[i] = 0;
  576. sl->pwt.chroma_weight_flag[i] = 0;
  577. }
  578. if (field < 0) {
  579. if (h->picture_structure == PICT_FRAME) {
  580. cur_poc = h->cur_pic_ptr->poc;
  581. } else {
  582. cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure - 1];
  583. }
  584. if (sl->ref_count[0] == 1 && sl->ref_count[1] == 1 && !FRAME_MBAFF(h) &&
  585. sl->ref_list[0][0].poc + (int64_t)sl->ref_list[1][0].poc == 2 * cur_poc) {
  586. sl->pwt.use_weight = 0;
  587. sl->pwt.use_weight_chroma = 0;
  588. return;
  589. }
  590. ref_start = 0;
  591. ref_count0 = sl->ref_count[0];
  592. ref_count1 = sl->ref_count[1];
  593. } else {
  594. cur_poc = h->cur_pic_ptr->field_poc[field];
  595. ref_start = 16;
  596. ref_count0 = 16 + 2 * sl->ref_count[0];
  597. ref_count1 = 16 + 2 * sl->ref_count[1];
  598. }
  599. sl->pwt.use_weight = 2;
  600. sl->pwt.use_weight_chroma = 2;
  601. sl->pwt.luma_log2_weight_denom = 5;
  602. sl->pwt.chroma_log2_weight_denom = 5;
  603. for (ref0 = ref_start; ref0 < ref_count0; ref0++) {
  604. int64_t poc0 = sl->ref_list[0][ref0].poc;
  605. for (ref1 = ref_start; ref1 < ref_count1; ref1++) {
  606. int w = 32;
  607. if (!sl->ref_list[0][ref0].parent->long_ref && !sl->ref_list[1][ref1].parent->long_ref) {
  608. int poc1 = sl->ref_list[1][ref1].poc;
  609. int td = av_clip_int8(poc1 - poc0);
  610. if (td) {
  611. int tb = av_clip_int8(cur_poc - poc0);
  612. int tx = (16384 + (FFABS(td) >> 1)) / td;
  613. int dist_scale_factor = (tb * tx + 32) >> 8;
  614. if (dist_scale_factor >= -64 && dist_scale_factor <= 128)
  615. w = 64 - dist_scale_factor;
  616. }
  617. }
  618. if (field < 0) {
  619. sl->pwt.implicit_weight[ref0][ref1][0] =
  620. sl->pwt.implicit_weight[ref0][ref1][1] = w;
  621. } else {
  622. sl->pwt.implicit_weight[ref0][ref1][field] = w;
  623. }
  624. }
  625. }
  626. }
  627. /**
  628. * initialize scan tables
  629. */
  630. static void init_scan_tables(H264Context *h)
  631. {
  632. int i;
  633. for (i = 0; i < 16; i++) {
  634. #define TRANSPOSE(x) ((x) >> 2) | (((x) << 2) & 0xF)
  635. h->zigzag_scan[i] = TRANSPOSE(ff_zigzag_scan[i]);
  636. h->field_scan[i] = TRANSPOSE(field_scan[i]);
  637. #undef TRANSPOSE
  638. }
  639. for (i = 0; i < 64; i++) {
  640. #define TRANSPOSE(x) ((x) >> 3) | (((x) & 7) << 3)
  641. h->zigzag_scan8x8[i] = TRANSPOSE(ff_zigzag_direct[i]);
  642. h->zigzag_scan8x8_cavlc[i] = TRANSPOSE(zigzag_scan8x8_cavlc[i]);
  643. h->field_scan8x8[i] = TRANSPOSE(field_scan8x8[i]);
  644. h->field_scan8x8_cavlc[i] = TRANSPOSE(field_scan8x8_cavlc[i]);
  645. #undef TRANSPOSE
  646. }
  647. if (h->ps.sps->transform_bypass) { // FIXME same ugly
  648. memcpy(h->zigzag_scan_q0 , ff_zigzag_scan , sizeof(h->zigzag_scan_q0 ));
  649. memcpy(h->zigzag_scan8x8_q0 , ff_zigzag_direct , sizeof(h->zigzag_scan8x8_q0 ));
  650. memcpy(h->zigzag_scan8x8_cavlc_q0 , zigzag_scan8x8_cavlc , sizeof(h->zigzag_scan8x8_cavlc_q0));
  651. memcpy(h->field_scan_q0 , field_scan , sizeof(h->field_scan_q0 ));
  652. memcpy(h->field_scan8x8_q0 , field_scan8x8 , sizeof(h->field_scan8x8_q0 ));
  653. memcpy(h->field_scan8x8_cavlc_q0 , field_scan8x8_cavlc , sizeof(h->field_scan8x8_cavlc_q0 ));
  654. } else {
  655. memcpy(h->zigzag_scan_q0 , h->zigzag_scan , sizeof(h->zigzag_scan_q0 ));
  656. memcpy(h->zigzag_scan8x8_q0 , h->zigzag_scan8x8 , sizeof(h->zigzag_scan8x8_q0 ));
  657. memcpy(h->zigzag_scan8x8_cavlc_q0 , h->zigzag_scan8x8_cavlc , sizeof(h->zigzag_scan8x8_cavlc_q0));
  658. memcpy(h->field_scan_q0 , h->field_scan , sizeof(h->field_scan_q0 ));
  659. memcpy(h->field_scan8x8_q0 , h->field_scan8x8 , sizeof(h->field_scan8x8_q0 ));
  660. memcpy(h->field_scan8x8_cavlc_q0 , h->field_scan8x8_cavlc , sizeof(h->field_scan8x8_cavlc_q0 ));
  661. }
  662. }
  663. static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
  664. {
  665. #define HWACCEL_MAX (CONFIG_H264_DXVA2_HWACCEL + \
  666. (CONFIG_H264_D3D11VA_HWACCEL * 2) + \
  667. CONFIG_H264_VAAPI_HWACCEL + \
  668. (CONFIG_H264_VDA_HWACCEL * 2) + \
  669. CONFIG_H264_VIDEOTOOLBOX_HWACCEL + \
  670. CONFIG_H264_VDPAU_HWACCEL)
  671. enum AVPixelFormat pix_fmts[HWACCEL_MAX + 2], *fmt = pix_fmts;
  672. const enum AVPixelFormat *choices = pix_fmts;
  673. int i;
  674. switch (h->ps.sps->bit_depth_luma) {
  675. case 9:
  676. if (CHROMA444(h)) {
  677. if (h->avctx->colorspace == AVCOL_SPC_RGB) {
  678. *fmt++ = AV_PIX_FMT_GBRP9;
  679. } else
  680. *fmt++ = AV_PIX_FMT_YUV444P9;
  681. } else if (CHROMA422(h))
  682. *fmt++ = AV_PIX_FMT_YUV422P9;
  683. else
  684. *fmt++ = AV_PIX_FMT_YUV420P9;
  685. break;
  686. case 10:
  687. if (CHROMA444(h)) {
  688. if (h->avctx->colorspace == AVCOL_SPC_RGB) {
  689. *fmt++ = AV_PIX_FMT_GBRP10;
  690. } else
  691. *fmt++ = AV_PIX_FMT_YUV444P10;
  692. } else if (CHROMA422(h))
  693. *fmt++ = AV_PIX_FMT_YUV422P10;
  694. else
  695. *fmt++ = AV_PIX_FMT_YUV420P10;
  696. break;
  697. case 12:
  698. if (CHROMA444(h)) {
  699. if (h->avctx->colorspace == AVCOL_SPC_RGB) {
  700. *fmt++ = AV_PIX_FMT_GBRP12;
  701. } else
  702. *fmt++ = AV_PIX_FMT_YUV444P12;
  703. } else if (CHROMA422(h))
  704. *fmt++ = AV_PIX_FMT_YUV422P12;
  705. else
  706. *fmt++ = AV_PIX_FMT_YUV420P12;
  707. break;
  708. case 14:
  709. if (CHROMA444(h)) {
  710. if (h->avctx->colorspace == AVCOL_SPC_RGB) {
  711. *fmt++ = AV_PIX_FMT_GBRP14;
  712. } else
  713. *fmt++ = AV_PIX_FMT_YUV444P14;
  714. } else if (CHROMA422(h))
  715. *fmt++ = AV_PIX_FMT_YUV422P14;
  716. else
  717. *fmt++ = AV_PIX_FMT_YUV420P14;
  718. break;
  719. case 8:
  720. #if CONFIG_H264_VDPAU_HWACCEL
  721. *fmt++ = AV_PIX_FMT_VDPAU;
  722. #endif
  723. if (CHROMA444(h)) {
  724. if (h->avctx->colorspace == AVCOL_SPC_RGB)
  725. *fmt++ = AV_PIX_FMT_GBRP;
  726. else if (h->avctx->color_range == AVCOL_RANGE_JPEG)
  727. *fmt++ = AV_PIX_FMT_YUVJ444P;
  728. else
  729. *fmt++ = AV_PIX_FMT_YUV444P;
  730. } else if (CHROMA422(h)) {
  731. if (h->avctx->color_range == AVCOL_RANGE_JPEG)
  732. *fmt++ = AV_PIX_FMT_YUVJ422P;
  733. else
  734. *fmt++ = AV_PIX_FMT_YUV422P;
  735. } else {
  736. #if CONFIG_H264_DXVA2_HWACCEL
  737. *fmt++ = AV_PIX_FMT_DXVA2_VLD;
  738. #endif
  739. #if CONFIG_H264_D3D11VA_HWACCEL
  740. *fmt++ = AV_PIX_FMT_D3D11VA_VLD;
  741. *fmt++ = AV_PIX_FMT_D3D11;
  742. #endif
  743. #if CONFIG_H264_VAAPI_HWACCEL
  744. *fmt++ = AV_PIX_FMT_VAAPI;
  745. #endif
  746. #if CONFIG_H264_VDA_HWACCEL
  747. *fmt++ = AV_PIX_FMT_VDA_VLD;
  748. *fmt++ = AV_PIX_FMT_VDA;
  749. #endif
  750. #if CONFIG_H264_VIDEOTOOLBOX_HWACCEL
  751. *fmt++ = AV_PIX_FMT_VIDEOTOOLBOX;
  752. #endif
  753. if (h->avctx->codec->pix_fmts)
  754. choices = h->avctx->codec->pix_fmts;
  755. else if (h->avctx->color_range == AVCOL_RANGE_JPEG)
  756. *fmt++ = AV_PIX_FMT_YUVJ420P;
  757. else
  758. *fmt++ = AV_PIX_FMT_YUV420P;
  759. }
  760. break;
  761. default:
  762. av_log(h->avctx, AV_LOG_ERROR,
  763. "Unsupported bit depth %d\n", h->ps.sps->bit_depth_luma);
  764. return AVERROR_INVALIDDATA;
  765. }
  766. *fmt = AV_PIX_FMT_NONE;
  767. for (i=0; choices[i] != AV_PIX_FMT_NONE; i++)
  768. if (choices[i] == h->avctx->pix_fmt && !force_callback)
  769. return choices[i];
  770. return ff_thread_get_format(h->avctx, choices);
  771. }
  772. /* export coded and cropped frame dimensions to AVCodecContext */
  773. static int init_dimensions(H264Context *h)
  774. {
  775. const SPS *sps = (const SPS*)h->ps.sps;
  776. int cr = sps->crop_right;
  777. int cl = sps->crop_left;
  778. int ct = sps->crop_top;
  779. int cb = sps->crop_bottom;
  780. int width = h->width - (cr + cl);
  781. int height = h->height - (ct + cb);
  782. av_assert0(sps->crop_right + sps->crop_left < (unsigned)h->width);
  783. av_assert0(sps->crop_top + sps->crop_bottom < (unsigned)h->height);
  784. /* handle container cropping */
  785. if (h->width_from_caller > 0 && h->height_from_caller > 0 &&
  786. !sps->crop_top && !sps->crop_left &&
  787. FFALIGN(h->width_from_caller, 16) == FFALIGN(width, 16) &&
  788. FFALIGN(h->height_from_caller, 16) == FFALIGN(height, 16) &&
  789. h->width_from_caller <= width &&
  790. h->height_from_caller <= height) {
  791. width = h->width_from_caller;
  792. height = h->height_from_caller;
  793. cl = 0;
  794. ct = 0;
  795. cr = h->width - width;
  796. cb = h->height - height;
  797. } else {
  798. h->width_from_caller = 0;
  799. h->height_from_caller = 0;
  800. }
  801. h->avctx->coded_width = h->width;
  802. h->avctx->coded_height = h->height;
  803. h->avctx->width = width;
  804. h->avctx->height = height;
  805. h->crop_right = cr;
  806. h->crop_left = cl;
  807. h->crop_top = ct;
  808. h->crop_bottom = cb;
  809. return 0;
  810. }
  811. static int h264_slice_header_init(H264Context *h)
  812. {
  813. const SPS *sps = h->ps.sps;
  814. int i, ret;
  815. ff_set_sar(h->avctx, sps->sar);
  816. av_pix_fmt_get_chroma_sub_sample(h->avctx->pix_fmt,
  817. &h->chroma_x_shift, &h->chroma_y_shift);
  818. if (sps->timing_info_present_flag) {
  819. int64_t den = sps->time_scale;
  820. if (h->sei.unregistered.x264_build < 44U)
  821. den *= 2;
  822. av_reduce(&h->avctx->framerate.den, &h->avctx->framerate.num,
  823. sps->num_units_in_tick * h->avctx->ticks_per_frame, den, 1 << 30);
  824. }
  825. ff_h264_free_tables(h);
  826. h->first_field = 0;
  827. h->prev_interlaced_frame = 1;
  828. init_scan_tables(h);
  829. ret = ff_h264_alloc_tables(h);
  830. if (ret < 0) {
  831. av_log(h->avctx, AV_LOG_ERROR, "Could not allocate memory\n");
  832. goto fail;
  833. }
  834. #if FF_API_CAP_VDPAU
  835. if (h->avctx->codec &&
  836. h->avctx->codec->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU &&
  837. (sps->bit_depth_luma != 8 || sps->chroma_format_idc > 1)) {
  838. av_log(h->avctx, AV_LOG_ERROR,
  839. "VDPAU decoding does not support video colorspace.\n");
  840. ret = AVERROR_INVALIDDATA;
  841. goto fail;
  842. }
  843. #endif
  844. if (sps->bit_depth_luma < 8 || sps->bit_depth_luma > 14 ||
  845. sps->bit_depth_luma == 11 || sps->bit_depth_luma == 13
  846. ) {
  847. av_log(h->avctx, AV_LOG_ERROR, "Unsupported bit depth %d\n",
  848. sps->bit_depth_luma);
  849. ret = AVERROR_INVALIDDATA;
  850. goto fail;
  851. }
  852. h->cur_bit_depth_luma =
  853. h->avctx->bits_per_raw_sample = sps->bit_depth_luma;
  854. h->cur_chroma_format_idc = sps->chroma_format_idc;
  855. h->pixel_shift = sps->bit_depth_luma > 8;
  856. h->chroma_format_idc = sps->chroma_format_idc;
  857. h->bit_depth_luma = sps->bit_depth_luma;
  858. ff_h264dsp_init(&h->h264dsp, sps->bit_depth_luma,
  859. sps->chroma_format_idc);
  860. ff_h264chroma_init(&h->h264chroma, sps->bit_depth_chroma);
  861. ff_h264qpel_init(&h->h264qpel, sps->bit_depth_luma);
  862. ff_h264_pred_init(&h->hpc, h->avctx->codec_id, sps->bit_depth_luma,
  863. sps->chroma_format_idc);
  864. ff_videodsp_init(&h->vdsp, sps->bit_depth_luma);
  865. if (!HAVE_THREADS || !(h->avctx->active_thread_type & FF_THREAD_SLICE)) {
  866. ret = ff_h264_slice_context_init(h, &h->slice_ctx[0]);
  867. if (ret < 0) {
  868. av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
  869. goto fail;
  870. }
  871. } else {
  872. for (i = 0; i < h->nb_slice_ctx; i++) {
  873. H264SliceContext *sl = &h->slice_ctx[i];
  874. sl->h264 = h;
  875. sl->intra4x4_pred_mode = h->intra4x4_pred_mode + i * 8 * 2 * h->mb_stride;
  876. sl->mvd_table[0] = h->mvd_table[0] + i * 8 * 2 * h->mb_stride;
  877. sl->mvd_table[1] = h->mvd_table[1] + i * 8 * 2 * h->mb_stride;
  878. if ((ret = ff_h264_slice_context_init(h, sl)) < 0) {
  879. av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
  880. goto fail;
  881. }
  882. }
  883. }
  884. h->context_initialized = 1;
  885. return 0;
  886. fail:
  887. ff_h264_free_tables(h);
  888. h->context_initialized = 0;
  889. return ret;
  890. }
  891. static enum AVPixelFormat non_j_pixfmt(enum AVPixelFormat a)
  892. {
  893. switch (a) {
  894. case AV_PIX_FMT_YUVJ420P: return AV_PIX_FMT_YUV420P;
  895. case AV_PIX_FMT_YUVJ422P: return AV_PIX_FMT_YUV422P;
  896. case AV_PIX_FMT_YUVJ444P: return AV_PIX_FMT_YUV444P;
  897. default:
  898. return a;
  899. }
  900. }
  901. static int h264_init_ps(H264Context *h, const H264SliceContext *sl, int first_slice)
  902. {
  903. const SPS *sps;
  904. int needs_reinit = 0, must_reinit, ret;
  905. if (first_slice) {
  906. av_buffer_unref(&h->ps.pps_ref);
  907. h->ps.pps = NULL;
  908. h->ps.pps_ref = av_buffer_ref(h->ps.pps_list[sl->pps_id]);
  909. if (!h->ps.pps_ref)
  910. return AVERROR(ENOMEM);
  911. h->ps.pps = (const PPS*)h->ps.pps_ref->data;
  912. }
  913. if (h->ps.sps != (const SPS*)h->ps.sps_list[h->ps.pps->sps_id]->data) {
  914. av_buffer_unref(&h->ps.sps_ref);
  915. h->ps.sps = NULL;
  916. h->ps.sps_ref = av_buffer_ref(h->ps.sps_list[h->ps.pps->sps_id]);
  917. if (!h->ps.sps_ref)
  918. return AVERROR(ENOMEM);
  919. h->ps.sps = (const SPS*)h->ps.sps_ref->data;
  920. if (h->mb_width != h->ps.sps->mb_width ||
  921. h->mb_height != h->ps.sps->mb_height ||
  922. h->cur_bit_depth_luma != h->ps.sps->bit_depth_luma ||
  923. h->cur_chroma_format_idc != h->ps.sps->chroma_format_idc
  924. )
  925. needs_reinit = 1;
  926. if (h->bit_depth_luma != h->ps.sps->bit_depth_luma ||
  927. h->chroma_format_idc != h->ps.sps->chroma_format_idc)
  928. needs_reinit = 1;
  929. }
  930. sps = h->ps.sps;
  931. must_reinit = (h->context_initialized &&
  932. ( 16*sps->mb_width != h->avctx->coded_width
  933. || 16*sps->mb_height != h->avctx->coded_height
  934. || h->cur_bit_depth_luma != sps->bit_depth_luma
  935. || h->cur_chroma_format_idc != sps->chroma_format_idc
  936. || h->mb_width != sps->mb_width
  937. || h->mb_height != sps->mb_height
  938. ));
  939. if (h->avctx->pix_fmt == AV_PIX_FMT_NONE
  940. || (non_j_pixfmt(h->avctx->pix_fmt) != non_j_pixfmt(get_pixel_format(h, 0))))
  941. must_reinit = 1;
  942. if (first_slice && av_cmp_q(sps->sar, h->avctx->sample_aspect_ratio))
  943. must_reinit = 1;
  944. if (!h->setup_finished) {
  945. h->avctx->profile = ff_h264_get_profile(sps);
  946. h->avctx->level = sps->level_idc;
  947. h->avctx->refs = sps->ref_frame_count;
  948. h->mb_width = sps->mb_width;
  949. h->mb_height = sps->mb_height;
  950. h->mb_num = h->mb_width * h->mb_height;
  951. h->mb_stride = h->mb_width + 1;
  952. h->b_stride = h->mb_width * 4;
  953. h->chroma_y_shift = sps->chroma_format_idc <= 1; // 400 uses yuv420p
  954. h->width = 16 * h->mb_width;
  955. h->height = 16 * h->mb_height;
  956. ret = init_dimensions(h);
  957. if (ret < 0)
  958. return ret;
  959. if (sps->video_signal_type_present_flag) {
  960. h->avctx->color_range = sps->full_range > 0 ? AVCOL_RANGE_JPEG
  961. : AVCOL_RANGE_MPEG;
  962. if (sps->colour_description_present_flag) {
  963. if (h->avctx->colorspace != sps->colorspace)
  964. needs_reinit = 1;
  965. h->avctx->color_primaries = sps->color_primaries;
  966. h->avctx->color_trc = sps->color_trc;
  967. h->avctx->colorspace = sps->colorspace;
  968. }
  969. }
  970. }
  971. if (!h->context_initialized || must_reinit || needs_reinit) {
  972. int flush_changes = h->context_initialized;
  973. h->context_initialized = 0;
  974. if (sl != h->slice_ctx) {
  975. av_log(h->avctx, AV_LOG_ERROR,
  976. "changing width %d -> %d / height %d -> %d on "
  977. "slice %d\n",
  978. h->width, h->avctx->coded_width,
  979. h->height, h->avctx->coded_height,
  980. h->current_slice + 1);
  981. return AVERROR_INVALIDDATA;
  982. }
  983. av_assert1(first_slice);
  984. if (flush_changes)
  985. ff_h264_flush_change(h);
  986. if ((ret = get_pixel_format(h, 1)) < 0)
  987. return ret;
  988. h->avctx->pix_fmt = ret;
  989. av_log(h->avctx, AV_LOG_VERBOSE, "Reinit context to %dx%d, "
  990. "pix_fmt: %s\n", h->width, h->height, av_get_pix_fmt_name(h->avctx->pix_fmt));
  991. if ((ret = h264_slice_header_init(h)) < 0) {
  992. av_log(h->avctx, AV_LOG_ERROR,
  993. "h264_slice_header_init() failed\n");
  994. return ret;
  995. }
  996. }
  997. return 0;
  998. }
  999. static int h264_export_frame_props(H264Context *h)
  1000. {
  1001. const SPS *sps = h->ps.sps;
  1002. H264Picture *cur = h->cur_pic_ptr;
  1003. cur->f->interlaced_frame = 0;
  1004. cur->f->repeat_pict = 0;
  1005. /* Signal interlacing information externally. */
  1006. /* Prioritize picture timing SEI information over used
  1007. * decoding process if it exists. */
  1008. if (sps->pic_struct_present_flag && h->sei.picture_timing.present) {
  1009. H264SEIPictureTiming *pt = &h->sei.picture_timing;
  1010. switch (pt->pic_struct) {
  1011. case H264_SEI_PIC_STRUCT_FRAME:
  1012. break;
  1013. case H264_SEI_PIC_STRUCT_TOP_FIELD:
  1014. case H264_SEI_PIC_STRUCT_BOTTOM_FIELD:
  1015. cur->f->interlaced_frame = 1;
  1016. break;
  1017. case H264_SEI_PIC_STRUCT_TOP_BOTTOM:
  1018. case H264_SEI_PIC_STRUCT_BOTTOM_TOP:
  1019. if (FIELD_OR_MBAFF_PICTURE(h))
  1020. cur->f->interlaced_frame = 1;
  1021. else
  1022. // try to flag soft telecine progressive
  1023. cur->f->interlaced_frame = h->prev_interlaced_frame;
  1024. break;
  1025. case H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
  1026. case H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
  1027. /* Signal the possibility of telecined film externally
  1028. * (pic_struct 5,6). From these hints, let the applications
  1029. * decide if they apply deinterlacing. */
  1030. cur->f->repeat_pict = 1;
  1031. break;
  1032. case H264_SEI_PIC_STRUCT_FRAME_DOUBLING:
  1033. cur->f->repeat_pict = 2;
  1034. break;
  1035. case H264_SEI_PIC_STRUCT_FRAME_TRIPLING:
  1036. cur->f->repeat_pict = 4;
  1037. break;
  1038. }
  1039. if ((pt->ct_type & 3) &&
  1040. pt->pic_struct <= H264_SEI_PIC_STRUCT_BOTTOM_TOP)
  1041. cur->f->interlaced_frame = (pt->ct_type & (1 << 1)) != 0;
  1042. } else {
  1043. /* Derive interlacing flag from used decoding process. */
  1044. cur->f->interlaced_frame = FIELD_OR_MBAFF_PICTURE(h);
  1045. }
  1046. h->prev_interlaced_frame = cur->f->interlaced_frame;
  1047. if (cur->field_poc[0] != cur->field_poc[1]) {
  1048. /* Derive top_field_first from field pocs. */
  1049. cur->f->top_field_first = cur->field_poc[0] < cur->field_poc[1];
  1050. } else {
  1051. if (sps->pic_struct_present_flag && h->sei.picture_timing.present) {
  1052. /* Use picture timing SEI information. Even if it is a
  1053. * information of a past frame, better than nothing. */
  1054. if (h->sei.picture_timing.pic_struct == H264_SEI_PIC_STRUCT_TOP_BOTTOM ||
  1055. h->sei.picture_timing.pic_struct == H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
  1056. cur->f->top_field_first = 1;
  1057. else
  1058. cur->f->top_field_first = 0;
  1059. } else if (cur->f->interlaced_frame) {
  1060. /* Default to top field first when pic_struct_present_flag
  1061. * is not set but interlaced frame detected */
  1062. cur->f->top_field_first = 1;
  1063. } else {
  1064. /* Most likely progressive */
  1065. cur->f->top_field_first = 0;
  1066. }
  1067. }
  1068. if (h->sei.frame_packing.present &&
  1069. h->sei.frame_packing.frame_packing_arrangement_type <= 6 &&
  1070. h->sei.frame_packing.content_interpretation_type > 0 &&
  1071. h->sei.frame_packing.content_interpretation_type < 3) {
  1072. H264SEIFramePacking *fp = &h->sei.frame_packing;
  1073. AVStereo3D *stereo = av_stereo3d_create_side_data(cur->f);
  1074. if (stereo) {
  1075. switch (fp->frame_packing_arrangement_type) {
  1076. case 0:
  1077. stereo->type = AV_STEREO3D_CHECKERBOARD;
  1078. break;
  1079. case 1:
  1080. stereo->type = AV_STEREO3D_COLUMNS;
  1081. break;
  1082. case 2:
  1083. stereo->type = AV_STEREO3D_LINES;
  1084. break;
  1085. case 3:
  1086. if (fp->quincunx_sampling_flag)
  1087. stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
  1088. else
  1089. stereo->type = AV_STEREO3D_SIDEBYSIDE;
  1090. break;
  1091. case 4:
  1092. stereo->type = AV_STEREO3D_TOPBOTTOM;
  1093. break;
  1094. case 5:
  1095. stereo->type = AV_STEREO3D_FRAMESEQUENCE;
  1096. break;
  1097. case 6:
  1098. stereo->type = AV_STEREO3D_2D;
  1099. break;
  1100. }
  1101. if (fp->content_interpretation_type == 2)
  1102. stereo->flags = AV_STEREO3D_FLAG_INVERT;
  1103. }
  1104. }
  1105. if (h->sei.display_orientation.present &&
  1106. (h->sei.display_orientation.anticlockwise_rotation ||
  1107. h->sei.display_orientation.hflip ||
  1108. h->sei.display_orientation.vflip)) {
  1109. H264SEIDisplayOrientation *o = &h->sei.display_orientation;
  1110. double angle = o->anticlockwise_rotation * 360 / (double) (1 << 16);
  1111. AVFrameSideData *rotation = av_frame_new_side_data(cur->f,
  1112. AV_FRAME_DATA_DISPLAYMATRIX,
  1113. sizeof(int32_t) * 9);
  1114. if (rotation) {
  1115. av_display_rotation_set((int32_t *)rotation->data, angle);
  1116. av_display_matrix_flip((int32_t *)rotation->data,
  1117. o->hflip, o->vflip);
  1118. }
  1119. }
  1120. if (h->sei.afd.present) {
  1121. AVFrameSideData *sd = av_frame_new_side_data(cur->f, AV_FRAME_DATA_AFD,
  1122. sizeof(uint8_t));
  1123. if (sd) {
  1124. *sd->data = h->sei.afd.active_format_description;
  1125. h->sei.afd.present = 0;
  1126. }
  1127. }
  1128. if (h->sei.a53_caption.a53_caption) {
  1129. H264SEIA53Caption *a53 = &h->sei.a53_caption;
  1130. AVFrameSideData *sd = av_frame_new_side_data(cur->f,
  1131. AV_FRAME_DATA_A53_CC,
  1132. a53->a53_caption_size);
  1133. if (sd)
  1134. memcpy(sd->data, a53->a53_caption, a53->a53_caption_size);
  1135. av_freep(&a53->a53_caption);
  1136. a53->a53_caption_size = 0;
  1137. h->avctx->properties |= FF_CODEC_PROPERTY_CLOSED_CAPTIONS;
  1138. }
  1139. if (h->sei.alternative_transfer.present &&
  1140. av_color_transfer_name(h->sei.alternative_transfer.preferred_transfer_characteristics) &&
  1141. h->sei.alternative_transfer.preferred_transfer_characteristics != AVCOL_TRC_UNSPECIFIED) {
  1142. h->avctx->color_trc = cur->f->color_trc = h->sei.alternative_transfer.preferred_transfer_characteristics;
  1143. }
  1144. return 0;
  1145. }
  1146. static int h264_select_output_frame(H264Context *h)
  1147. {
  1148. const SPS *sps = h->ps.sps;
  1149. H264Picture *out = h->cur_pic_ptr;
  1150. H264Picture *cur = h->cur_pic_ptr;
  1151. int i, pics, out_of_order, out_idx;
  1152. cur->mmco_reset = h->mmco_reset;
  1153. h->mmco_reset = 0;
  1154. if (sps->bitstream_restriction_flag ||
  1155. h->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
  1156. h->avctx->has_b_frames = FFMAX(h->avctx->has_b_frames, sps->num_reorder_frames);
  1157. }
  1158. for (i = 0; 1; i++) {
  1159. if(i == MAX_DELAYED_PIC_COUNT || cur->poc < h->last_pocs[i]){
  1160. if(i)
  1161. h->last_pocs[i-1] = cur->poc;
  1162. break;
  1163. } else if(i) {
  1164. h->last_pocs[i-1]= h->last_pocs[i];
  1165. }
  1166. }
  1167. out_of_order = MAX_DELAYED_PIC_COUNT - i;
  1168. if( cur->f->pict_type == AV_PICTURE_TYPE_B
  1169. || (h->last_pocs[MAX_DELAYED_PIC_COUNT-2] > INT_MIN && h->last_pocs[MAX_DELAYED_PIC_COUNT-1] - (int64_t)h->last_pocs[MAX_DELAYED_PIC_COUNT-2] > 2))
  1170. out_of_order = FFMAX(out_of_order, 1);
  1171. if (out_of_order == MAX_DELAYED_PIC_COUNT) {
  1172. av_log(h->avctx, AV_LOG_VERBOSE, "Invalid POC %d<%d\n", cur->poc, h->last_pocs[0]);
  1173. for (i = 1; i < MAX_DELAYED_PIC_COUNT; i++)
  1174. h->last_pocs[i] = INT_MIN;
  1175. h->last_pocs[0] = cur->poc;
  1176. cur->mmco_reset = 1;
  1177. } else if(h->avctx->has_b_frames < out_of_order && !sps->bitstream_restriction_flag){
  1178. int loglevel = h->avctx->frame_number > 1 ? AV_LOG_WARNING : AV_LOG_VERBOSE;
  1179. av_log(h->avctx, loglevel, "Increasing reorder buffer to %d\n", out_of_order);
  1180. h->avctx->has_b_frames = out_of_order;
  1181. }
  1182. pics = 0;
  1183. while (h->delayed_pic[pics])
  1184. pics++;
  1185. av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
  1186. h->delayed_pic[pics++] = cur;
  1187. if (cur->reference == 0)
  1188. cur->reference = DELAYED_PIC_REF;
  1189. out = h->delayed_pic[0];
  1190. out_idx = 0;
  1191. for (i = 1; h->delayed_pic[i] &&
  1192. !h->delayed_pic[i]->f->key_frame &&
  1193. !h->delayed_pic[i]->mmco_reset;
  1194. i++)
  1195. if (h->delayed_pic[i]->poc < out->poc) {
  1196. out = h->delayed_pic[i];
  1197. out_idx = i;
  1198. }
  1199. if (h->avctx->has_b_frames == 0 &&
  1200. (h->delayed_pic[0]->f->key_frame || h->delayed_pic[0]->mmco_reset))
  1201. h->next_outputed_poc = INT_MIN;
  1202. out_of_order = out->poc < h->next_outputed_poc;
  1203. if (out_of_order || pics > h->avctx->has_b_frames) {
  1204. out->reference &= ~DELAYED_PIC_REF;
  1205. for (i = out_idx; h->delayed_pic[i]; i++)
  1206. h->delayed_pic[i] = h->delayed_pic[i + 1];
  1207. }
  1208. if (!out_of_order && pics > h->avctx->has_b_frames) {
  1209. h->next_output_pic = out;
  1210. if (out_idx == 0 && h->delayed_pic[0] && (h->delayed_pic[0]->f->key_frame || h->delayed_pic[0]->mmco_reset)) {
  1211. h->next_outputed_poc = INT_MIN;
  1212. } else
  1213. h->next_outputed_poc = out->poc;
  1214. if (out->recovered) {
  1215. // We have reached an recovery point and all frames after it in
  1216. // display order are "recovered".
  1217. h->frame_recovered |= FRAME_RECOVERED_SEI;
  1218. }
  1219. out->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_SEI);
  1220. if (!out->recovered) {
  1221. if (!(h->avctx->flags & AV_CODEC_FLAG_OUTPUT_CORRUPT) &&
  1222. !(h->avctx->flags2 & AV_CODEC_FLAG2_SHOW_ALL)) {
  1223. h->next_output_pic = NULL;
  1224. } else {
  1225. out->f->flags |= AV_FRAME_FLAG_CORRUPT;
  1226. }
  1227. }
  1228. } else {
  1229. av_log(h->avctx, AV_LOG_DEBUG, "no picture %s\n", out_of_order ? "ooo" : "");
  1230. }
  1231. return 0;
  1232. }
  1233. /* This function is called right after decoding the slice header for a first
  1234. * slice in a field (or a frame). It decides whether we are decoding a new frame
  1235. * or a second field in a pair and does the necessary setup.
  1236. */
  1237. static int h264_field_start(H264Context *h, const H264SliceContext *sl,
  1238. const H2645NAL *nal, int first_slice)
  1239. {
  1240. int i;
  1241. const SPS *sps;
  1242. int last_pic_structure, last_pic_droppable, ret;
  1243. ret = h264_init_ps(h, sl, first_slice);
  1244. if (ret < 0)
  1245. return ret;
  1246. sps = h->ps.sps;
  1247. last_pic_droppable = h->droppable;
  1248. last_pic_structure = h->picture_structure;
  1249. h->droppable = (nal->ref_idc == 0);
  1250. h->picture_structure = sl->picture_structure;
  1251. h->poc.frame_num = sl->frame_num;
  1252. h->poc.poc_lsb = sl->poc_lsb;
  1253. h->poc.delta_poc_bottom = sl->delta_poc_bottom;
  1254. h->poc.delta_poc[0] = sl->delta_poc[0];
  1255. h->poc.delta_poc[1] = sl->delta_poc[1];
  1256. /* Shorten frame num gaps so we don't have to allocate reference
  1257. * frames just to throw them away */
  1258. if (h->poc.frame_num != h->poc.prev_frame_num) {
  1259. int unwrap_prev_frame_num = h->poc.prev_frame_num;
  1260. int max_frame_num = 1 << sps->log2_max_frame_num;
  1261. if (unwrap_prev_frame_num > h->poc.frame_num)
  1262. unwrap_prev_frame_num -= max_frame_num;
  1263. if ((h->poc.frame_num - unwrap_prev_frame_num) > sps->ref_frame_count) {
  1264. unwrap_prev_frame_num = (h->poc.frame_num - sps->ref_frame_count) - 1;
  1265. if (unwrap_prev_frame_num < 0)
  1266. unwrap_prev_frame_num += max_frame_num;
  1267. h->poc.prev_frame_num = unwrap_prev_frame_num;
  1268. }
  1269. }
  1270. /* See if we have a decoded first field looking for a pair...
  1271. * Here, we're using that to see if we should mark previously
  1272. * decode frames as "finished".
  1273. * We have to do that before the "dummy" in-between frame allocation,
  1274. * since that can modify h->cur_pic_ptr. */
  1275. if (h->first_field) {
  1276. int last_field = last_pic_structure == PICT_BOTTOM_FIELD;
  1277. av_assert0(h->cur_pic_ptr);
  1278. av_assert0(h->cur_pic_ptr->f->buf[0]);
  1279. assert(h->cur_pic_ptr->reference != DELAYED_PIC_REF);
  1280. /* Mark old field/frame as completed */
  1281. if (h->cur_pic_ptr->tf.owner[last_field] == h->avctx) {
  1282. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, last_field);
  1283. }
  1284. /* figure out if we have a complementary field pair */
  1285. if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
  1286. /* Previous field is unmatched. Don't display it, but let it
  1287. * remain for reference if marked as such. */
  1288. if (last_pic_structure != PICT_FRAME) {
  1289. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
  1290. last_pic_structure == PICT_TOP_FIELD);
  1291. }
  1292. } else {
  1293. if (h->cur_pic_ptr->frame_num != h->poc.frame_num) {
  1294. /* This and previous field were reference, but had
  1295. * different frame_nums. Consider this field first in
  1296. * pair. Throw away previous field except for reference
  1297. * purposes. */
  1298. if (last_pic_structure != PICT_FRAME) {
  1299. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
  1300. last_pic_structure == PICT_TOP_FIELD);
  1301. }
  1302. } else {
  1303. /* Second field in complementary pair */
  1304. if (!((last_pic_structure == PICT_TOP_FIELD &&
  1305. h->picture_structure == PICT_BOTTOM_FIELD) ||
  1306. (last_pic_structure == PICT_BOTTOM_FIELD &&
  1307. h->picture_structure == PICT_TOP_FIELD))) {
  1308. av_log(h->avctx, AV_LOG_ERROR,
  1309. "Invalid field mode combination %d/%d\n",
  1310. last_pic_structure, h->picture_structure);
  1311. h->picture_structure = last_pic_structure;
  1312. h->droppable = last_pic_droppable;
  1313. return AVERROR_INVALIDDATA;
  1314. } else if (last_pic_droppable != h->droppable) {
  1315. avpriv_request_sample(h->avctx,
  1316. "Found reference and non-reference fields in the same frame, which");
  1317. h->picture_structure = last_pic_structure;
  1318. h->droppable = last_pic_droppable;
  1319. return AVERROR_PATCHWELCOME;
  1320. }
  1321. }
  1322. }
  1323. }
  1324. while (h->poc.frame_num != h->poc.prev_frame_num && !h->first_field &&
  1325. h->poc.frame_num != (h->poc.prev_frame_num + 1) % (1 << sps->log2_max_frame_num)) {
  1326. H264Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
  1327. av_log(h->avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
  1328. h->poc.frame_num, h->poc.prev_frame_num);
  1329. if (!sps->gaps_in_frame_num_allowed_flag)
  1330. for(i=0; i<FF_ARRAY_ELEMS(h->last_pocs); i++)
  1331. h->last_pocs[i] = INT_MIN;
  1332. ret = h264_frame_start(h);
  1333. if (ret < 0) {
  1334. h->first_field = 0;
  1335. return ret;
  1336. }
  1337. h->poc.prev_frame_num++;
  1338. h->poc.prev_frame_num %= 1 << sps->log2_max_frame_num;
  1339. h->cur_pic_ptr->frame_num = h->poc.prev_frame_num;
  1340. h->cur_pic_ptr->invalid_gap = !sps->gaps_in_frame_num_allowed_flag;
  1341. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
  1342. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
  1343. h->explicit_ref_marking = 0;
  1344. ret = ff_h264_execute_ref_pic_marking(h);
  1345. if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
  1346. return ret;
  1347. /* Error concealment: If a ref is missing, copy the previous ref
  1348. * in its place.
  1349. * FIXME: Avoiding a memcpy would be nice, but ref handling makes
  1350. * many assumptions about there being no actual duplicates.
  1351. * FIXME: This does not copy padding for out-of-frame motion
  1352. * vectors. Given we are concealing a lost frame, this probably
  1353. * is not noticeable by comparison, but it should be fixed. */
  1354. if (h->short_ref_count) {
  1355. if (prev &&
  1356. h->short_ref[0]->f->width == prev->f->width &&
  1357. h->short_ref[0]->f->height == prev->f->height &&
  1358. h->short_ref[0]->f->format == prev->f->format) {
  1359. ff_thread_await_progress(&prev->tf, INT_MAX, 0);
  1360. if (prev->field_picture)
  1361. ff_thread_await_progress(&prev->tf, INT_MAX, 1);
  1362. av_image_copy(h->short_ref[0]->f->data,
  1363. h->short_ref[0]->f->linesize,
  1364. (const uint8_t **)prev->f->data,
  1365. prev->f->linesize,
  1366. prev->f->format,
  1367. prev->f->width,
  1368. prev->f->height);
  1369. h->short_ref[0]->poc = prev->poc + 2;
  1370. }
  1371. h->short_ref[0]->frame_num = h->poc.prev_frame_num;
  1372. }
  1373. }
  1374. /* See if we have a decoded first field looking for a pair...
  1375. * We're using that to see whether to continue decoding in that
  1376. * frame, or to allocate a new one. */
  1377. if (h->first_field) {
  1378. av_assert0(h->cur_pic_ptr);
  1379. av_assert0(h->cur_pic_ptr->f->buf[0]);
  1380. assert(h->cur_pic_ptr->reference != DELAYED_PIC_REF);
  1381. /* figure out if we have a complementary field pair */
  1382. if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
  1383. /* Previous field is unmatched. Don't display it, but let it
  1384. * remain for reference if marked as such. */
  1385. h->missing_fields ++;
  1386. h->cur_pic_ptr = NULL;
  1387. h->first_field = FIELD_PICTURE(h);
  1388. } else {
  1389. h->missing_fields = 0;
  1390. if (h->cur_pic_ptr->frame_num != h->poc.frame_num) {
  1391. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
  1392. h->picture_structure==PICT_BOTTOM_FIELD);
  1393. /* This and the previous field had different frame_nums.
  1394. * Consider this field first in pair. Throw away previous
  1395. * one except for reference purposes. */
  1396. h->first_field = 1;
  1397. h->cur_pic_ptr = NULL;
  1398. } else if (h->cur_pic_ptr->reference & DELAYED_PIC_REF) {
  1399. /* This frame was already output, we cannot draw into it
  1400. * anymore.
  1401. */
  1402. h->first_field = 1;
  1403. h->cur_pic_ptr = NULL;
  1404. } else {
  1405. /* Second field in complementary pair */
  1406. h->first_field = 0;
  1407. }
  1408. }
  1409. } else {
  1410. /* Frame or first field in a potentially complementary pair */
  1411. h->first_field = FIELD_PICTURE(h);
  1412. }
  1413. if (!FIELD_PICTURE(h) || h->first_field) {
  1414. if (h264_frame_start(h) < 0) {
  1415. h->first_field = 0;
  1416. return AVERROR_INVALIDDATA;
  1417. }
  1418. } else {
  1419. int field = h->picture_structure == PICT_BOTTOM_FIELD;
  1420. release_unused_pictures(h, 0);
  1421. h->cur_pic_ptr->tf.owner[field] = h->avctx;
  1422. }
  1423. /* Some macroblocks can be accessed before they're available in case
  1424. * of lost slices, MBAFF or threading. */
  1425. if (FIELD_PICTURE(h)) {
  1426. for(i = (h->picture_structure == PICT_BOTTOM_FIELD); i<h->mb_height; i++)
  1427. memset(h->slice_table + i*h->mb_stride, -1, (h->mb_stride - (i+1==h->mb_height)) * sizeof(*h->slice_table));
  1428. } else {
  1429. memset(h->slice_table, -1,
  1430. (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
  1431. }
  1432. ff_h264_init_poc(h->cur_pic_ptr->field_poc, &h->cur_pic_ptr->poc,
  1433. h->ps.sps, &h->poc, h->picture_structure, nal->ref_idc);
  1434. memcpy(h->mmco, sl->mmco, sl->nb_mmco * sizeof(*h->mmco));
  1435. h->nb_mmco = sl->nb_mmco;
  1436. h->explicit_ref_marking = sl->explicit_ref_marking;
  1437. h->picture_idr = nal->type == H264_NAL_IDR_SLICE;
  1438. if (h->sei.recovery_point.recovery_frame_cnt >= 0) {
  1439. const int sei_recovery_frame_cnt = h->sei.recovery_point.recovery_frame_cnt;
  1440. if (h->poc.frame_num != sei_recovery_frame_cnt || sl->slice_type_nos != AV_PICTURE_TYPE_I)
  1441. h->valid_recovery_point = 1;
  1442. if ( h->recovery_frame < 0
  1443. || av_mod_uintp2(h->recovery_frame - h->poc.frame_num, h->ps.sps->log2_max_frame_num) > sei_recovery_frame_cnt) {
  1444. h->recovery_frame = av_mod_uintp2(h->poc.frame_num + sei_recovery_frame_cnt, h->ps.sps->log2_max_frame_num);
  1445. if (!h->valid_recovery_point)
  1446. h->recovery_frame = h->poc.frame_num;
  1447. }
  1448. }
  1449. h->cur_pic_ptr->f->key_frame |= (nal->type == H264_NAL_IDR_SLICE);
  1450. if (nal->type == H264_NAL_IDR_SLICE ||
  1451. (h->recovery_frame == h->poc.frame_num && nal->ref_idc)) {
  1452. h->recovery_frame = -1;
  1453. h->cur_pic_ptr->recovered = 1;
  1454. }
  1455. // If we have an IDR, all frames after it in decoded order are
  1456. // "recovered".
  1457. if (nal->type == H264_NAL_IDR_SLICE)
  1458. h->frame_recovered |= FRAME_RECOVERED_IDR;
  1459. #if 1
  1460. h->cur_pic_ptr->recovered |= h->frame_recovered;
  1461. #else
  1462. h->cur_pic_ptr->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_IDR);
  1463. #endif
  1464. /* Set the frame properties/side data. Only done for the second field in
  1465. * field coded frames, since some SEI information is present for each field
  1466. * and is merged by the SEI parsing code. */
  1467. if (!FIELD_PICTURE(h) || !h->first_field || h->missing_fields > 1) {
  1468. ret = h264_export_frame_props(h);
  1469. if (ret < 0)
  1470. return ret;
  1471. ret = h264_select_output_frame(h);
  1472. if (ret < 0)
  1473. return ret;
  1474. }
  1475. return 0;
  1476. }
  1477. static int h264_slice_header_parse(const H264Context *h, H264SliceContext *sl,
  1478. const H2645NAL *nal)
  1479. {
  1480. const SPS *sps;
  1481. const PPS *pps;
  1482. int ret;
  1483. unsigned int slice_type, tmp, i;
  1484. int field_pic_flag, bottom_field_flag;
  1485. int first_slice = sl == h->slice_ctx && !h->current_slice;
  1486. int picture_structure;
  1487. if (first_slice)
  1488. av_assert0(!h->setup_finished);
  1489. sl->first_mb_addr = get_ue_golomb_long(&sl->gb);
  1490. slice_type = get_ue_golomb_31(&sl->gb);
  1491. if (slice_type > 9) {
  1492. av_log(h->avctx, AV_LOG_ERROR,
  1493. "slice type %d too large at %d\n",
  1494. slice_type, sl->first_mb_addr);
  1495. return AVERROR_INVALIDDATA;
  1496. }
  1497. if (slice_type > 4) {
  1498. slice_type -= 5;
  1499. sl->slice_type_fixed = 1;
  1500. } else
  1501. sl->slice_type_fixed = 0;
  1502. slice_type = ff_h264_golomb_to_pict_type[slice_type];
  1503. sl->slice_type = slice_type;
  1504. sl->slice_type_nos = slice_type & 3;
  1505. if (nal->type == H264_NAL_IDR_SLICE &&
  1506. sl->slice_type_nos != AV_PICTURE_TYPE_I) {
  1507. av_log(h->avctx, AV_LOG_ERROR, "A non-intra slice in an IDR NAL unit.\n");
  1508. return AVERROR_INVALIDDATA;
  1509. }
  1510. sl->pps_id = get_ue_golomb(&sl->gb);
  1511. if (sl->pps_id >= MAX_PPS_COUNT) {
  1512. av_log(h->avctx, AV_LOG_ERROR, "pps_id %u out of range\n", sl->pps_id);
  1513. return AVERROR_INVALIDDATA;
  1514. }
  1515. if (!h->ps.pps_list[sl->pps_id]) {
  1516. av_log(h->avctx, AV_LOG_ERROR,
  1517. "non-existing PPS %u referenced\n",
  1518. sl->pps_id);
  1519. return AVERROR_INVALIDDATA;
  1520. }
  1521. pps = (const PPS*)h->ps.pps_list[sl->pps_id]->data;
  1522. if (!h->ps.sps_list[pps->sps_id]) {
  1523. av_log(h->avctx, AV_LOG_ERROR,
  1524. "non-existing SPS %u referenced\n", pps->sps_id);
  1525. return AVERROR_INVALIDDATA;
  1526. }
  1527. sps = (const SPS*)h->ps.sps_list[pps->sps_id]->data;
  1528. sl->frame_num = get_bits(&sl->gb, sps->log2_max_frame_num);
  1529. if (!first_slice) {
  1530. if (h->poc.frame_num != sl->frame_num) {
  1531. av_log(h->avctx, AV_LOG_ERROR, "Frame num change from %d to %d\n",
  1532. h->poc.frame_num, sl->frame_num);
  1533. return AVERROR_INVALIDDATA;
  1534. }
  1535. }
  1536. sl->mb_mbaff = 0;
  1537. if (sps->frame_mbs_only_flag) {
  1538. picture_structure = PICT_FRAME;
  1539. } else {
  1540. if (!sps->direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B) {
  1541. av_log(h->avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
  1542. return -1;
  1543. }
  1544. field_pic_flag = get_bits1(&sl->gb);
  1545. if (field_pic_flag) {
  1546. bottom_field_flag = get_bits1(&sl->gb);
  1547. picture_structure = PICT_TOP_FIELD + bottom_field_flag;
  1548. } else {
  1549. picture_structure = PICT_FRAME;
  1550. }
  1551. }
  1552. sl->picture_structure = picture_structure;
  1553. sl->mb_field_decoding_flag = picture_structure != PICT_FRAME;
  1554. if (picture_structure == PICT_FRAME) {
  1555. sl->curr_pic_num = sl->frame_num;
  1556. sl->max_pic_num = 1 << sps->log2_max_frame_num;
  1557. } else {
  1558. sl->curr_pic_num = 2 * sl->frame_num + 1;
  1559. sl->max_pic_num = 1 << (sps->log2_max_frame_num + 1);
  1560. }
  1561. if (nal->type == H264_NAL_IDR_SLICE)
  1562. get_ue_golomb_long(&sl->gb); /* idr_pic_id */
  1563. if (sps->poc_type == 0) {
  1564. sl->poc_lsb = get_bits(&sl->gb, sps->log2_max_poc_lsb);
  1565. if (pps->pic_order_present == 1 && picture_structure == PICT_FRAME)
  1566. sl->delta_poc_bottom = get_se_golomb(&sl->gb);
  1567. }
  1568. if (sps->poc_type == 1 && !sps->delta_pic_order_always_zero_flag) {
  1569. sl->delta_poc[0] = get_se_golomb(&sl->gb);
  1570. if (pps->pic_order_present == 1 && picture_structure == PICT_FRAME)
  1571. sl->delta_poc[1] = get_se_golomb(&sl->gb);
  1572. }
  1573. sl->redundant_pic_count = 0;
  1574. if (pps->redundant_pic_cnt_present)
  1575. sl->redundant_pic_count = get_ue_golomb(&sl->gb);
  1576. if (sl->slice_type_nos == AV_PICTURE_TYPE_B)
  1577. sl->direct_spatial_mv_pred = get_bits1(&sl->gb);
  1578. ret = ff_h264_parse_ref_count(&sl->list_count, sl->ref_count,
  1579. &sl->gb, pps, sl->slice_type_nos,
  1580. picture_structure, h->avctx);
  1581. if (ret < 0)
  1582. return ret;
  1583. if (sl->slice_type_nos != AV_PICTURE_TYPE_I) {
  1584. ret = ff_h264_decode_ref_pic_list_reordering(sl, h->avctx);
  1585. if (ret < 0) {
  1586. sl->ref_count[1] = sl->ref_count[0] = 0;
  1587. return ret;
  1588. }
  1589. }
  1590. sl->pwt.use_weight = 0;
  1591. for (i = 0; i < 2; i++) {
  1592. sl->pwt.luma_weight_flag[i] = 0;
  1593. sl->pwt.chroma_weight_flag[i] = 0;
  1594. }
  1595. if ((pps->weighted_pred && sl->slice_type_nos == AV_PICTURE_TYPE_P) ||
  1596. (pps->weighted_bipred_idc == 1 &&
  1597. sl->slice_type_nos == AV_PICTURE_TYPE_B)) {
  1598. ret = ff_h264_pred_weight_table(&sl->gb, sps, sl->ref_count,
  1599. sl->slice_type_nos, &sl->pwt,
  1600. picture_structure, h->avctx);
  1601. if (ret < 0)
  1602. return ret;
  1603. }
  1604. sl->explicit_ref_marking = 0;
  1605. if (nal->ref_idc) {
  1606. ret = ff_h264_decode_ref_pic_marking(sl, &sl->gb, nal, h->avctx);
  1607. if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
  1608. return AVERROR_INVALIDDATA;
  1609. }
  1610. if (sl->slice_type_nos != AV_PICTURE_TYPE_I && pps->cabac) {
  1611. tmp = get_ue_golomb_31(&sl->gb);
  1612. if (tmp > 2) {
  1613. av_log(h->avctx, AV_LOG_ERROR, "cabac_init_idc %u overflow\n", tmp);
  1614. return AVERROR_INVALIDDATA;
  1615. }
  1616. sl->cabac_init_idc = tmp;
  1617. }
  1618. sl->last_qscale_diff = 0;
  1619. tmp = pps->init_qp + (unsigned)get_se_golomb(&sl->gb);
  1620. if (tmp > 51 + 6 * (sps->bit_depth_luma - 8)) {
  1621. av_log(h->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
  1622. return AVERROR_INVALIDDATA;
  1623. }
  1624. sl->qscale = tmp;
  1625. sl->chroma_qp[0] = get_chroma_qp(pps, 0, sl->qscale);
  1626. sl->chroma_qp[1] = get_chroma_qp(pps, 1, sl->qscale);
  1627. // FIXME qscale / qp ... stuff
  1628. if (sl->slice_type == AV_PICTURE_TYPE_SP)
  1629. get_bits1(&sl->gb); /* sp_for_switch_flag */
  1630. if (sl->slice_type == AV_PICTURE_TYPE_SP ||
  1631. sl->slice_type == AV_PICTURE_TYPE_SI)
  1632. get_se_golomb(&sl->gb); /* slice_qs_delta */
  1633. sl->deblocking_filter = 1;
  1634. sl->slice_alpha_c0_offset = 0;
  1635. sl->slice_beta_offset = 0;
  1636. if (pps->deblocking_filter_parameters_present) {
  1637. tmp = get_ue_golomb_31(&sl->gb);
  1638. if (tmp > 2) {
  1639. av_log(h->avctx, AV_LOG_ERROR,
  1640. "deblocking_filter_idc %u out of range\n", tmp);
  1641. return AVERROR_INVALIDDATA;
  1642. }
  1643. sl->deblocking_filter = tmp;
  1644. if (sl->deblocking_filter < 2)
  1645. sl->deblocking_filter ^= 1; // 1<->0
  1646. if (sl->deblocking_filter) {
  1647. int slice_alpha_c0_offset_div2 = get_se_golomb(&sl->gb);
  1648. int slice_beta_offset_div2 = get_se_golomb(&sl->gb);
  1649. if (slice_alpha_c0_offset_div2 > 6 ||
  1650. slice_alpha_c0_offset_div2 < -6 ||
  1651. slice_beta_offset_div2 > 6 ||
  1652. slice_beta_offset_div2 < -6) {
  1653. av_log(h->avctx, AV_LOG_ERROR,
  1654. "deblocking filter parameters %d %d out of range\n",
  1655. slice_alpha_c0_offset_div2, slice_beta_offset_div2);
  1656. return AVERROR_INVALIDDATA;
  1657. }
  1658. sl->slice_alpha_c0_offset = slice_alpha_c0_offset_div2 * 2;
  1659. sl->slice_beta_offset = slice_beta_offset_div2 * 2;
  1660. }
  1661. }
  1662. return 0;
  1663. }
  1664. /* do all the per-slice initialization needed before we can start decoding the
  1665. * actual MBs */
  1666. static int h264_slice_init(H264Context *h, H264SliceContext *sl,
  1667. const H2645NAL *nal)
  1668. {
  1669. int i, j, ret = 0;
  1670. if (h->picture_idr && nal->type != H264_NAL_IDR_SLICE) {
  1671. av_log(h->avctx, AV_LOG_ERROR, "Invalid mix of IDR and non-IDR slices\n");
  1672. return AVERROR_INVALIDDATA;
  1673. }
  1674. av_assert1(h->mb_num == h->mb_width * h->mb_height);
  1675. if (sl->first_mb_addr << FIELD_OR_MBAFF_PICTURE(h) >= h->mb_num ||
  1676. sl->first_mb_addr >= h->mb_num) {
  1677. av_log(h->avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
  1678. return AVERROR_INVALIDDATA;
  1679. }
  1680. sl->resync_mb_x = sl->mb_x = sl->first_mb_addr % h->mb_width;
  1681. sl->resync_mb_y = sl->mb_y = (sl->first_mb_addr / h->mb_width) <<
  1682. FIELD_OR_MBAFF_PICTURE(h);
  1683. if (h->picture_structure == PICT_BOTTOM_FIELD)
  1684. sl->resync_mb_y = sl->mb_y = sl->mb_y + 1;
  1685. av_assert1(sl->mb_y < h->mb_height);
  1686. ret = ff_h264_build_ref_list(h, sl);
  1687. if (ret < 0)
  1688. return ret;
  1689. if (h->ps.pps->weighted_bipred_idc == 2 &&
  1690. sl->slice_type_nos == AV_PICTURE_TYPE_B) {
  1691. implicit_weight_table(h, sl, -1);
  1692. if (FRAME_MBAFF(h)) {
  1693. implicit_weight_table(h, sl, 0);
  1694. implicit_weight_table(h, sl, 1);
  1695. }
  1696. }
  1697. if (sl->slice_type_nos == AV_PICTURE_TYPE_B && !sl->direct_spatial_mv_pred)
  1698. ff_h264_direct_dist_scale_factor(h, sl);
  1699. if (!h->setup_finished)
  1700. ff_h264_direct_ref_list_init(h, sl);
  1701. if (h->avctx->skip_loop_filter >= AVDISCARD_ALL ||
  1702. (h->avctx->skip_loop_filter >= AVDISCARD_NONKEY &&
  1703. h->nal_unit_type != H264_NAL_IDR_SLICE) ||
  1704. (h->avctx->skip_loop_filter >= AVDISCARD_NONINTRA &&
  1705. sl->slice_type_nos != AV_PICTURE_TYPE_I) ||
  1706. (h->avctx->skip_loop_filter >= AVDISCARD_BIDIR &&
  1707. sl->slice_type_nos == AV_PICTURE_TYPE_B) ||
  1708. (h->avctx->skip_loop_filter >= AVDISCARD_NONREF &&
  1709. nal->ref_idc == 0))
  1710. sl->deblocking_filter = 0;
  1711. if (sl->deblocking_filter == 1 && h->nb_slice_ctx > 1) {
  1712. if (h->avctx->flags2 & AV_CODEC_FLAG2_FAST) {
  1713. /* Cheat slightly for speed:
  1714. * Do not bother to deblock across slices. */
  1715. sl->deblocking_filter = 2;
  1716. } else {
  1717. h->postpone_filter = 1;
  1718. }
  1719. }
  1720. sl->qp_thresh = 15 -
  1721. FFMIN(sl->slice_alpha_c0_offset, sl->slice_beta_offset) -
  1722. FFMAX3(0,
  1723. h->ps.pps->chroma_qp_index_offset[0],
  1724. h->ps.pps->chroma_qp_index_offset[1]) +
  1725. 6 * (h->ps.sps->bit_depth_luma - 8);
  1726. sl->slice_num = ++h->current_slice;
  1727. if (sl->slice_num)
  1728. h->slice_row[(sl->slice_num-1)&(MAX_SLICES-1)]= sl->resync_mb_y;
  1729. if ( h->slice_row[sl->slice_num&(MAX_SLICES-1)] + 3 >= sl->resync_mb_y
  1730. && h->slice_row[sl->slice_num&(MAX_SLICES-1)] <= sl->resync_mb_y
  1731. && sl->slice_num >= MAX_SLICES) {
  1732. //in case of ASO this check needs to be updated depending on how we decide to assign slice numbers in this case
  1733. av_log(h->avctx, AV_LOG_WARNING, "Possibly too many slices (%d >= %d), increase MAX_SLICES and recompile if there are artifacts\n", sl->slice_num, MAX_SLICES);
  1734. }
  1735. for (j = 0; j < 2; j++) {
  1736. int id_list[16];
  1737. int *ref2frm = h->ref2frm[sl->slice_num & (MAX_SLICES - 1)][j];
  1738. for (i = 0; i < 16; i++) {
  1739. id_list[i] = 60;
  1740. if (j < sl->list_count && i < sl->ref_count[j] &&
  1741. sl->ref_list[j][i].parent->f->buf[0]) {
  1742. int k;
  1743. AVBuffer *buf = sl->ref_list[j][i].parent->f->buf[0]->buffer;
  1744. for (k = 0; k < h->short_ref_count; k++)
  1745. if (h->short_ref[k]->f->buf[0]->buffer == buf) {
  1746. id_list[i] = k;
  1747. break;
  1748. }
  1749. for (k = 0; k < h->long_ref_count; k++)
  1750. if (h->long_ref[k] && h->long_ref[k]->f->buf[0]->buffer == buf) {
  1751. id_list[i] = h->short_ref_count + k;
  1752. break;
  1753. }
  1754. }
  1755. }
  1756. ref2frm[0] =
  1757. ref2frm[1] = -1;
  1758. for (i = 0; i < 16; i++)
  1759. ref2frm[i + 2] = 4 * id_list[i] + (sl->ref_list[j][i].reference & 3);
  1760. ref2frm[18 + 0] =
  1761. ref2frm[18 + 1] = -1;
  1762. for (i = 16; i < 48; i++)
  1763. ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
  1764. (sl->ref_list[j][i].reference & 3);
  1765. }
  1766. if (h->avctx->debug & FF_DEBUG_PICT_INFO) {
  1767. av_log(h->avctx, AV_LOG_DEBUG,
  1768. "slice:%d %s mb:%d %c%s%s frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n",
  1769. sl->slice_num,
  1770. (h->picture_structure == PICT_FRAME ? "F" : h->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
  1771. sl->mb_y * h->mb_width + sl->mb_x,
  1772. av_get_picture_type_char(sl->slice_type),
  1773. sl->slice_type_fixed ? " fix" : "",
  1774. nal->type == H264_NAL_IDR_SLICE ? " IDR" : "",
  1775. h->poc.frame_num,
  1776. h->cur_pic_ptr->field_poc[0],
  1777. h->cur_pic_ptr->field_poc[1],
  1778. sl->ref_count[0], sl->ref_count[1],
  1779. sl->qscale,
  1780. sl->deblocking_filter,
  1781. sl->slice_alpha_c0_offset, sl->slice_beta_offset,
  1782. sl->pwt.use_weight,
  1783. sl->pwt.use_weight == 1 && sl->pwt.use_weight_chroma ? "c" : "",
  1784. sl->slice_type == AV_PICTURE_TYPE_B ? (sl->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
  1785. }
  1786. return 0;
  1787. }
  1788. int ff_h264_queue_decode_slice(H264Context *h, const H2645NAL *nal)
  1789. {
  1790. H264SliceContext *sl = h->slice_ctx + h->nb_slice_ctx_queued;
  1791. int first_slice = sl == h->slice_ctx && !h->current_slice;
  1792. int ret;
  1793. sl->gb = nal->gb;
  1794. ret = h264_slice_header_parse(h, sl, nal);
  1795. if (ret < 0)
  1796. return ret;
  1797. // discard redundant pictures
  1798. if (sl->redundant_pic_count > 0) {
  1799. sl->ref_count[0] = sl->ref_count[1] = 0;
  1800. return 0;
  1801. }
  1802. if (sl->first_mb_addr == 0 || !h->current_slice) {
  1803. if (h->setup_finished) {
  1804. av_log(h->avctx, AV_LOG_ERROR, "Too many fields\n");
  1805. return AVERROR_INVALIDDATA;
  1806. }
  1807. }
  1808. if (sl->first_mb_addr == 0) { // FIXME better field boundary detection
  1809. if (h->current_slice) {
  1810. // this slice starts a new field
  1811. // first decode any pending queued slices
  1812. if (h->nb_slice_ctx_queued) {
  1813. H264SliceContext tmp_ctx;
  1814. ret = ff_h264_execute_decode_slices(h);
  1815. if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
  1816. return ret;
  1817. memcpy(&tmp_ctx, h->slice_ctx, sizeof(tmp_ctx));
  1818. memcpy(h->slice_ctx, sl, sizeof(tmp_ctx));
  1819. memcpy(sl, &tmp_ctx, sizeof(tmp_ctx));
  1820. sl = h->slice_ctx;
  1821. }
  1822. if (h->cur_pic_ptr && FIELD_PICTURE(h) && h->first_field) {
  1823. ret = ff_h264_field_end(h, h->slice_ctx, 1);
  1824. if (ret < 0)
  1825. return ret;
  1826. } else if (h->cur_pic_ptr && !FIELD_PICTURE(h) && !h->first_field && h->nal_unit_type == H264_NAL_IDR_SLICE) {
  1827. av_log(h, AV_LOG_WARNING, "Broken frame packetizing\n");
  1828. ret = ff_h264_field_end(h, h->slice_ctx, 1);
  1829. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
  1830. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
  1831. h->cur_pic_ptr = NULL;
  1832. if (ret < 0)
  1833. return ret;
  1834. } else
  1835. return AVERROR_INVALIDDATA;
  1836. }
  1837. if (!h->first_field) {
  1838. if (h->cur_pic_ptr && !h->droppable) {
  1839. ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
  1840. h->picture_structure == PICT_BOTTOM_FIELD);
  1841. }
  1842. h->cur_pic_ptr = NULL;
  1843. }
  1844. }
  1845. if (!h->current_slice)
  1846. av_assert0(sl == h->slice_ctx);
  1847. if (h->current_slice == 0 && !h->first_field) {
  1848. if (
  1849. (h->avctx->skip_frame >= AVDISCARD_NONREF && !h->nal_ref_idc) ||
  1850. (h->avctx->skip_frame >= AVDISCARD_BIDIR && sl->slice_type_nos == AV_PICTURE_TYPE_B) ||
  1851. (h->avctx->skip_frame >= AVDISCARD_NONINTRA && sl->slice_type_nos != AV_PICTURE_TYPE_I) ||
  1852. (h->avctx->skip_frame >= AVDISCARD_NONKEY && h->nal_unit_type != H264_NAL_IDR_SLICE && h->sei.recovery_point.recovery_frame_cnt < 0) ||
  1853. h->avctx->skip_frame >= AVDISCARD_ALL) {
  1854. return 0;
  1855. }
  1856. }
  1857. if (!first_slice) {
  1858. const PPS *pps = (const PPS*)h->ps.pps_list[sl->pps_id]->data;
  1859. if (h->ps.pps->sps_id != pps->sps_id ||
  1860. h->ps.pps->transform_8x8_mode != pps->transform_8x8_mode /*||
  1861. (h->setup_finished && h->ps.pps != pps)*/) {
  1862. av_log(h->avctx, AV_LOG_ERROR, "PPS changed between slices\n");
  1863. return AVERROR_INVALIDDATA;
  1864. }
  1865. if (h->ps.sps != (const SPS*)h->ps.sps_list[h->ps.pps->sps_id]->data) {
  1866. av_log(h->avctx, AV_LOG_ERROR,
  1867. "SPS changed in the middle of the frame\n");
  1868. return AVERROR_INVALIDDATA;
  1869. }
  1870. }
  1871. if (h->current_slice == 0) {
  1872. ret = h264_field_start(h, sl, nal, first_slice);
  1873. if (ret < 0)
  1874. return ret;
  1875. } else {
  1876. if (h->picture_structure != sl->picture_structure ||
  1877. h->droppable != (nal->ref_idc == 0)) {
  1878. av_log(h->avctx, AV_LOG_ERROR,
  1879. "Changing field mode (%d -> %d) between slices is not allowed\n",
  1880. h->picture_structure, sl->picture_structure);
  1881. return AVERROR_INVALIDDATA;
  1882. } else if (!h->cur_pic_ptr) {
  1883. av_log(h->avctx, AV_LOG_ERROR,
  1884. "unset cur_pic_ptr on slice %d\n",
  1885. h->current_slice + 1);
  1886. return AVERROR_INVALIDDATA;
  1887. }
  1888. }
  1889. ret = h264_slice_init(h, sl, nal);
  1890. if (ret < 0)
  1891. return ret;
  1892. h->nb_slice_ctx_queued++;
  1893. return 0;
  1894. }
  1895. int ff_h264_get_slice_type(const H264SliceContext *sl)
  1896. {
  1897. switch (sl->slice_type) {
  1898. case AV_PICTURE_TYPE_P:
  1899. return 0;
  1900. case AV_PICTURE_TYPE_B:
  1901. return 1;
  1902. case AV_PICTURE_TYPE_I:
  1903. return 2;
  1904. case AV_PICTURE_TYPE_SP:
  1905. return 3;
  1906. case AV_PICTURE_TYPE_SI:
  1907. return 4;
  1908. default:
  1909. return AVERROR_INVALIDDATA;
  1910. }
  1911. }
  1912. static av_always_inline void fill_filter_caches_inter(const H264Context *h,
  1913. H264SliceContext *sl,
  1914. int mb_type, int top_xy,
  1915. int left_xy[LEFT_MBS],
  1916. int top_type,
  1917. int left_type[LEFT_MBS],
  1918. int mb_xy, int list)
  1919. {
  1920. int b_stride = h->b_stride;
  1921. int16_t(*mv_dst)[2] = &sl->mv_cache[list][scan8[0]];
  1922. int8_t *ref_cache = &sl->ref_cache[list][scan8[0]];
  1923. if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
  1924. if (USES_LIST(top_type, list)) {
  1925. const int b_xy = h->mb2b_xy[top_xy] + 3 * b_stride;
  1926. const int b8_xy = 4 * top_xy + 2;
  1927. const int *ref2frm = &h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][list][(MB_MBAFF(sl) ? 20 : 2)];
  1928. AV_COPY128(mv_dst - 1 * 8, h->cur_pic.motion_val[list][b_xy + 0]);
  1929. ref_cache[0 - 1 * 8] =
  1930. ref_cache[1 - 1 * 8] = ref2frm[h->cur_pic.ref_index[list][b8_xy + 0]];
  1931. ref_cache[2 - 1 * 8] =
  1932. ref_cache[3 - 1 * 8] = ref2frm[h->cur_pic.ref_index[list][b8_xy + 1]];
  1933. } else {
  1934. AV_ZERO128(mv_dst - 1 * 8);
  1935. AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
  1936. }
  1937. if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
  1938. if (USES_LIST(left_type[LTOP], list)) {
  1939. const int b_xy = h->mb2b_xy[left_xy[LTOP]] + 3;
  1940. const int b8_xy = 4 * left_xy[LTOP] + 1;
  1941. const int *ref2frm = &h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][list][(MB_MBAFF(sl) ? 20 : 2)];
  1942. AV_COPY32(mv_dst - 1 + 0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]);
  1943. AV_COPY32(mv_dst - 1 + 8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]);
  1944. AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]);
  1945. AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * 3]);
  1946. ref_cache[-1 + 0] =
  1947. ref_cache[-1 + 8] = ref2frm[h->cur_pic.ref_index[list][b8_xy + 2 * 0]];
  1948. ref_cache[-1 + 16] =
  1949. ref_cache[-1 + 24] = ref2frm[h->cur_pic.ref_index[list][b8_xy + 2 * 1]];
  1950. } else {
  1951. AV_ZERO32(mv_dst - 1 + 0);
  1952. AV_ZERO32(mv_dst - 1 + 8);
  1953. AV_ZERO32(mv_dst - 1 + 16);
  1954. AV_ZERO32(mv_dst - 1 + 24);
  1955. ref_cache[-1 + 0] =
  1956. ref_cache[-1 + 8] =
  1957. ref_cache[-1 + 16] =
  1958. ref_cache[-1 + 24] = LIST_NOT_USED;
  1959. }
  1960. }
  1961. }
  1962. if (!USES_LIST(mb_type, list)) {
  1963. fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
  1964. AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
  1965. AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
  1966. AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
  1967. AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
  1968. return;
  1969. }
  1970. {
  1971. int8_t *ref = &h->cur_pic.ref_index[list][4 * mb_xy];
  1972. const int *ref2frm = &h->ref2frm[sl->slice_num & (MAX_SLICES - 1)][list][(MB_MBAFF(sl) ? 20 : 2)];
  1973. uint32_t ref01 = (pack16to32(ref2frm[ref[0]], ref2frm[ref[1]]) & 0x00FF00FF) * 0x0101;
  1974. uint32_t ref23 = (pack16to32(ref2frm[ref[2]], ref2frm[ref[3]]) & 0x00FF00FF) * 0x0101;
  1975. AV_WN32A(&ref_cache[0 * 8], ref01);
  1976. AV_WN32A(&ref_cache[1 * 8], ref01);
  1977. AV_WN32A(&ref_cache[2 * 8], ref23);
  1978. AV_WN32A(&ref_cache[3 * 8], ref23);
  1979. }
  1980. {
  1981. int16_t(*mv_src)[2] = &h->cur_pic.motion_val[list][4 * sl->mb_x + 4 * sl->mb_y * b_stride];
  1982. AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
  1983. AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
  1984. AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
  1985. AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
  1986. }
  1987. }
  1988. /**
  1989. * @return non zero if the loop filter can be skipped
  1990. */
  1991. static int fill_filter_caches(const H264Context *h, H264SliceContext *sl, int mb_type)
  1992. {
  1993. const int mb_xy = sl->mb_xy;
  1994. int top_xy, left_xy[LEFT_MBS];
  1995. int top_type, left_type[LEFT_MBS];
  1996. uint8_t *nnz;
  1997. uint8_t *nnz_cache;
  1998. top_xy = mb_xy - (h->mb_stride << MB_FIELD(sl));
  1999. left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
  2000. if (FRAME_MBAFF(h)) {
  2001. const int left_mb_field_flag = IS_INTERLACED(h->cur_pic.mb_type[mb_xy - 1]);
  2002. const int curr_mb_field_flag = IS_INTERLACED(mb_type);
  2003. if (sl->mb_y & 1) {
  2004. if (left_mb_field_flag != curr_mb_field_flag)
  2005. left_xy[LTOP] -= h->mb_stride;
  2006. } else {
  2007. if (curr_mb_field_flag)
  2008. top_xy += h->mb_stride &
  2009. (((h->cur_pic.mb_type[top_xy] >> 7) & 1) - 1);
  2010. if (left_mb_field_flag != curr_mb_field_flag)
  2011. left_xy[LBOT] += h->mb_stride;
  2012. }
  2013. }
  2014. sl->top_mb_xy = top_xy;
  2015. sl->left_mb_xy[LTOP] = left_xy[LTOP];
  2016. sl->left_mb_xy[LBOT] = left_xy[LBOT];
  2017. {
  2018. /* For sufficiently low qp, filtering wouldn't do anything.
  2019. * This is a conservative estimate: could also check beta_offset
  2020. * and more accurate chroma_qp. */
  2021. int qp_thresh = sl->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
  2022. int qp = h->cur_pic.qscale_table[mb_xy];
  2023. if (qp <= qp_thresh &&
  2024. (left_xy[LTOP] < 0 ||
  2025. ((qp + h->cur_pic.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
  2026. (top_xy < 0 ||
  2027. ((qp + h->cur_pic.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
  2028. if (!FRAME_MBAFF(h))
  2029. return 1;
  2030. if ((left_xy[LTOP] < 0 ||
  2031. ((qp + h->cur_pic.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
  2032. (top_xy < h->mb_stride ||
  2033. ((qp + h->cur_pic.qscale_table[top_xy - h->mb_stride] + 1) >> 1) <= qp_thresh))
  2034. return 1;
  2035. }
  2036. }
  2037. top_type = h->cur_pic.mb_type[top_xy];
  2038. left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]];
  2039. left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]];
  2040. if (sl->deblocking_filter == 2) {
  2041. if (h->slice_table[top_xy] != sl->slice_num)
  2042. top_type = 0;
  2043. if (h->slice_table[left_xy[LBOT]] != sl->slice_num)
  2044. left_type[LTOP] = left_type[LBOT] = 0;
  2045. } else {
  2046. if (h->slice_table[top_xy] == 0xFFFF)
  2047. top_type = 0;
  2048. if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
  2049. left_type[LTOP] = left_type[LBOT] = 0;
  2050. }
  2051. sl->top_type = top_type;
  2052. sl->left_type[LTOP] = left_type[LTOP];
  2053. sl->left_type[LBOT] = left_type[LBOT];
  2054. if (IS_INTRA(mb_type))
  2055. return 0;
  2056. fill_filter_caches_inter(h, sl, mb_type, top_xy, left_xy,
  2057. top_type, left_type, mb_xy, 0);
  2058. if (sl->list_count == 2)
  2059. fill_filter_caches_inter(h, sl, mb_type, top_xy, left_xy,
  2060. top_type, left_type, mb_xy, 1);
  2061. nnz = h->non_zero_count[mb_xy];
  2062. nnz_cache = sl->non_zero_count_cache;
  2063. AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
  2064. AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
  2065. AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
  2066. AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
  2067. sl->cbp = h->cbp_table[mb_xy];
  2068. if (top_type) {
  2069. nnz = h->non_zero_count[top_xy];
  2070. AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
  2071. }
  2072. if (left_type[LTOP]) {
  2073. nnz = h->non_zero_count[left_xy[LTOP]];
  2074. nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
  2075. nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
  2076. nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
  2077. nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
  2078. }
  2079. /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
  2080. * from what the loop filter needs */
  2081. if (!CABAC(h) && h->ps.pps->transform_8x8_mode) {
  2082. if (IS_8x8DCT(top_type)) {
  2083. nnz_cache[4 + 8 * 0] =
  2084. nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
  2085. nnz_cache[6 + 8 * 0] =
  2086. nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
  2087. }
  2088. if (IS_8x8DCT(left_type[LTOP])) {
  2089. nnz_cache[3 + 8 * 1] =
  2090. nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
  2091. }
  2092. if (IS_8x8DCT(left_type[LBOT])) {
  2093. nnz_cache[3 + 8 * 3] =
  2094. nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
  2095. }
  2096. if (IS_8x8DCT(mb_type)) {
  2097. nnz_cache[scan8[0]] =
  2098. nnz_cache[scan8[1]] =
  2099. nnz_cache[scan8[2]] =
  2100. nnz_cache[scan8[3]] = (sl->cbp & 0x1000) >> 12;
  2101. nnz_cache[scan8[0 + 4]] =
  2102. nnz_cache[scan8[1 + 4]] =
  2103. nnz_cache[scan8[2 + 4]] =
  2104. nnz_cache[scan8[3 + 4]] = (sl->cbp & 0x2000) >> 12;
  2105. nnz_cache[scan8[0 + 8]] =
  2106. nnz_cache[scan8[1 + 8]] =
  2107. nnz_cache[scan8[2 + 8]] =
  2108. nnz_cache[scan8[3 + 8]] = (sl->cbp & 0x4000) >> 12;
  2109. nnz_cache[scan8[0 + 12]] =
  2110. nnz_cache[scan8[1 + 12]] =
  2111. nnz_cache[scan8[2 + 12]] =
  2112. nnz_cache[scan8[3 + 12]] = (sl->cbp & 0x8000) >> 12;
  2113. }
  2114. }
  2115. return 0;
  2116. }
  2117. static void loop_filter(const H264Context *h, H264SliceContext *sl, int start_x, int end_x)
  2118. {
  2119. uint8_t *dest_y, *dest_cb, *dest_cr;
  2120. int linesize, uvlinesize, mb_x, mb_y;
  2121. const int end_mb_y = sl->mb_y + FRAME_MBAFF(h);
  2122. const int old_slice_type = sl->slice_type;
  2123. const int pixel_shift = h->pixel_shift;
  2124. const int block_h = 16 >> h->chroma_y_shift;
  2125. if (h->postpone_filter)
  2126. return;
  2127. if (sl->deblocking_filter) {
  2128. for (mb_x = start_x; mb_x < end_x; mb_x++)
  2129. for (mb_y = end_mb_y - FRAME_MBAFF(h); mb_y <= end_mb_y; mb_y++) {
  2130. int mb_xy, mb_type;
  2131. mb_xy = sl->mb_xy = mb_x + mb_y * h->mb_stride;
  2132. mb_type = h->cur_pic.mb_type[mb_xy];
  2133. if (FRAME_MBAFF(h))
  2134. sl->mb_mbaff =
  2135. sl->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
  2136. sl->mb_x = mb_x;
  2137. sl->mb_y = mb_y;
  2138. dest_y = h->cur_pic.f->data[0] +
  2139. ((mb_x << pixel_shift) + mb_y * sl->linesize) * 16;
  2140. dest_cb = h->cur_pic.f->data[1] +
  2141. (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
  2142. mb_y * sl->uvlinesize * block_h;
  2143. dest_cr = h->cur_pic.f->data[2] +
  2144. (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
  2145. mb_y * sl->uvlinesize * block_h;
  2146. // FIXME simplify above
  2147. if (MB_FIELD(sl)) {
  2148. linesize = sl->mb_linesize = sl->linesize * 2;
  2149. uvlinesize = sl->mb_uvlinesize = sl->uvlinesize * 2;
  2150. if (mb_y & 1) { // FIXME move out of this function?
  2151. dest_y -= sl->linesize * 15;
  2152. dest_cb -= sl->uvlinesize * (block_h - 1);
  2153. dest_cr -= sl->uvlinesize * (block_h - 1);
  2154. }
  2155. } else {
  2156. linesize = sl->mb_linesize = sl->linesize;
  2157. uvlinesize = sl->mb_uvlinesize = sl->uvlinesize;
  2158. }
  2159. backup_mb_border(h, sl, dest_y, dest_cb, dest_cr, linesize,
  2160. uvlinesize, 0);
  2161. if (fill_filter_caches(h, sl, mb_type))
  2162. continue;
  2163. sl->chroma_qp[0] = get_chroma_qp(h->ps.pps, 0, h->cur_pic.qscale_table[mb_xy]);
  2164. sl->chroma_qp[1] = get_chroma_qp(h->ps.pps, 1, h->cur_pic.qscale_table[mb_xy]);
  2165. if (FRAME_MBAFF(h)) {
  2166. ff_h264_filter_mb(h, sl, mb_x, mb_y, dest_y, dest_cb, dest_cr,
  2167. linesize, uvlinesize);
  2168. } else {
  2169. ff_h264_filter_mb_fast(h, sl, mb_x, mb_y, dest_y, dest_cb,
  2170. dest_cr, linesize, uvlinesize);
  2171. }
  2172. }
  2173. }
  2174. sl->slice_type = old_slice_type;
  2175. sl->mb_x = end_x;
  2176. sl->mb_y = end_mb_y - FRAME_MBAFF(h);
  2177. sl->chroma_qp[0] = get_chroma_qp(h->ps.pps, 0, sl->qscale);
  2178. sl->chroma_qp[1] = get_chroma_qp(h->ps.pps, 1, sl->qscale);
  2179. }
  2180. static void predict_field_decoding_flag(const H264Context *h, H264SliceContext *sl)
  2181. {
  2182. const int mb_xy = sl->mb_x + sl->mb_y * h->mb_stride;
  2183. int mb_type = (h->slice_table[mb_xy - 1] == sl->slice_num) ?
  2184. h->cur_pic.mb_type[mb_xy - 1] :
  2185. (h->slice_table[mb_xy - h->mb_stride] == sl->slice_num) ?
  2186. h->cur_pic.mb_type[mb_xy - h->mb_stride] : 0;
  2187. sl->mb_mbaff = sl->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
  2188. }
  2189. /**
  2190. * Draw edges and report progress for the last MB row.
  2191. */
  2192. static void decode_finish_row(const H264Context *h, H264SliceContext *sl)
  2193. {
  2194. int top = 16 * (sl->mb_y >> FIELD_PICTURE(h));
  2195. int pic_height = 16 * h->mb_height >> FIELD_PICTURE(h);
  2196. int height = 16 << FRAME_MBAFF(h);
  2197. int deblock_border = (16 + 4) << FRAME_MBAFF(h);
  2198. if (sl->deblocking_filter) {
  2199. if ((top + height) >= pic_height)
  2200. height += deblock_border;
  2201. top -= deblock_border;
  2202. }
  2203. if (top >= pic_height || (top + height) < 0)
  2204. return;
  2205. height = FFMIN(height, pic_height - top);
  2206. if (top < 0) {
  2207. height = top + height;
  2208. top = 0;
  2209. }
  2210. ff_h264_draw_horiz_band(h, sl, top, height);
  2211. if (h->droppable || sl->h264->slice_ctx[0].er.error_occurred)
  2212. return;
  2213. ff_thread_report_progress(&h->cur_pic_ptr->tf, top + height - 1,
  2214. h->picture_structure == PICT_BOTTOM_FIELD);
  2215. }
  2216. static void er_add_slice(H264SliceContext *sl,
  2217. int startx, int starty,
  2218. int endx, int endy, int status)
  2219. {
  2220. if (!sl->h264->enable_er)
  2221. return;
  2222. if (CONFIG_ERROR_RESILIENCE) {
  2223. ERContext *er = &sl->h264->slice_ctx[0].er;
  2224. ff_er_add_slice(er, startx, starty, endx, endy, status);
  2225. }
  2226. }
  2227. static int decode_slice(struct AVCodecContext *avctx, void *arg)
  2228. {
  2229. H264SliceContext *sl = arg;
  2230. const H264Context *h = sl->h264;
  2231. int lf_x_start = sl->mb_x;
  2232. int orig_deblock = sl->deblocking_filter;
  2233. int ret;
  2234. sl->linesize = h->cur_pic_ptr->f->linesize[0];
  2235. sl->uvlinesize = h->cur_pic_ptr->f->linesize[1];
  2236. ret = alloc_scratch_buffers(sl, sl->linesize);
  2237. if (ret < 0)
  2238. return ret;
  2239. sl->mb_skip_run = -1;
  2240. av_assert0(h->block_offset[15] == (4 * ((scan8[15] - scan8[0]) & 7) << h->pixel_shift) + 4 * sl->linesize * ((scan8[15] - scan8[0]) >> 3));
  2241. if (h->postpone_filter)
  2242. sl->deblocking_filter = 0;
  2243. sl->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
  2244. (CONFIG_GRAY && (h->flags & AV_CODEC_FLAG_GRAY));
  2245. if (!(h->avctx->active_thread_type & FF_THREAD_SLICE) && h->picture_structure == PICT_FRAME && h->slice_ctx[0].er.error_status_table) {
  2246. const int start_i = av_clip(sl->resync_mb_x + sl->resync_mb_y * h->mb_width, 0, h->mb_num - 1);
  2247. if (start_i) {
  2248. int prev_status = h->slice_ctx[0].er.error_status_table[h->slice_ctx[0].er.mb_index2xy[start_i - 1]];
  2249. prev_status &= ~ VP_START;
  2250. if (prev_status != (ER_MV_END | ER_DC_END | ER_AC_END))
  2251. h->slice_ctx[0].er.error_occurred = 1;
  2252. }
  2253. }
  2254. if (h->ps.pps->cabac) {
  2255. /* realign */
  2256. align_get_bits(&sl->gb);
  2257. /* init cabac */
  2258. ret = ff_init_cabac_decoder(&sl->cabac,
  2259. sl->gb.buffer + get_bits_count(&sl->gb) / 8,
  2260. (get_bits_left(&sl->gb) + 7) / 8);
  2261. if (ret < 0)
  2262. return ret;
  2263. ff_h264_init_cabac_states(h, sl);
  2264. for (;;) {
  2265. // START_TIMER
  2266. int ret, eos;
  2267. if (sl->mb_x + sl->mb_y * h->mb_width >= sl->next_slice_idx) {
  2268. av_log(h->avctx, AV_LOG_ERROR, "Slice overlaps with next at %d\n",
  2269. sl->next_slice_idx);
  2270. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x,
  2271. sl->mb_y, ER_MB_ERROR);
  2272. return AVERROR_INVALIDDATA;
  2273. }
  2274. ret = ff_h264_decode_mb_cabac(h, sl);
  2275. // STOP_TIMER("decode_mb_cabac")
  2276. if (ret >= 0)
  2277. ff_h264_hl_decode_mb(h, sl);
  2278. // FIXME optimal? or let mb_decode decode 16x32 ?
  2279. if (ret >= 0 && FRAME_MBAFF(h)) {
  2280. sl->mb_y++;
  2281. ret = ff_h264_decode_mb_cabac(h, sl);
  2282. if (ret >= 0)
  2283. ff_h264_hl_decode_mb(h, sl);
  2284. sl->mb_y--;
  2285. }
  2286. eos = get_cabac_terminate(&sl->cabac);
  2287. if ((h->workaround_bugs & FF_BUG_TRUNCATED) &&
  2288. sl->cabac.bytestream > sl->cabac.bytestream_end + 2) {
  2289. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x - 1,
  2290. sl->mb_y, ER_MB_END);
  2291. if (sl->mb_x >= lf_x_start)
  2292. loop_filter(h, sl, lf_x_start, sl->mb_x + 1);
  2293. goto finish;
  2294. }
  2295. if (sl->cabac.bytestream > sl->cabac.bytestream_end + 2 )
  2296. av_log(h->avctx, AV_LOG_DEBUG, "bytestream overread %"PTRDIFF_SPECIFIER"\n", sl->cabac.bytestream_end - sl->cabac.bytestream);
  2297. if (ret < 0 || sl->cabac.bytestream > sl->cabac.bytestream_end + 4) {
  2298. av_log(h->avctx, AV_LOG_ERROR,
  2299. "error while decoding MB %d %d, bytestream %"PTRDIFF_SPECIFIER"\n",
  2300. sl->mb_x, sl->mb_y,
  2301. sl->cabac.bytestream_end - sl->cabac.bytestream);
  2302. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x,
  2303. sl->mb_y, ER_MB_ERROR);
  2304. return AVERROR_INVALIDDATA;
  2305. }
  2306. if (++sl->mb_x >= h->mb_width) {
  2307. loop_filter(h, sl, lf_x_start, sl->mb_x);
  2308. sl->mb_x = lf_x_start = 0;
  2309. decode_finish_row(h, sl);
  2310. ++sl->mb_y;
  2311. if (FIELD_OR_MBAFF_PICTURE(h)) {
  2312. ++sl->mb_y;
  2313. if (FRAME_MBAFF(h) && sl->mb_y < h->mb_height)
  2314. predict_field_decoding_flag(h, sl);
  2315. }
  2316. }
  2317. if (eos || sl->mb_y >= h->mb_height) {
  2318. ff_tlog(h->avctx, "slice end %d %d\n",
  2319. get_bits_count(&sl->gb), sl->gb.size_in_bits);
  2320. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x - 1,
  2321. sl->mb_y, ER_MB_END);
  2322. if (sl->mb_x > lf_x_start)
  2323. loop_filter(h, sl, lf_x_start, sl->mb_x);
  2324. goto finish;
  2325. }
  2326. }
  2327. } else {
  2328. for (;;) {
  2329. int ret;
  2330. if (sl->mb_x + sl->mb_y * h->mb_width >= sl->next_slice_idx) {
  2331. av_log(h->avctx, AV_LOG_ERROR, "Slice overlaps with next at %d\n",
  2332. sl->next_slice_idx);
  2333. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x,
  2334. sl->mb_y, ER_MB_ERROR);
  2335. return AVERROR_INVALIDDATA;
  2336. }
  2337. ret = ff_h264_decode_mb_cavlc(h, sl);
  2338. if (ret >= 0)
  2339. ff_h264_hl_decode_mb(h, sl);
  2340. // FIXME optimal? or let mb_decode decode 16x32 ?
  2341. if (ret >= 0 && FRAME_MBAFF(h)) {
  2342. sl->mb_y++;
  2343. ret = ff_h264_decode_mb_cavlc(h, sl);
  2344. if (ret >= 0)
  2345. ff_h264_hl_decode_mb(h, sl);
  2346. sl->mb_y--;
  2347. }
  2348. if (ret < 0) {
  2349. av_log(h->avctx, AV_LOG_ERROR,
  2350. "error while decoding MB %d %d\n", sl->mb_x, sl->mb_y);
  2351. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x,
  2352. sl->mb_y, ER_MB_ERROR);
  2353. return ret;
  2354. }
  2355. if (++sl->mb_x >= h->mb_width) {
  2356. loop_filter(h, sl, lf_x_start, sl->mb_x);
  2357. sl->mb_x = lf_x_start = 0;
  2358. decode_finish_row(h, sl);
  2359. ++sl->mb_y;
  2360. if (FIELD_OR_MBAFF_PICTURE(h)) {
  2361. ++sl->mb_y;
  2362. if (FRAME_MBAFF(h) && sl->mb_y < h->mb_height)
  2363. predict_field_decoding_flag(h, sl);
  2364. }
  2365. if (sl->mb_y >= h->mb_height) {
  2366. ff_tlog(h->avctx, "slice end %d %d\n",
  2367. get_bits_count(&sl->gb), sl->gb.size_in_bits);
  2368. if ( get_bits_left(&sl->gb) == 0
  2369. || get_bits_left(&sl->gb) > 0 && !(h->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
  2370. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y,
  2371. sl->mb_x - 1, sl->mb_y, ER_MB_END);
  2372. goto finish;
  2373. } else {
  2374. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y,
  2375. sl->mb_x, sl->mb_y, ER_MB_END);
  2376. return AVERROR_INVALIDDATA;
  2377. }
  2378. }
  2379. }
  2380. if (get_bits_left(&sl->gb) <= 0 && sl->mb_skip_run <= 0) {
  2381. ff_tlog(h->avctx, "slice end %d %d\n",
  2382. get_bits_count(&sl->gb), sl->gb.size_in_bits);
  2383. if (get_bits_left(&sl->gb) == 0) {
  2384. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y,
  2385. sl->mb_x - 1, sl->mb_y, ER_MB_END);
  2386. if (sl->mb_x > lf_x_start)
  2387. loop_filter(h, sl, lf_x_start, sl->mb_x);
  2388. goto finish;
  2389. } else {
  2390. er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x,
  2391. sl->mb_y, ER_MB_ERROR);
  2392. return AVERROR_INVALIDDATA;
  2393. }
  2394. }
  2395. }
  2396. }
  2397. finish:
  2398. sl->deblocking_filter = orig_deblock;
  2399. return 0;
  2400. }
  2401. /**
  2402. * Call decode_slice() for each context.
  2403. *
  2404. * @param h h264 master context
  2405. */
  2406. int ff_h264_execute_decode_slices(H264Context *h)
  2407. {
  2408. AVCodecContext *const avctx = h->avctx;
  2409. H264SliceContext *sl;
  2410. int context_count = h->nb_slice_ctx_queued;
  2411. int ret = 0;
  2412. int i, j;
  2413. h->slice_ctx[0].next_slice_idx = INT_MAX;
  2414. if (h->avctx->hwaccel || context_count < 1
  2415. #if FF_API_CAP_VDPAU
  2416. || h->avctx->codec->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU
  2417. #endif
  2418. )
  2419. return 0;
  2420. av_assert0(context_count && h->slice_ctx[context_count - 1].mb_y < h->mb_height);
  2421. if (context_count == 1) {
  2422. h->slice_ctx[0].next_slice_idx = h->mb_width * h->mb_height;
  2423. h->postpone_filter = 0;
  2424. ret = decode_slice(avctx, &h->slice_ctx[0]);
  2425. h->mb_y = h->slice_ctx[0].mb_y;
  2426. if (ret < 0)
  2427. goto finish;
  2428. } else {
  2429. av_assert0(context_count > 0);
  2430. for (i = 0; i < context_count; i++) {
  2431. int next_slice_idx = h->mb_width * h->mb_height;
  2432. int slice_idx;
  2433. sl = &h->slice_ctx[i];
  2434. if (CONFIG_ERROR_RESILIENCE) {
  2435. sl->er.error_count = 0;
  2436. }
  2437. /* make sure none of those slices overlap */
  2438. slice_idx = sl->mb_y * h->mb_width + sl->mb_x;
  2439. for (j = 0; j < context_count; j++) {
  2440. H264SliceContext *sl2 = &h->slice_ctx[j];
  2441. int slice_idx2 = sl2->mb_y * h->mb_width + sl2->mb_x;
  2442. if (i == j || slice_idx2 < slice_idx)
  2443. continue;
  2444. next_slice_idx = FFMIN(next_slice_idx, slice_idx2);
  2445. }
  2446. sl->next_slice_idx = next_slice_idx;
  2447. }
  2448. avctx->execute(avctx, decode_slice, h->slice_ctx,
  2449. NULL, context_count, sizeof(h->slice_ctx[0]));
  2450. /* pull back stuff from slices to master context */
  2451. sl = &h->slice_ctx[context_count - 1];
  2452. h->mb_y = sl->mb_y;
  2453. if (CONFIG_ERROR_RESILIENCE) {
  2454. for (i = 1; i < context_count; i++)
  2455. h->slice_ctx[0].er.error_count += h->slice_ctx[i].er.error_count;
  2456. }
  2457. if (h->postpone_filter) {
  2458. h->postpone_filter = 0;
  2459. for (i = 0; i < context_count; i++) {
  2460. int y_end, x_end;
  2461. sl = &h->slice_ctx[i];
  2462. y_end = FFMIN(sl->mb_y + 1, h->mb_height);
  2463. x_end = (sl->mb_y >= h->mb_height) ? h->mb_width : sl->mb_x;
  2464. for (j = sl->resync_mb_y; j < y_end; j += 1 + FIELD_OR_MBAFF_PICTURE(h)) {
  2465. sl->mb_y = j;
  2466. loop_filter(h, sl, j > sl->resync_mb_y ? 0 : sl->resync_mb_x,
  2467. j == y_end - 1 ? x_end : h->mb_width);
  2468. }
  2469. }
  2470. }
  2471. }
  2472. finish:
  2473. h->nb_slice_ctx_queued = 0;
  2474. return ret;
  2475. }