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.

2577 lines
97KB

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