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.

4352 lines
168KB

  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/imgutils.h"
  27. #include "libavutil/opt.h"
  28. #include "internal.h"
  29. #include "dsputil.h"
  30. #include "avcodec.h"
  31. #include "mpegvideo.h"
  32. #include "h264.h"
  33. #include "h264data.h"
  34. #include "h264_mvpred.h"
  35. #include "golomb.h"
  36. #include "mathops.h"
  37. #include "rectangle.h"
  38. #include "thread.h"
  39. #include "vdpau_internal.h"
  40. #include "libavutil/avassert.h"
  41. #include "cabac.h"
  42. //#undef NDEBUG
  43. #include <assert.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, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3,
  46. };
  47. static const uint8_t div6[QP_MAX_NUM+1]={
  48. 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9,10,10,10,10,
  49. };
  50. static const enum PixelFormat hwaccel_pixfmt_list_h264_jpeg_420[] = {
  51. PIX_FMT_DXVA2_VLD,
  52. PIX_FMT_VAAPI_VLD,
  53. PIX_FMT_VDA_VLD,
  54. PIX_FMT_YUVJ420P,
  55. PIX_FMT_NONE
  56. };
  57. /**
  58. * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
  59. */
  60. int ff_h264_check_intra4x4_pred_mode(H264Context *h){
  61. MpegEncContext * const s = &h->s;
  62. static const int8_t top [12]= {-1, 0,LEFT_DC_PRED,-1,-1,-1,-1,-1, 0};
  63. static const int8_t left[12]= { 0,-1, TOP_DC_PRED, 0,-1,-1,-1, 0,-1,DC_128_PRED};
  64. int i;
  65. if(!(h->top_samples_available&0x8000)){
  66. for(i=0; i<4; i++){
  67. int status= top[ h->intra4x4_pred_mode_cache[scan8[0] + i] ];
  68. if(status<0){
  69. av_log(h->s.avctx, AV_LOG_ERROR, "top block unavailable for requested intra4x4 mode %d at %d %d\n", status, s->mb_x, s->mb_y);
  70. return -1;
  71. } else if(status){
  72. h->intra4x4_pred_mode_cache[scan8[0] + i]= status;
  73. }
  74. }
  75. }
  76. if((h->left_samples_available&0x8888)!=0x8888){
  77. static const int mask[4]={0x8000,0x2000,0x80,0x20};
  78. for(i=0; i<4; i++){
  79. if(!(h->left_samples_available&mask[i])){
  80. int status= left[ h->intra4x4_pred_mode_cache[scan8[0] + 8*i] ];
  81. if(status<0){
  82. av_log(h->s.avctx, AV_LOG_ERROR, "left block unavailable for requested intra4x4 mode %d at %d %d\n", status, s->mb_x, s->mb_y);
  83. return -1;
  84. } else if(status){
  85. h->intra4x4_pred_mode_cache[scan8[0] + 8*i]= status;
  86. }
  87. }
  88. }
  89. }
  90. return 0;
  91. } //FIXME cleanup like check_intra_pred_mode
  92. static int check_intra_pred_mode(H264Context *h, int mode, int is_chroma){
  93. MpegEncContext * const s = &h->s;
  94. static const int8_t top [7]= {LEFT_DC_PRED8x8, 1,-1,-1};
  95. static const int8_t left[7]= { TOP_DC_PRED8x8,-1, 2,-1,DC_128_PRED8x8};
  96. if(mode > 6U) {
  97. av_log(h->s.avctx, AV_LOG_ERROR, "out of range intra chroma pred mode at %d %d\n", s->mb_x, s->mb_y);
  98. return -1;
  99. }
  100. if(!(h->top_samples_available&0x8000)){
  101. mode= top[ mode ];
  102. if(mode<0){
  103. av_log(h->s.avctx, AV_LOG_ERROR, "top block unavailable for requested intra mode at %d %d\n", s->mb_x, s->mb_y);
  104. return -1;
  105. }
  106. }
  107. if((h->left_samples_available&0x8080) != 0x8080){
  108. mode= left[ mode ];
  109. if(is_chroma && (h->left_samples_available&0x8080)){ //mad cow disease mode, aka MBAFF + constrained_intra_pred
  110. mode= ALZHEIMER_DC_L0T_PRED8x8 + (!(h->left_samples_available&0x8000)) + 2*(mode == DC_128_PRED8x8);
  111. }
  112. if(mode<0){
  113. av_log(h->s.avctx, AV_LOG_ERROR, "left block unavailable for requested intra mode at %d %d\n", s->mb_x, s->mb_y);
  114. return -1;
  115. }
  116. }
  117. return mode;
  118. }
  119. /**
  120. * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
  121. */
  122. int ff_h264_check_intra16x16_pred_mode(H264Context *h, int mode)
  123. {
  124. return check_intra_pred_mode(h, mode, 0);
  125. }
  126. /**
  127. * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
  128. */
  129. int ff_h264_check_intra_chroma_pred_mode(H264Context *h, int mode)
  130. {
  131. return check_intra_pred_mode(h, mode, 1);
  132. }
  133. const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length){
  134. int i, si, di;
  135. uint8_t *dst;
  136. int bufidx;
  137. // src[0]&0x80; //forbidden bit
  138. h->nal_ref_idc= src[0]>>5;
  139. h->nal_unit_type= src[0]&0x1F;
  140. src++; length--;
  141. #if HAVE_FAST_UNALIGNED
  142. # if HAVE_FAST_64BIT
  143. # define RS 7
  144. for(i=0; i+1<length; i+=9){
  145. if(!((~AV_RN64A(src+i) & (AV_RN64A(src+i) - 0x0100010001000101ULL)) & 0x8000800080008080ULL))
  146. # else
  147. # define RS 3
  148. for(i=0; i+1<length; i+=5){
  149. if(!((~AV_RN32A(src+i) & (AV_RN32A(src+i) - 0x01000101U)) & 0x80008080U))
  150. # endif
  151. continue;
  152. if(i>0 && !src[i]) i--;
  153. while(src[i]) i++;
  154. #else
  155. # define RS 0
  156. for(i=0; i+1<length; i+=2){
  157. if(src[i]) continue;
  158. if(i>0 && src[i-1]==0) i--;
  159. #endif
  160. if(i+2<length && src[i+1]==0 && src[i+2]<=3){
  161. if(src[i+2]!=3){
  162. /* startcode, so we must be past the end */
  163. length=i;
  164. }
  165. break;
  166. }
  167. i-= RS;
  168. }
  169. bufidx = h->nal_unit_type == NAL_DPC ? 1 : 0; // use second escape buffer for inter data
  170. si=h->rbsp_buffer_size[bufidx];
  171. av_fast_malloc(&h->rbsp_buffer[bufidx], &h->rbsp_buffer_size[bufidx], length+FF_INPUT_BUFFER_PADDING_SIZE+MAX_MBPAIR_SIZE);
  172. dst= h->rbsp_buffer[bufidx];
  173. if(si != h->rbsp_buffer_size[bufidx])
  174. memset(dst + length, 0, FF_INPUT_BUFFER_PADDING_SIZE+MAX_MBPAIR_SIZE);
  175. if (dst == NULL){
  176. return NULL;
  177. }
  178. if(i>=length-1){ //no escaped 0
  179. *dst_length= length;
  180. *consumed= length+1; //+1 for the header
  181. if(h->s.avctx->flags2 & CODEC_FLAG2_FAST){
  182. return src;
  183. }else{
  184. memcpy(dst, src, length);
  185. return dst;
  186. }
  187. }
  188. //printf("decoding esc\n");
  189. memcpy(dst, src, i);
  190. si=di=i;
  191. while(si+2<length){
  192. //remove escapes (very rare 1:2^22)
  193. if(src[si+2]>3){
  194. dst[di++]= src[si++];
  195. dst[di++]= src[si++];
  196. }else if(src[si]==0 && src[si+1]==0){
  197. if(src[si+2]==3){ //escape
  198. dst[di++]= 0;
  199. dst[di++]= 0;
  200. si+=3;
  201. continue;
  202. }else //next start code
  203. goto nsc;
  204. }
  205. dst[di++]= src[si++];
  206. }
  207. while(si<length)
  208. dst[di++]= src[si++];
  209. nsc:
  210. memset(dst+di, 0, FF_INPUT_BUFFER_PADDING_SIZE);
  211. *dst_length= di;
  212. *consumed= si + 1;//+1 for the header
  213. //FIXME store exact number of bits in the getbitcontext (it is needed for decoding)
  214. return dst;
  215. }
  216. /**
  217. * Identify the exact end of the bitstream
  218. * @return the length of the trailing, or 0 if damaged
  219. */
  220. static int ff_h264_decode_rbsp_trailing(H264Context *h, const uint8_t *src){
  221. int v= *src;
  222. int r;
  223. tprintf(h->s.avctx, "rbsp trailing %X\n", v);
  224. for(r=1; r<9; r++){
  225. if(v&1) return r;
  226. v>>=1;
  227. }
  228. return 0;
  229. }
  230. static inline int get_lowest_part_list_y(H264Context *h, Picture *pic, int n, int height,
  231. int y_offset, int list){
  232. int raw_my= h->mv_cache[list][ scan8[n] ][1];
  233. int filter_height= (raw_my&3) ? 2 : 0;
  234. int full_my= (raw_my>>2) + y_offset;
  235. int top = full_my - filter_height, bottom = full_my + height + filter_height;
  236. return FFMAX(abs(top), bottom);
  237. }
  238. static inline void get_lowest_part_y(H264Context *h, int refs[2][48], int n, int height,
  239. int y_offset, int list0, int list1, int *nrefs){
  240. MpegEncContext * const s = &h->s;
  241. int my;
  242. y_offset += 16*(s->mb_y >> MB_FIELD);
  243. if(list0){
  244. int ref_n = h->ref_cache[0][ scan8[n] ];
  245. Picture *ref= &h->ref_list[0][ref_n];
  246. // Error resilience puts the current picture in the ref list.
  247. // Don't try to wait on these as it will cause a deadlock.
  248. // Fields can wait on each other, though.
  249. if (ref->f.thread_opaque != s->current_picture.f.thread_opaque ||
  250. (ref->f.reference & 3) != s->picture_structure) {
  251. my = get_lowest_part_list_y(h, ref, n, height, y_offset, 0);
  252. if (refs[0][ref_n] < 0) nrefs[0] += 1;
  253. refs[0][ref_n] = FFMAX(refs[0][ref_n], my);
  254. }
  255. }
  256. if(list1){
  257. int ref_n = h->ref_cache[1][ scan8[n] ];
  258. Picture *ref= &h->ref_list[1][ref_n];
  259. if (ref->f.thread_opaque != s->current_picture.f.thread_opaque ||
  260. (ref->f.reference & 3) != s->picture_structure) {
  261. my = get_lowest_part_list_y(h, ref, n, height, y_offset, 1);
  262. if (refs[1][ref_n] < 0) nrefs[1] += 1;
  263. refs[1][ref_n] = FFMAX(refs[1][ref_n], my);
  264. }
  265. }
  266. }
  267. /**
  268. * Wait until all reference frames are available for MC operations.
  269. *
  270. * @param h the H264 context
  271. */
  272. static void await_references(H264Context *h){
  273. MpegEncContext * const s = &h->s;
  274. const int mb_xy= h->mb_xy;
  275. const int mb_type = s->current_picture.f.mb_type[mb_xy];
  276. int refs[2][48];
  277. int nrefs[2] = {0};
  278. int ref, list;
  279. memset(refs, -1, sizeof(refs));
  280. if(IS_16X16(mb_type)){
  281. get_lowest_part_y(h, refs, 0, 16, 0,
  282. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
  283. }else if(IS_16X8(mb_type)){
  284. get_lowest_part_y(h, refs, 0, 8, 0,
  285. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
  286. get_lowest_part_y(h, refs, 8, 8, 8,
  287. IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
  288. }else if(IS_8X16(mb_type)){
  289. get_lowest_part_y(h, refs, 0, 16, 0,
  290. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
  291. get_lowest_part_y(h, refs, 4, 16, 0,
  292. IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
  293. }else{
  294. int i;
  295. assert(IS_8X8(mb_type));
  296. for(i=0; i<4; i++){
  297. const int sub_mb_type= h->sub_mb_type[i];
  298. const int n= 4*i;
  299. int y_offset= (i&2)<<2;
  300. if(IS_SUB_8X8(sub_mb_type)){
  301. get_lowest_part_y(h, refs, n , 8, y_offset,
  302. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
  303. }else if(IS_SUB_8X4(sub_mb_type)){
  304. get_lowest_part_y(h, refs, n , 4, y_offset,
  305. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
  306. get_lowest_part_y(h, refs, n+2, 4, y_offset+4,
  307. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
  308. }else if(IS_SUB_4X8(sub_mb_type)){
  309. get_lowest_part_y(h, refs, n , 8, y_offset,
  310. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
  311. get_lowest_part_y(h, refs, n+1, 8, y_offset,
  312. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
  313. }else{
  314. int j;
  315. assert(IS_SUB_4X4(sub_mb_type));
  316. for(j=0; j<4; j++){
  317. int sub_y_offset= y_offset + 2*(j&2);
  318. get_lowest_part_y(h, refs, n+j, 4, sub_y_offset,
  319. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
  320. }
  321. }
  322. }
  323. }
  324. for(list=h->list_count-1; list>=0; list--){
  325. for(ref=0; ref<48 && nrefs[list]; ref++){
  326. int row = refs[list][ref];
  327. if(row >= 0){
  328. Picture *ref_pic = &h->ref_list[list][ref];
  329. int ref_field = ref_pic->f.reference - 1;
  330. int ref_field_picture = ref_pic->field_picture;
  331. int pic_height = 16*s->mb_height >> ref_field_picture;
  332. row <<= MB_MBAFF;
  333. nrefs[list]--;
  334. if(!FIELD_PICTURE && ref_field_picture){ // frame referencing two fields
  335. ff_thread_await_progress((AVFrame*)ref_pic, FFMIN((row >> 1) - !(row&1), pic_height-1), 1);
  336. ff_thread_await_progress((AVFrame*)ref_pic, FFMIN((row >> 1) , pic_height-1), 0);
  337. }else if(FIELD_PICTURE && !ref_field_picture){ // field referencing one field of a frame
  338. ff_thread_await_progress((AVFrame*)ref_pic, FFMIN(row*2 + ref_field , pic_height-1), 0);
  339. }else if(FIELD_PICTURE){
  340. ff_thread_await_progress((AVFrame*)ref_pic, FFMIN(row, pic_height-1), ref_field);
  341. }else{
  342. ff_thread_await_progress((AVFrame*)ref_pic, FFMIN(row, pic_height-1), 0);
  343. }
  344. }
  345. }
  346. }
  347. }
  348. #if 0
  349. /**
  350. * DCT transforms the 16 dc values.
  351. * @param qp quantization parameter ??? FIXME
  352. */
  353. static void h264_luma_dc_dct_c(DCTELEM *block/*, int qp*/){
  354. // const int qmul= dequant_coeff[qp][0];
  355. int i;
  356. int temp[16]; //FIXME check if this is a good idea
  357. static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride};
  358. static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride};
  359. for(i=0; i<4; i++){
  360. const int offset= y_offset[i];
  361. const int z0= block[offset+stride*0] + block[offset+stride*4];
  362. const int z1= block[offset+stride*0] - block[offset+stride*4];
  363. const int z2= block[offset+stride*1] - block[offset+stride*5];
  364. const int z3= block[offset+stride*1] + block[offset+stride*5];
  365. temp[4*i+0]= z0+z3;
  366. temp[4*i+1]= z1+z2;
  367. temp[4*i+2]= z1-z2;
  368. temp[4*i+3]= z0-z3;
  369. }
  370. for(i=0; i<4; i++){
  371. const int offset= x_offset[i];
  372. const int z0= temp[4*0+i] + temp[4*2+i];
  373. const int z1= temp[4*0+i] - temp[4*2+i];
  374. const int z2= temp[4*1+i] - temp[4*3+i];
  375. const int z3= temp[4*1+i] + temp[4*3+i];
  376. block[stride*0 +offset]= (z0 + z3)>>1;
  377. block[stride*2 +offset]= (z1 + z2)>>1;
  378. block[stride*8 +offset]= (z1 - z2)>>1;
  379. block[stride*10+offset]= (z0 - z3)>>1;
  380. }
  381. }
  382. #endif
  383. #undef xStride
  384. #undef stride
  385. #if 0
  386. static void chroma_dc_dct_c(DCTELEM *block){
  387. const int stride= 16*2;
  388. const int xStride= 16;
  389. int a,b,c,d,e;
  390. a= block[stride*0 + xStride*0];
  391. b= block[stride*0 + xStride*1];
  392. c= block[stride*1 + xStride*0];
  393. d= block[stride*1 + xStride*1];
  394. e= a-b;
  395. a= a+b;
  396. b= c-d;
  397. c= c+d;
  398. block[stride*0 + xStride*0]= (a+c);
  399. block[stride*0 + xStride*1]= (e+b);
  400. block[stride*1 + xStride*0]= (a-c);
  401. block[stride*1 + xStride*1]= (e-b);
  402. }
  403. #endif
  404. static av_always_inline void
  405. mc_dir_part(H264Context *h, Picture *pic, int n, int square,
  406. int height, int delta, int list,
  407. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  408. int src_x_offset, int src_y_offset,
  409. qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op,
  410. int pixel_shift, int chroma_idc)
  411. {
  412. MpegEncContext * const s = &h->s;
  413. const int mx= h->mv_cache[list][ scan8[n] ][0] + src_x_offset*8;
  414. int my= h->mv_cache[list][ scan8[n] ][1] + src_y_offset*8;
  415. const int luma_xy= (mx&3) + ((my&3)<<2);
  416. int offset = ((mx>>2) << pixel_shift) + (my>>2)*h->mb_linesize;
  417. uint8_t * src_y = pic->f.data[0] + offset;
  418. uint8_t * src_cb, * src_cr;
  419. int extra_width= h->emu_edge_width;
  420. int extra_height= h->emu_edge_height;
  421. int emu=0;
  422. const int full_mx= mx>>2;
  423. const int full_my= my>>2;
  424. const int pic_width = 16*s->mb_width;
  425. const int pic_height = 16*s->mb_height >> MB_FIELD;
  426. int ysh;
  427. if(mx&7) extra_width -= 3;
  428. if(my&7) extra_height -= 3;
  429. if( full_mx < 0-extra_width
  430. || full_my < 0-extra_height
  431. || full_mx + 16/*FIXME*/ > pic_width + extra_width
  432. || full_my + 16/*FIXME*/ > pic_height + extra_height){
  433. s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_y - (2 << pixel_shift) - 2*h->mb_linesize, h->mb_linesize,
  434. 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
  435. src_y= s->edge_emu_buffer + (2 << pixel_shift) + 2*h->mb_linesize;
  436. emu=1;
  437. }
  438. qpix_op[luma_xy](dest_y, src_y, h->mb_linesize); //FIXME try variable height perhaps?
  439. if(!square){
  440. qpix_op[luma_xy](dest_y + delta, src_y + delta, h->mb_linesize);
  441. }
  442. if(CONFIG_GRAY && s->flags&CODEC_FLAG_GRAY) return;
  443. if(chroma_idc == 3 /* yuv444 */){
  444. src_cb = pic->f.data[1] + offset;
  445. if(emu){
  446. s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cb - (2 << pixel_shift) - 2*h->mb_linesize, h->mb_linesize,
  447. 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
  448. src_cb= s->edge_emu_buffer + (2 << pixel_shift) + 2*h->mb_linesize;
  449. }
  450. qpix_op[luma_xy](dest_cb, src_cb, h->mb_linesize); //FIXME try variable height perhaps?
  451. if(!square){
  452. qpix_op[luma_xy](dest_cb + delta, src_cb + delta, h->mb_linesize);
  453. }
  454. src_cr = pic->f.data[2] + offset;
  455. if(emu){
  456. s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cr - (2 << pixel_shift) - 2*h->mb_linesize, h->mb_linesize,
  457. 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
  458. src_cr= s->edge_emu_buffer + (2 << pixel_shift) + 2*h->mb_linesize;
  459. }
  460. qpix_op[luma_xy](dest_cr, src_cr, h->mb_linesize); //FIXME try variable height perhaps?
  461. if(!square){
  462. qpix_op[luma_xy](dest_cr + delta, src_cr + delta, h->mb_linesize);
  463. }
  464. return;
  465. }
  466. ysh = 3 - (chroma_idc == 2 /* yuv422 */);
  467. if(chroma_idc == 1 /* yuv420 */ && MB_FIELD){
  468. // chroma offset when predicting from a field of opposite parity
  469. my += 2 * ((s->mb_y & 1) - (pic->f.reference - 1));
  470. emu |= (my>>3) < 0 || (my>>3) + 8 >= (pic_height>>1);
  471. }
  472. src_cb = pic->f.data[1] + ((mx >> 3) << pixel_shift) + (my >> ysh) * h->mb_uvlinesize;
  473. src_cr = pic->f.data[2] + ((mx >> 3) << pixel_shift) + (my >> ysh) * h->mb_uvlinesize;
  474. if(emu){
  475. s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cb, h->mb_uvlinesize,
  476. 9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
  477. pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
  478. src_cb= s->edge_emu_buffer;
  479. }
  480. chroma_op(dest_cb, src_cb, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
  481. mx&7, (my << (chroma_idc == 2 /* yuv422 */)) &7);
  482. if(emu){
  483. s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cr, h->mb_uvlinesize,
  484. 9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
  485. pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
  486. src_cr= s->edge_emu_buffer;
  487. }
  488. chroma_op(dest_cr, src_cr, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
  489. mx&7, (my << (chroma_idc == 2 /* yuv422 */)) &7);
  490. }
  491. static av_always_inline void
  492. mc_part_std(H264Context *h, int n, int square, int height, int delta,
  493. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  494. int x_offset, int y_offset,
  495. qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
  496. qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
  497. int list0, int list1, int pixel_shift, int chroma_idc)
  498. {
  499. MpegEncContext * const s = &h->s;
  500. qpel_mc_func *qpix_op= qpix_put;
  501. h264_chroma_mc_func chroma_op= chroma_put;
  502. dest_y += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
  503. if (chroma_idc == 3 /* yuv444 */) {
  504. dest_cb += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
  505. dest_cr += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
  506. } else if (chroma_idc == 2 /* yuv422 */) {
  507. dest_cb += ( x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
  508. dest_cr += ( x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
  509. } else /* yuv420 */ {
  510. dest_cb += ( x_offset << pixel_shift) + y_offset*h->mb_uvlinesize;
  511. dest_cr += ( x_offset << pixel_shift) + y_offset*h->mb_uvlinesize;
  512. }
  513. x_offset += 8*s->mb_x;
  514. y_offset += 8*(s->mb_y >> MB_FIELD);
  515. if(list0){
  516. Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ];
  517. mc_dir_part(h, ref, n, square, height, delta, 0,
  518. dest_y, dest_cb, dest_cr, x_offset, y_offset,
  519. qpix_op, chroma_op, pixel_shift, chroma_idc);
  520. qpix_op= qpix_avg;
  521. chroma_op= chroma_avg;
  522. }
  523. if(list1){
  524. Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ];
  525. mc_dir_part(h, ref, n, square, height, delta, 1,
  526. dest_y, dest_cb, dest_cr, x_offset, y_offset,
  527. qpix_op, chroma_op, pixel_shift, chroma_idc);
  528. }
  529. }
  530. static av_always_inline void
  531. mc_part_weighted(H264Context *h, int n, int square, int height, int delta,
  532. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  533. int x_offset, int y_offset,
  534. qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
  535. h264_weight_func luma_weight_op, h264_weight_func chroma_weight_op,
  536. h264_biweight_func luma_weight_avg, h264_biweight_func chroma_weight_avg,
  537. int list0, int list1, int pixel_shift, int chroma_idc){
  538. MpegEncContext * const s = &h->s;
  539. int chroma_height;
  540. dest_y += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
  541. if (chroma_idc == 3 /* yuv444 */) {
  542. chroma_height = height;
  543. chroma_weight_avg = luma_weight_avg;
  544. chroma_weight_op = luma_weight_op;
  545. dest_cb += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
  546. dest_cr += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
  547. } else if (chroma_idc == 2 /* yuv422 */) {
  548. chroma_height = height;
  549. dest_cb += ( x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
  550. dest_cr += ( x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
  551. } else /* yuv420 */ {
  552. chroma_height = height >> 1;
  553. dest_cb += ( x_offset << pixel_shift) + y_offset*h->mb_uvlinesize;
  554. dest_cr += ( x_offset << pixel_shift) + y_offset*h->mb_uvlinesize;
  555. }
  556. x_offset += 8*s->mb_x;
  557. y_offset += 8*(s->mb_y >> MB_FIELD);
  558. if(list0 && list1){
  559. /* don't optimize for luma-only case, since B-frames usually
  560. * use implicit weights => chroma too. */
  561. uint8_t *tmp_cb = s->obmc_scratchpad;
  562. uint8_t *tmp_cr = s->obmc_scratchpad + (16 << pixel_shift);
  563. uint8_t *tmp_y = s->obmc_scratchpad + 16*h->mb_uvlinesize;
  564. int refn0 = h->ref_cache[0][ scan8[n] ];
  565. int refn1 = h->ref_cache[1][ scan8[n] ];
  566. mc_dir_part(h, &h->ref_list[0][refn0], n, square, height, delta, 0,
  567. dest_y, dest_cb, dest_cr,
  568. x_offset, y_offset, qpix_put, chroma_put,
  569. pixel_shift, chroma_idc);
  570. mc_dir_part(h, &h->ref_list[1][refn1], n, square, height, delta, 1,
  571. tmp_y, tmp_cb, tmp_cr,
  572. x_offset, y_offset, qpix_put, chroma_put,
  573. pixel_shift, chroma_idc);
  574. if(h->use_weight == 2){
  575. int weight0 = h->implicit_weight[refn0][refn1][s->mb_y&1];
  576. int weight1 = 64 - weight0;
  577. luma_weight_avg( dest_y, tmp_y, h-> mb_linesize,
  578. height, 5, weight0, weight1, 0);
  579. chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize,
  580. chroma_height, 5, weight0, weight1, 0);
  581. chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize,
  582. chroma_height, 5, weight0, weight1, 0);
  583. }else{
  584. luma_weight_avg(dest_y, tmp_y, h->mb_linesize, height, h->luma_log2_weight_denom,
  585. h->luma_weight[refn0][0][0] , h->luma_weight[refn1][1][0],
  586. h->luma_weight[refn0][0][1] + h->luma_weight[refn1][1][1]);
  587. chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
  588. h->chroma_weight[refn0][0][0][0] , h->chroma_weight[refn1][1][0][0],
  589. h->chroma_weight[refn0][0][0][1] + h->chroma_weight[refn1][1][0][1]);
  590. chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
  591. h->chroma_weight[refn0][0][1][0] , h->chroma_weight[refn1][1][1][0],
  592. h->chroma_weight[refn0][0][1][1] + h->chroma_weight[refn1][1][1][1]);
  593. }
  594. }else{
  595. int list = list1 ? 1 : 0;
  596. int refn = h->ref_cache[list][ scan8[n] ];
  597. Picture *ref= &h->ref_list[list][refn];
  598. mc_dir_part(h, ref, n, square, height, delta, list,
  599. dest_y, dest_cb, dest_cr, x_offset, y_offset,
  600. qpix_put, chroma_put, pixel_shift, chroma_idc);
  601. luma_weight_op(dest_y, h->mb_linesize, height, h->luma_log2_weight_denom,
  602. h->luma_weight[refn][list][0], h->luma_weight[refn][list][1]);
  603. if(h->use_weight_chroma){
  604. chroma_weight_op(dest_cb, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
  605. h->chroma_weight[refn][list][0][0], h->chroma_weight[refn][list][0][1]);
  606. chroma_weight_op(dest_cr, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
  607. h->chroma_weight[refn][list][1][0], h->chroma_weight[refn][list][1][1]);
  608. }
  609. }
  610. }
  611. static av_always_inline void
  612. mc_part(H264Context *h, int n, int square, int height, int delta,
  613. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  614. int x_offset, int y_offset,
  615. qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
  616. qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
  617. h264_weight_func *weight_op, h264_biweight_func *weight_avg,
  618. int list0, int list1, int pixel_shift, int chroma_idc)
  619. {
  620. if((h->use_weight==2 && list0 && list1
  621. && (h->implicit_weight[ h->ref_cache[0][scan8[n]] ][ h->ref_cache[1][scan8[n]] ][h->s.mb_y&1] != 32))
  622. || h->use_weight==1)
  623. mc_part_weighted(h, n, square, height, delta, dest_y, dest_cb, dest_cr,
  624. x_offset, y_offset, qpix_put, chroma_put,
  625. weight_op[0], weight_op[1], weight_avg[0],
  626. weight_avg[1], list0, list1, pixel_shift, chroma_idc);
  627. else
  628. mc_part_std(h, n, square, height, delta, dest_y, dest_cb, dest_cr,
  629. x_offset, y_offset, qpix_put, chroma_put, qpix_avg,
  630. chroma_avg, list0, list1, pixel_shift, chroma_idc);
  631. }
  632. static av_always_inline void
  633. prefetch_motion(H264Context *h, int list, int pixel_shift, int chroma_idc)
  634. {
  635. /* fetch pixels for estimated mv 4 macroblocks ahead
  636. * optimized for 64byte cache lines */
  637. MpegEncContext * const s = &h->s;
  638. const int refn = h->ref_cache[list][scan8[0]];
  639. if(refn >= 0){
  640. const int mx= (h->mv_cache[list][scan8[0]][0]>>2) + 16*s->mb_x + 8;
  641. const int my= (h->mv_cache[list][scan8[0]][1]>>2) + 16*s->mb_y;
  642. uint8_t **src = h->ref_list[list][refn].f.data;
  643. int off= (mx << pixel_shift) + (my + (s->mb_x&3)*4)*h->mb_linesize + (64 << pixel_shift);
  644. s->dsp.prefetch(src[0]+off, s->linesize, 4);
  645. if (chroma_idc == 3 /* yuv444 */) {
  646. s->dsp.prefetch(src[1]+off, s->linesize, 4);
  647. s->dsp.prefetch(src[2]+off, s->linesize, 4);
  648. }else{
  649. off= (((mx>>1)+64)<<pixel_shift) + ((my>>1) + (s->mb_x&7))*s->uvlinesize;
  650. s->dsp.prefetch(src[1]+off, src[2]-src[1], 2);
  651. }
  652. }
  653. }
  654. static av_always_inline void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  655. qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
  656. qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
  657. h264_weight_func *weight_op, h264_biweight_func *weight_avg,
  658. int pixel_shift, int chroma_idc)
  659. {
  660. MpegEncContext * const s = &h->s;
  661. const int mb_xy= h->mb_xy;
  662. const int mb_type = s->current_picture.f.mb_type[mb_xy];
  663. assert(IS_INTER(mb_type));
  664. if(HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
  665. await_references(h);
  666. prefetch_motion(h, 0, pixel_shift, chroma_idc);
  667. if(IS_16X16(mb_type)){
  668. mc_part(h, 0, 1, 16, 0, dest_y, dest_cb, dest_cr, 0, 0,
  669. qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0],
  670. weight_op, weight_avg,
  671. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1),
  672. pixel_shift, chroma_idc);
  673. }else if(IS_16X8(mb_type)){
  674. mc_part(h, 0, 0, 8, 8 << pixel_shift, dest_y, dest_cb, dest_cr, 0, 0,
  675. qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
  676. weight_op, weight_avg,
  677. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1),
  678. pixel_shift, chroma_idc);
  679. mc_part(h, 8, 0, 8, 8 << pixel_shift, dest_y, dest_cb, dest_cr, 0, 4,
  680. qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
  681. weight_op, weight_avg,
  682. IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1),
  683. pixel_shift, chroma_idc);
  684. }else if(IS_8X16(mb_type)){
  685. mc_part(h, 0, 0, 16, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 0, 0,
  686. qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
  687. &weight_op[1], &weight_avg[1],
  688. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1),
  689. pixel_shift, chroma_idc);
  690. mc_part(h, 4, 0, 16, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 4, 0,
  691. qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
  692. &weight_op[1], &weight_avg[1],
  693. IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1),
  694. pixel_shift, chroma_idc);
  695. }else{
  696. int i;
  697. assert(IS_8X8(mb_type));
  698. for(i=0; i<4; i++){
  699. const int sub_mb_type= h->sub_mb_type[i];
  700. const int n= 4*i;
  701. int x_offset= (i&1)<<2;
  702. int y_offset= (i&2)<<1;
  703. if(IS_SUB_8X8(sub_mb_type)){
  704. mc_part(h, n, 1, 8, 0, dest_y, dest_cb, dest_cr, x_offset, y_offset,
  705. qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
  706. &weight_op[1], &weight_avg[1],
  707. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
  708. pixel_shift, chroma_idc);
  709. }else if(IS_SUB_8X4(sub_mb_type)){
  710. mc_part(h, n , 0, 4, 4 << pixel_shift, dest_y, dest_cb, dest_cr, x_offset, y_offset,
  711. qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
  712. &weight_op[1], &weight_avg[1],
  713. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
  714. pixel_shift, chroma_idc);
  715. mc_part(h, n+2, 0, 4, 4 << pixel_shift, dest_y, dest_cb, dest_cr, x_offset, y_offset+2,
  716. qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
  717. &weight_op[1], &weight_avg[1],
  718. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
  719. pixel_shift, chroma_idc);
  720. }else if(IS_SUB_4X8(sub_mb_type)){
  721. mc_part(h, n , 0, 8, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset, y_offset,
  722. qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
  723. &weight_op[2], &weight_avg[2],
  724. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
  725. pixel_shift, chroma_idc);
  726. mc_part(h, n+1, 0, 8, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset+2, y_offset,
  727. qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
  728. &weight_op[2], &weight_avg[2],
  729. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
  730. pixel_shift, chroma_idc);
  731. }else{
  732. int j;
  733. assert(IS_SUB_4X4(sub_mb_type));
  734. for(j=0; j<4; j++){
  735. int sub_x_offset= x_offset + 2*(j&1);
  736. int sub_y_offset= y_offset + (j&2);
  737. mc_part(h, n+j, 1, 4, 0, dest_y, dest_cb, dest_cr, sub_x_offset, sub_y_offset,
  738. qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
  739. &weight_op[2], &weight_avg[2],
  740. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
  741. pixel_shift, chroma_idc);
  742. }
  743. }
  744. }
  745. }
  746. prefetch_motion(h, 1, pixel_shift, chroma_idc);
  747. }
  748. static av_always_inline void
  749. hl_motion_420(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  750. qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
  751. qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
  752. h264_weight_func *weight_op, h264_biweight_func *weight_avg,
  753. int pixel_shift)
  754. {
  755. hl_motion(h, dest_y, dest_cb, dest_cr, qpix_put, chroma_put,
  756. qpix_avg, chroma_avg, weight_op, weight_avg, pixel_shift, 1);
  757. }
  758. static av_always_inline void
  759. hl_motion_422(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  760. qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
  761. qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
  762. h264_weight_func *weight_op, h264_biweight_func *weight_avg,
  763. int pixel_shift)
  764. {
  765. hl_motion(h, dest_y, dest_cb, dest_cr, qpix_put, chroma_put,
  766. qpix_avg, chroma_avg, weight_op, weight_avg, pixel_shift, 2);
  767. }
  768. static void free_tables(H264Context *h, int free_rbsp){
  769. int i;
  770. H264Context *hx;
  771. av_freep(&h->intra4x4_pred_mode);
  772. av_freep(&h->chroma_pred_mode_table);
  773. av_freep(&h->cbp_table);
  774. av_freep(&h->mvd_table[0]);
  775. av_freep(&h->mvd_table[1]);
  776. av_freep(&h->direct_table);
  777. av_freep(&h->non_zero_count);
  778. av_freep(&h->slice_table_base);
  779. h->slice_table= NULL;
  780. av_freep(&h->list_counts);
  781. av_freep(&h->mb2b_xy);
  782. av_freep(&h->mb2br_xy);
  783. for(i = 0; i < MAX_THREADS; i++) {
  784. hx = h->thread_context[i];
  785. if(!hx) continue;
  786. av_freep(&hx->top_borders[1]);
  787. av_freep(&hx->top_borders[0]);
  788. av_freep(&hx->s.obmc_scratchpad);
  789. if (free_rbsp){
  790. av_freep(&hx->rbsp_buffer[1]);
  791. av_freep(&hx->rbsp_buffer[0]);
  792. hx->rbsp_buffer_size[0] = 0;
  793. hx->rbsp_buffer_size[1] = 0;
  794. }
  795. if (i) av_freep(&h->thread_context[i]);
  796. }
  797. }
  798. static void init_dequant8_coeff_table(H264Context *h){
  799. int i,j,q,x;
  800. const int max_qp = 51 + 6*(h->sps.bit_depth_luma-8);
  801. for(i=0; i<6; i++ ){
  802. h->dequant8_coeff[i] = h->dequant8_buffer[i];
  803. for(j=0; j<i; j++){
  804. if(!memcmp(h->pps.scaling_matrix8[j], h->pps.scaling_matrix8[i], 64*sizeof(uint8_t))){
  805. h->dequant8_coeff[i] = h->dequant8_buffer[j];
  806. break;
  807. }
  808. }
  809. if(j<i)
  810. continue;
  811. for(q=0; q<max_qp+1; q++){
  812. int shift = div6[q];
  813. int idx = rem6[q];
  814. for(x=0; x<64; x++)
  815. h->dequant8_coeff[i][q][(x>>3)|((x&7)<<3)] =
  816. ((uint32_t)dequant8_coeff_init[idx][ dequant8_coeff_init_scan[((x>>1)&12) | (x&3)] ] *
  817. h->pps.scaling_matrix8[i][x]) << shift;
  818. }
  819. }
  820. }
  821. static void init_dequant4_coeff_table(H264Context *h){
  822. int i,j,q,x;
  823. const int max_qp = 51 + 6*(h->sps.bit_depth_luma-8);
  824. for(i=0; i<6; i++ ){
  825. h->dequant4_coeff[i] = h->dequant4_buffer[i];
  826. for(j=0; j<i; j++){
  827. if(!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i], 16*sizeof(uint8_t))){
  828. h->dequant4_coeff[i] = h->dequant4_buffer[j];
  829. break;
  830. }
  831. }
  832. if(j<i)
  833. continue;
  834. for(q=0; q<max_qp+1; q++){
  835. int shift = div6[q] + 2;
  836. int idx = rem6[q];
  837. for(x=0; x<16; x++)
  838. h->dequant4_coeff[i][q][(x>>2)|((x<<2)&0xF)] =
  839. ((uint32_t)dequant4_coeff_init[idx][(x&1) + ((x>>2)&1)] *
  840. h->pps.scaling_matrix4[i][x]) << shift;
  841. }
  842. }
  843. }
  844. static void init_dequant_tables(H264Context *h){
  845. int i,x;
  846. init_dequant4_coeff_table(h);
  847. if(h->pps.transform_8x8_mode)
  848. init_dequant8_coeff_table(h);
  849. if(h->sps.transform_bypass){
  850. for(i=0; i<6; i++)
  851. for(x=0; x<16; x++)
  852. h->dequant4_coeff[i][0][x] = 1<<6;
  853. if(h->pps.transform_8x8_mode)
  854. for(i=0; i<6; i++)
  855. for(x=0; x<64; x++)
  856. h->dequant8_coeff[i][0][x] = 1<<6;
  857. }
  858. }
  859. int ff_h264_alloc_tables(H264Context *h){
  860. MpegEncContext * const s = &h->s;
  861. const int big_mb_num= s->mb_stride * (s->mb_height+1);
  862. const int row_mb_num= 2*s->mb_stride*s->avctx->thread_count;
  863. int x,y;
  864. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->intra4x4_pred_mode, row_mb_num * 8 * sizeof(uint8_t), fail)
  865. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->non_zero_count , big_mb_num * 48 * sizeof(uint8_t), fail)
  866. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->slice_table_base , (big_mb_num+s->mb_stride) * sizeof(*h->slice_table_base), fail)
  867. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->cbp_table, big_mb_num * sizeof(uint16_t), fail)
  868. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->chroma_pred_mode_table, big_mb_num * sizeof(uint8_t), fail)
  869. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mvd_table[0], 16*row_mb_num * sizeof(uint8_t), fail);
  870. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mvd_table[1], 16*row_mb_num * sizeof(uint8_t), fail);
  871. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->direct_table, 4*big_mb_num * sizeof(uint8_t) , fail);
  872. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->list_counts, big_mb_num * sizeof(uint8_t), fail)
  873. memset(h->slice_table_base, -1, (big_mb_num+s->mb_stride) * sizeof(*h->slice_table_base));
  874. h->slice_table= h->slice_table_base + s->mb_stride*2 + 1;
  875. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mb2b_xy , big_mb_num * sizeof(uint32_t), fail);
  876. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mb2br_xy , big_mb_num * sizeof(uint32_t), fail);
  877. for(y=0; y<s->mb_height; y++){
  878. for(x=0; x<s->mb_width; x++){
  879. const int mb_xy= x + y*s->mb_stride;
  880. const int b_xy = 4*x + 4*y*h->b_stride;
  881. h->mb2b_xy [mb_xy]= b_xy;
  882. h->mb2br_xy[mb_xy]= 8*(FMO ? mb_xy : (mb_xy % (2*s->mb_stride)));
  883. }
  884. }
  885. s->obmc_scratchpad = NULL;
  886. if(!h->dequant4_coeff[0])
  887. init_dequant_tables(h);
  888. return 0;
  889. fail:
  890. free_tables(h, 1);
  891. return -1;
  892. }
  893. /**
  894. * Mimic alloc_tables(), but for every context thread.
  895. */
  896. static void clone_tables(H264Context *dst, H264Context *src, int i){
  897. MpegEncContext * const s = &src->s;
  898. dst->intra4x4_pred_mode = src->intra4x4_pred_mode + i*8*2*s->mb_stride;
  899. dst->non_zero_count = src->non_zero_count;
  900. dst->slice_table = src->slice_table;
  901. dst->cbp_table = src->cbp_table;
  902. dst->mb2b_xy = src->mb2b_xy;
  903. dst->mb2br_xy = src->mb2br_xy;
  904. dst->chroma_pred_mode_table = src->chroma_pred_mode_table;
  905. dst->mvd_table[0] = src->mvd_table[0] + i*8*2*s->mb_stride;
  906. dst->mvd_table[1] = src->mvd_table[1] + i*8*2*s->mb_stride;
  907. dst->direct_table = src->direct_table;
  908. dst->list_counts = src->list_counts;
  909. dst->s.obmc_scratchpad = NULL;
  910. ff_h264_pred_init(&dst->hpc, src->s.codec_id, src->sps.bit_depth_luma, src->sps.chroma_format_idc);
  911. }
  912. /**
  913. * Init context
  914. * Allocate buffers which are not shared amongst multiple threads.
  915. */
  916. static int context_init(H264Context *h){
  917. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[0], h->s.mb_width * 16*3 * sizeof(uint8_t)*2, fail)
  918. FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[1], h->s.mb_width * 16*3 * sizeof(uint8_t)*2, fail)
  919. h->ref_cache[0][scan8[5 ]+1] = h->ref_cache[0][scan8[7 ]+1] = h->ref_cache[0][scan8[13]+1] =
  920. h->ref_cache[1][scan8[5 ]+1] = h->ref_cache[1][scan8[7 ]+1] = h->ref_cache[1][scan8[13]+1] = PART_NOT_AVAILABLE;
  921. return 0;
  922. fail:
  923. return -1; // free_tables will clean up for us
  924. }
  925. static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size);
  926. static av_cold void common_init(H264Context *h){
  927. MpegEncContext * const s = &h->s;
  928. s->width = s->avctx->width;
  929. s->height = s->avctx->height;
  930. s->codec_id= s->avctx->codec->id;
  931. s->avctx->bits_per_raw_sample = 8;
  932. h->cur_chroma_format_idc = 1;
  933. ff_h264dsp_init(&h->h264dsp,
  934. s->avctx->bits_per_raw_sample, h->cur_chroma_format_idc);
  935. ff_h264_pred_init(&h->hpc, s->codec_id,
  936. s->avctx->bits_per_raw_sample, h->cur_chroma_format_idc);
  937. h->dequant_coeff_pps= -1;
  938. s->unrestricted_mv=1;
  939. s->dsp.dct_bits = 16;
  940. dsputil_init(&s->dsp, s->avctx); // needed so that idct permutation is known early
  941. memset(h->pps.scaling_matrix4, 16, 6*16*sizeof(uint8_t));
  942. memset(h->pps.scaling_matrix8, 16, 2*64*sizeof(uint8_t));
  943. }
  944. int ff_h264_decode_extradata(H264Context *h, const uint8_t *buf, int size)
  945. {
  946. AVCodecContext *avctx = h->s.avctx;
  947. if(!buf || size <= 0)
  948. return -1;
  949. if(buf[0] == 1){
  950. int i, cnt, nalsize;
  951. const unsigned char *p = buf;
  952. h->is_avc = 1;
  953. if(size < 7) {
  954. av_log(avctx, AV_LOG_ERROR, "avcC too short\n");
  955. return -1;
  956. }
  957. /* sps and pps in the avcC always have length coded with 2 bytes,
  958. so put a fake nal_length_size = 2 while parsing them */
  959. h->nal_length_size = 2;
  960. // Decode sps from avcC
  961. cnt = *(p+5) & 0x1f; // Number of sps
  962. p += 6;
  963. for (i = 0; i < cnt; i++) {
  964. nalsize = AV_RB16(p) + 2;
  965. if(nalsize > size - (p-buf))
  966. return -1;
  967. if(decode_nal_units(h, p, nalsize) < 0) {
  968. av_log(avctx, AV_LOG_ERROR, "Decoding sps %d from avcC failed\n", i);
  969. return -1;
  970. }
  971. p += nalsize;
  972. }
  973. // Decode pps from avcC
  974. cnt = *(p++); // Number of pps
  975. for (i = 0; i < cnt; i++) {
  976. nalsize = AV_RB16(p) + 2;
  977. if(nalsize > size - (p-buf))
  978. return -1;
  979. if (decode_nal_units(h, p, nalsize) < 0) {
  980. av_log(avctx, AV_LOG_ERROR, "Decoding pps %d from avcC failed\n", i);
  981. return -1;
  982. }
  983. p += nalsize;
  984. }
  985. // Now store right nal length size, that will be use to parse all other nals
  986. h->nal_length_size = (buf[4] & 0x03) + 1;
  987. } else {
  988. h->is_avc = 0;
  989. if(decode_nal_units(h, buf, size) < 0)
  990. return -1;
  991. }
  992. return 0;
  993. }
  994. av_cold int ff_h264_decode_init(AVCodecContext *avctx){
  995. H264Context *h= avctx->priv_data;
  996. MpegEncContext * const s = &h->s;
  997. int i;
  998. MPV_decode_defaults(s);
  999. s->avctx = avctx;
  1000. common_init(h);
  1001. s->out_format = FMT_H264;
  1002. s->workaround_bugs= avctx->workaround_bugs;
  1003. // set defaults
  1004. // s->decode_mb= ff_h263_decode_mb;
  1005. s->quarter_sample = 1;
  1006. if(!avctx->has_b_frames)
  1007. s->low_delay= 1;
  1008. avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
  1009. ff_h264_decode_init_vlc();
  1010. h->pixel_shift = 0;
  1011. h->sps.bit_depth_luma = avctx->bits_per_raw_sample = 8;
  1012. h->thread_context[0] = h;
  1013. h->outputed_poc = h->next_outputed_poc = INT_MIN;
  1014. for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
  1015. h->last_pocs[i] = INT_MIN;
  1016. h->prev_poc_msb= 1<<16;
  1017. h->prev_frame_num= -1;
  1018. h->x264_build = -1;
  1019. ff_h264_reset_sei(h);
  1020. if(avctx->codec_id == CODEC_ID_H264){
  1021. if(avctx->ticks_per_frame == 1){
  1022. s->avctx->time_base.den *=2;
  1023. }
  1024. avctx->ticks_per_frame = 2;
  1025. }
  1026. if(avctx->extradata_size > 0 && avctx->extradata &&
  1027. ff_h264_decode_extradata(h, avctx->extradata, avctx->extradata_size))
  1028. return -1;
  1029. if(h->sps.bitstream_restriction_flag && s->avctx->has_b_frames < h->sps.num_reorder_frames){
  1030. s->avctx->has_b_frames = h->sps.num_reorder_frames;
  1031. s->low_delay = 0;
  1032. }
  1033. return 0;
  1034. }
  1035. #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b)+(size))))
  1036. static void copy_picture_range(Picture **to, Picture **from, int count, MpegEncContext *new_base, MpegEncContext *old_base)
  1037. {
  1038. int i;
  1039. for (i=0; i<count; i++){
  1040. assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
  1041. IN_RANGE(from[i], old_base->picture, sizeof(Picture) * old_base->picture_count) ||
  1042. !from[i]));
  1043. to[i] = REBASE_PICTURE(from[i], new_base, old_base);
  1044. }
  1045. }
  1046. static void copy_parameter_set(void **to, void **from, int count, int size)
  1047. {
  1048. int i;
  1049. for (i=0; i<count; i++){
  1050. if (to[i] && !from[i]) av_freep(&to[i]);
  1051. else if (from[i] && !to[i]) to[i] = av_malloc(size);
  1052. if (from[i]) memcpy(to[i], from[i], size);
  1053. }
  1054. }
  1055. static int decode_init_thread_copy(AVCodecContext *avctx){
  1056. H264Context *h= avctx->priv_data;
  1057. if (!avctx->internal->is_copy)
  1058. return 0;
  1059. memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
  1060. memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
  1061. return 0;
  1062. }
  1063. #define copy_fields(to, from, start_field, end_field) memcpy(&to->start_field, &from->start_field, (char*)&to->end_field - (char*)&to->start_field)
  1064. static int decode_update_thread_context(AVCodecContext *dst, const AVCodecContext *src){
  1065. H264Context *h= dst->priv_data, *h1= src->priv_data;
  1066. MpegEncContext * const s = &h->s, * const s1 = &h1->s;
  1067. int inited = s->context_initialized, err;
  1068. int i;
  1069. if(dst == src || !s1->context_initialized) return 0;
  1070. err = ff_mpeg_update_thread_context(dst, src);
  1071. if(err) return err;
  1072. //FIXME handle width/height changing
  1073. if(!inited){
  1074. for(i = 0; i < MAX_SPS_COUNT; i++)
  1075. av_freep(h->sps_buffers + i);
  1076. for(i = 0; i < MAX_PPS_COUNT; i++)
  1077. av_freep(h->pps_buffers + i);
  1078. memcpy(&h->s + 1, &h1->s + 1, sizeof(H264Context) - sizeof(MpegEncContext)); //copy all fields after MpegEnc
  1079. memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
  1080. memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
  1081. if (ff_h264_alloc_tables(h) < 0) {
  1082. av_log(dst, AV_LOG_ERROR, "Could not allocate memory for h264\n");
  1083. return AVERROR(ENOMEM);
  1084. }
  1085. context_init(h);
  1086. for(i=0; i<2; i++){
  1087. h->rbsp_buffer[i] = NULL;
  1088. h->rbsp_buffer_size[i] = 0;
  1089. }
  1090. h->thread_context[0] = h;
  1091. // frame_start may not be called for the next thread (if it's decoding a bottom field)
  1092. // so this has to be allocated here
  1093. h->s.obmc_scratchpad = av_malloc(16*6*s->linesize);
  1094. s->dsp.clear_blocks(h->mb);
  1095. s->dsp.clear_blocks(h->mb+(24*16<<h->pixel_shift));
  1096. }
  1097. //extradata/NAL handling
  1098. h->is_avc = h1->is_avc;
  1099. //SPS/PPS
  1100. copy_parameter_set((void**)h->sps_buffers, (void**)h1->sps_buffers, MAX_SPS_COUNT, sizeof(SPS));
  1101. h->sps = h1->sps;
  1102. copy_parameter_set((void**)h->pps_buffers, (void**)h1->pps_buffers, MAX_PPS_COUNT, sizeof(PPS));
  1103. h->pps = h1->pps;
  1104. //Dequantization matrices
  1105. //FIXME these are big - can they be only copied when PPS changes?
  1106. copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
  1107. for(i=0; i<6; i++)
  1108. h->dequant4_coeff[i] = h->dequant4_buffer[0] + (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
  1109. for(i=0; i<6; i++)
  1110. h->dequant8_coeff[i] = h->dequant8_buffer[0] + (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
  1111. h->dequant_coeff_pps = h1->dequant_coeff_pps;
  1112. //POC timing
  1113. copy_fields(h, h1, poc_lsb, redundant_pic_count);
  1114. //reference lists
  1115. copy_fields(h, h1, ref_count, list_count);
  1116. copy_fields(h, h1, ref_list, intra_gb);
  1117. copy_fields(h, h1, short_ref, cabac_init_idc);
  1118. copy_picture_range(h->short_ref, h1->short_ref, 32, s, s1);
  1119. copy_picture_range(h->long_ref, h1->long_ref, 32, s, s1);
  1120. copy_picture_range(h->delayed_pic, h1->delayed_pic, MAX_DELAYED_PIC_COUNT+2, s, s1);
  1121. h->last_slice_type = h1->last_slice_type;
  1122. h->sync = h1->sync;
  1123. if(!s->current_picture_ptr) return 0;
  1124. if(!s->dropable) {
  1125. err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
  1126. h->prev_poc_msb = h->poc_msb;
  1127. h->prev_poc_lsb = h->poc_lsb;
  1128. }
  1129. h->prev_frame_num_offset= h->frame_num_offset;
  1130. h->prev_frame_num = h->frame_num;
  1131. h->outputed_poc = h->next_outputed_poc;
  1132. return err;
  1133. }
  1134. int ff_h264_frame_start(H264Context *h){
  1135. MpegEncContext * const s = &h->s;
  1136. int i;
  1137. const int pixel_shift = h->pixel_shift;
  1138. int thread_count = (s->avctx->active_thread_type & FF_THREAD_SLICE) ? s->avctx->thread_count : 1;
  1139. if(MPV_frame_start(s, s->avctx) < 0)
  1140. return -1;
  1141. ff_er_frame_start(s);
  1142. /*
  1143. * MPV_frame_start uses pict_type to derive key_frame.
  1144. * This is incorrect for H.264; IDR markings must be used.
  1145. * Zero here; IDR markings per slice in frame or fields are ORed in later.
  1146. * See decode_nal_units().
  1147. */
  1148. s->current_picture_ptr->f.key_frame = 0;
  1149. s->current_picture_ptr->mmco_reset= 0;
  1150. assert(s->linesize && s->uvlinesize);
  1151. for(i=0; i<16; i++){
  1152. h->block_offset[i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 4*s->linesize*((scan8[i] - scan8[0])>>3);
  1153. h->block_offset[48+i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 8*s->linesize*((scan8[i] - scan8[0])>>3);
  1154. }
  1155. for(i=0; i<16; i++){
  1156. h->block_offset[16+i]=
  1157. h->block_offset[32+i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 4*s->uvlinesize*((scan8[i] - scan8[0])>>3);
  1158. h->block_offset[48+16+i]=
  1159. h->block_offset[48+32+i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 8*s->uvlinesize*((scan8[i] - scan8[0])>>3);
  1160. }
  1161. /* can't be in alloc_tables because linesize isn't known there.
  1162. * FIXME: redo bipred weight to not require extra buffer? */
  1163. for(i = 0; i < thread_count; i++)
  1164. if(h->thread_context[i] && !h->thread_context[i]->s.obmc_scratchpad)
  1165. h->thread_context[i]->s.obmc_scratchpad = av_malloc(16*6*s->linesize);
  1166. /* some macroblocks can be accessed before they're available in case of lost slices, mbaff or threading*/
  1167. memset(h->slice_table, -1, (s->mb_height*s->mb_stride-1) * sizeof(*h->slice_table));
  1168. // s->decode = (s->flags & CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.f.reference /*|| h->contains_intra*/ || 1;
  1169. // We mark the current picture as non-reference after allocating it, so
  1170. // that if we break out due to an error it can be released automatically
  1171. // in the next MPV_frame_start().
  1172. // SVQ3 as well as most other codecs have only last/next/current and thus
  1173. // get released even with set reference, besides SVQ3 and others do not
  1174. // mark frames as reference later "naturally".
  1175. if(s->codec_id != CODEC_ID_SVQ3)
  1176. s->current_picture_ptr->f.reference = 0;
  1177. s->current_picture_ptr->field_poc[0]=
  1178. s->current_picture_ptr->field_poc[1]= INT_MAX;
  1179. h->next_output_pic = NULL;
  1180. assert(s->current_picture_ptr->long_ref==0);
  1181. return 0;
  1182. }
  1183. /**
  1184. * Run setup operations that must be run after slice header decoding.
  1185. * This includes finding the next displayed frame.
  1186. *
  1187. * @param h h264 master context
  1188. * @param setup_finished enough NALs have been read that we can call
  1189. * ff_thread_finish_setup()
  1190. */
  1191. static void decode_postinit(H264Context *h, int setup_finished){
  1192. MpegEncContext * const s = &h->s;
  1193. Picture *out = s->current_picture_ptr;
  1194. Picture *cur = s->current_picture_ptr;
  1195. int i, pics, out_of_order, out_idx;
  1196. int invalid = 0, cnt = 0;
  1197. s->current_picture_ptr->f.qscale_type = FF_QSCALE_TYPE_H264;
  1198. s->current_picture_ptr->f.pict_type = s->pict_type;
  1199. if (h->next_output_pic) return;
  1200. if (cur->field_poc[0]==INT_MAX || cur->field_poc[1]==INT_MAX) {
  1201. //FIXME: if we have two PAFF fields in one packet, we can't start the next thread here.
  1202. //If we have one field per packet, we can. The check in decode_nal_units() is not good enough
  1203. //to find this yet, so we assume the worst for now.
  1204. //if (setup_finished)
  1205. // ff_thread_finish_setup(s->avctx);
  1206. return;
  1207. }
  1208. cur->f.interlaced_frame = 0;
  1209. cur->f.repeat_pict = 0;
  1210. /* Signal interlacing information externally. */
  1211. /* Prioritize picture timing SEI information over used decoding process if it exists. */
  1212. if(h->sps.pic_struct_present_flag){
  1213. switch (h->sei_pic_struct)
  1214. {
  1215. case SEI_PIC_STRUCT_FRAME:
  1216. break;
  1217. case SEI_PIC_STRUCT_TOP_FIELD:
  1218. case SEI_PIC_STRUCT_BOTTOM_FIELD:
  1219. cur->f.interlaced_frame = 1;
  1220. break;
  1221. case SEI_PIC_STRUCT_TOP_BOTTOM:
  1222. case SEI_PIC_STRUCT_BOTTOM_TOP:
  1223. if (FIELD_OR_MBAFF_PICTURE)
  1224. cur->f.interlaced_frame = 1;
  1225. else
  1226. // try to flag soft telecine progressive
  1227. cur->f.interlaced_frame = h->prev_interlaced_frame;
  1228. break;
  1229. case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
  1230. case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
  1231. // Signal the possibility of telecined film externally (pic_struct 5,6)
  1232. // From these hints, let the applications decide if they apply deinterlacing.
  1233. cur->f.repeat_pict = 1;
  1234. break;
  1235. case SEI_PIC_STRUCT_FRAME_DOUBLING:
  1236. // Force progressive here, as doubling interlaced frame is a bad idea.
  1237. cur->f.repeat_pict = 2;
  1238. break;
  1239. case SEI_PIC_STRUCT_FRAME_TRIPLING:
  1240. cur->f.repeat_pict = 4;
  1241. break;
  1242. }
  1243. if ((h->sei_ct_type & 3) && h->sei_pic_struct <= SEI_PIC_STRUCT_BOTTOM_TOP)
  1244. cur->f.interlaced_frame = (h->sei_ct_type & (1 << 1)) != 0;
  1245. }else{
  1246. /* Derive interlacing flag from used decoding process. */
  1247. cur->f.interlaced_frame = FIELD_OR_MBAFF_PICTURE;
  1248. }
  1249. h->prev_interlaced_frame = cur->f.interlaced_frame;
  1250. if (cur->field_poc[0] != cur->field_poc[1]){
  1251. /* Derive top_field_first from field pocs. */
  1252. cur->f.top_field_first = cur->field_poc[0] < cur->field_poc[1];
  1253. }else{
  1254. if (cur->f.interlaced_frame || h->sps.pic_struct_present_flag) {
  1255. /* Use picture timing SEI information. Even if it is a information of a past frame, better than nothing. */
  1256. if(h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM
  1257. || h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
  1258. cur->f.top_field_first = 1;
  1259. else
  1260. cur->f.top_field_first = 0;
  1261. }else{
  1262. /* Most likely progressive */
  1263. cur->f.top_field_first = 0;
  1264. }
  1265. }
  1266. //FIXME do something with unavailable reference frames
  1267. /* Sort B-frames into display order */
  1268. if(h->sps.bitstream_restriction_flag
  1269. && s->avctx->has_b_frames < h->sps.num_reorder_frames){
  1270. s->avctx->has_b_frames = h->sps.num_reorder_frames;
  1271. s->low_delay = 0;
  1272. }
  1273. if( s->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT
  1274. && !h->sps.bitstream_restriction_flag){
  1275. s->avctx->has_b_frames = MAX_DELAYED_PIC_COUNT - 1;
  1276. s->low_delay= 0;
  1277. }
  1278. pics = 0;
  1279. while(h->delayed_pic[pics]) pics++;
  1280. av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
  1281. h->delayed_pic[pics++] = cur;
  1282. if (cur->f.reference == 0)
  1283. cur->f.reference = DELAYED_PIC_REF;
  1284. /* Frame reordering. This code takes pictures from coding order and sorts
  1285. * them by their incremental POC value into display order. It supports POC
  1286. * gaps, MMCO reset codes and random resets.
  1287. * A "display group" can start either with a IDR frame (f.key_frame = 1),
  1288. * and/or can be closed down with a MMCO reset code. In sequences where
  1289. * there is no delay, we can't detect that (since the frame was already
  1290. * output to the user), so we also set h->mmco_reset to detect the MMCO
  1291. * reset code.
  1292. * FIXME: if we detect insufficient delays (as per s->avctx->has_b_frames),
  1293. * we increase the delay between input and output. All frames affected by
  1294. * the lag (e.g. those that should have been output before another frame
  1295. * that we already returned to the user) will be dropped. This is a bug
  1296. * that we will fix later. */
  1297. for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++) {
  1298. cnt += out->poc < h->last_pocs[i];
  1299. invalid += out->poc == INT_MIN;
  1300. }
  1301. if (!h->mmco_reset && !cur->f.key_frame && cnt + invalid == MAX_DELAYED_PIC_COUNT && cnt > 0) {
  1302. h->mmco_reset = 2;
  1303. if (pics > 1)
  1304. h->delayed_pic[pics - 2]->mmco_reset = 2;
  1305. }
  1306. if (h->mmco_reset || cur->f.key_frame) {
  1307. for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
  1308. h->last_pocs[i] = INT_MIN;
  1309. cnt = 0;
  1310. invalid = MAX_DELAYED_PIC_COUNT;
  1311. }
  1312. out = h->delayed_pic[0];
  1313. out_idx = 0;
  1314. for (i = 1; i < MAX_DELAYED_PIC_COUNT && h->delayed_pic[i] &&
  1315. !h->delayed_pic[i-1]->mmco_reset && !h->delayed_pic[i]->f.key_frame; i++)
  1316. {
  1317. if(h->delayed_pic[i]->poc < out->poc){
  1318. out = h->delayed_pic[i];
  1319. out_idx = i;
  1320. }
  1321. }
  1322. if (s->avctx->has_b_frames == 0 && (h->delayed_pic[0]->f.key_frame || h->mmco_reset))
  1323. h->next_outputed_poc = INT_MIN;
  1324. out_of_order = !out->f.key_frame && !h->mmco_reset && (out->poc < h->next_outputed_poc);
  1325. if(h->sps.bitstream_restriction_flag && s->avctx->has_b_frames >= h->sps.num_reorder_frames)
  1326. { }
  1327. else if (out_of_order && pics-1 == s->avctx->has_b_frames &&
  1328. s->avctx->has_b_frames < MAX_DELAYED_PIC_COUNT) {
  1329. if (invalid + cnt < MAX_DELAYED_PIC_COUNT) {
  1330. if(cnt > s->avctx->has_b_frames)
  1331. av_log(s->avctx, AV_LOG_WARNING, "Increasing reorder buffer to %d\n", cnt);
  1332. s->avctx->has_b_frames = FFMAX(s->avctx->has_b_frames, cnt);
  1333. }
  1334. s->low_delay = 0;
  1335. } else if (s->low_delay &&
  1336. ((h->next_outputed_poc != INT_MIN && out->poc > h->next_outputed_poc + 2) ||
  1337. cur->f.pict_type == AV_PICTURE_TYPE_B)) {
  1338. s->low_delay = 0;
  1339. s->avctx->has_b_frames++;
  1340. }
  1341. if(pics > s->avctx->has_b_frames){
  1342. out->f.reference &= ~DELAYED_PIC_REF;
  1343. out->owner2 = s; // for frame threading, the owner must be the second field's thread
  1344. // or else the first thread can release the picture and reuse it unsafely
  1345. for(i=out_idx; h->delayed_pic[i]; i++)
  1346. h->delayed_pic[i] = h->delayed_pic[i+1];
  1347. }
  1348. memmove(h->last_pocs, &h->last_pocs[1], sizeof(*h->last_pocs) * (MAX_DELAYED_PIC_COUNT - 1));
  1349. h->last_pocs[MAX_DELAYED_PIC_COUNT - 1] = cur->poc;
  1350. if(!out_of_order && pics > s->avctx->has_b_frames){
  1351. h->next_output_pic = out;
  1352. if (out->mmco_reset) {
  1353. if (out_idx > 0) {
  1354. h->next_outputed_poc = out->poc;
  1355. h->delayed_pic[out_idx - 1]->mmco_reset = out->mmco_reset;
  1356. } else {
  1357. h->next_outputed_poc = INT_MIN;
  1358. }
  1359. } else {
  1360. h->next_outputed_poc = out->poc;
  1361. }
  1362. h->mmco_reset = 0;
  1363. }else{
  1364. av_log(s->avctx, AV_LOG_DEBUG, "no picture\n");
  1365. }
  1366. if (h->next_output_pic && h->next_output_pic->sync) {
  1367. h->sync |= 2;
  1368. }
  1369. if (setup_finished)
  1370. ff_thread_finish_setup(s->avctx);
  1371. }
  1372. static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
  1373. uint8_t *src_cb, uint8_t *src_cr,
  1374. int linesize, int uvlinesize, int simple)
  1375. {
  1376. MpegEncContext * const s = &h->s;
  1377. uint8_t *top_border;
  1378. int top_idx = 1;
  1379. const int pixel_shift = h->pixel_shift;
  1380. int chroma444 = CHROMA444;
  1381. int chroma422 = CHROMA422;
  1382. src_y -= linesize;
  1383. src_cb -= uvlinesize;
  1384. src_cr -= uvlinesize;
  1385. if(!simple && FRAME_MBAFF){
  1386. if(s->mb_y&1){
  1387. if(!MB_MBAFF){
  1388. top_border = h->top_borders[0][s->mb_x];
  1389. AV_COPY128(top_border, src_y + 15*linesize);
  1390. if (pixel_shift)
  1391. AV_COPY128(top_border+16, src_y+15*linesize+16);
  1392. if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  1393. if(chroma444){
  1394. if (pixel_shift){
  1395. AV_COPY128(top_border+32, src_cb + 15*uvlinesize);
  1396. AV_COPY128(top_border+48, src_cb + 15*uvlinesize+16);
  1397. AV_COPY128(top_border+64, src_cr + 15*uvlinesize);
  1398. AV_COPY128(top_border+80, src_cr + 15*uvlinesize+16);
  1399. } else {
  1400. AV_COPY128(top_border+16, src_cb + 15*uvlinesize);
  1401. AV_COPY128(top_border+32, src_cr + 15*uvlinesize);
  1402. }
  1403. } else if(chroma422){
  1404. if (pixel_shift) {
  1405. AV_COPY128(top_border+32, src_cb + 15*uvlinesize);
  1406. AV_COPY128(top_border+48, src_cr + 15*uvlinesize);
  1407. } else {
  1408. AV_COPY64(top_border+16, src_cb + 15*uvlinesize);
  1409. AV_COPY64(top_border+24, src_cr + 15*uvlinesize);
  1410. }
  1411. } else {
  1412. if (pixel_shift) {
  1413. AV_COPY128(top_border+32, src_cb+7*uvlinesize);
  1414. AV_COPY128(top_border+48, src_cr+7*uvlinesize);
  1415. } else {
  1416. AV_COPY64(top_border+16, src_cb+7*uvlinesize);
  1417. AV_COPY64(top_border+24, src_cr+7*uvlinesize);
  1418. }
  1419. }
  1420. }
  1421. }
  1422. }else if(MB_MBAFF){
  1423. top_idx = 0;
  1424. }else
  1425. return;
  1426. }
  1427. top_border = h->top_borders[top_idx][s->mb_x];
  1428. // There are two lines saved, the line above the the top macroblock of a pair,
  1429. // and the line above the bottom macroblock
  1430. AV_COPY128(top_border, src_y + 16*linesize);
  1431. if (pixel_shift)
  1432. AV_COPY128(top_border+16, src_y+16*linesize+16);
  1433. if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  1434. if(chroma444){
  1435. if (pixel_shift){
  1436. AV_COPY128(top_border+32, src_cb + 16*linesize);
  1437. AV_COPY128(top_border+48, src_cb + 16*linesize+16);
  1438. AV_COPY128(top_border+64, src_cr + 16*linesize);
  1439. AV_COPY128(top_border+80, src_cr + 16*linesize+16);
  1440. } else {
  1441. AV_COPY128(top_border+16, src_cb + 16*linesize);
  1442. AV_COPY128(top_border+32, src_cr + 16*linesize);
  1443. }
  1444. } else if(chroma422) {
  1445. if (pixel_shift) {
  1446. AV_COPY128(top_border+32, src_cb+16*uvlinesize);
  1447. AV_COPY128(top_border+48, src_cr+16*uvlinesize);
  1448. } else {
  1449. AV_COPY64(top_border+16, src_cb+16*uvlinesize);
  1450. AV_COPY64(top_border+24, src_cr+16*uvlinesize);
  1451. }
  1452. } else {
  1453. if (pixel_shift) {
  1454. AV_COPY128(top_border+32, src_cb+8*uvlinesize);
  1455. AV_COPY128(top_border+48, src_cr+8*uvlinesize);
  1456. } else {
  1457. AV_COPY64(top_border+16, src_cb+8*uvlinesize);
  1458. AV_COPY64(top_border+24, src_cr+8*uvlinesize);
  1459. }
  1460. }
  1461. }
  1462. }
  1463. static av_always_inline void xchg_mb_border(H264Context *h, uint8_t *src_y,
  1464. uint8_t *src_cb, uint8_t *src_cr,
  1465. int linesize, int uvlinesize,
  1466. int xchg, int chroma444,
  1467. int simple, int pixel_shift){
  1468. MpegEncContext * const s = &h->s;
  1469. int deblock_topleft;
  1470. int deblock_top;
  1471. int top_idx = 1;
  1472. uint8_t *top_border_m1;
  1473. uint8_t *top_border;
  1474. if(!simple && FRAME_MBAFF){
  1475. if(s->mb_y&1){
  1476. if(!MB_MBAFF)
  1477. return;
  1478. }else{
  1479. top_idx = MB_MBAFF ? 0 : 1;
  1480. }
  1481. }
  1482. if(h->deblocking_filter == 2) {
  1483. deblock_topleft = h->slice_table[h->mb_xy - 1 - s->mb_stride] == h->slice_num;
  1484. deblock_top = h->top_type;
  1485. } else {
  1486. deblock_topleft = (s->mb_x > 0);
  1487. deblock_top = (s->mb_y > !!MB_FIELD);
  1488. }
  1489. src_y -= linesize + 1 + pixel_shift;
  1490. src_cb -= uvlinesize + 1 + pixel_shift;
  1491. src_cr -= uvlinesize + 1 + pixel_shift;
  1492. top_border_m1 = h->top_borders[top_idx][s->mb_x-1];
  1493. top_border = h->top_borders[top_idx][s->mb_x];
  1494. #define XCHG(a,b,xchg)\
  1495. if (pixel_shift) {\
  1496. if (xchg) {\
  1497. AV_SWAP64(b+0,a+0);\
  1498. AV_SWAP64(b+8,a+8);\
  1499. } else {\
  1500. AV_COPY128(b,a); \
  1501. }\
  1502. } else \
  1503. if (xchg) AV_SWAP64(b,a);\
  1504. else AV_COPY64(b,a);
  1505. if(deblock_top){
  1506. if(deblock_topleft){
  1507. XCHG(top_border_m1 + (8 << pixel_shift), src_y - (7 << pixel_shift), 1);
  1508. }
  1509. XCHG(top_border + (0 << pixel_shift), src_y + (1 << pixel_shift), xchg);
  1510. XCHG(top_border + (8 << pixel_shift), src_y + (9 << pixel_shift), 1);
  1511. if(s->mb_x+1 < s->mb_width){
  1512. XCHG(h->top_borders[top_idx][s->mb_x+1], src_y + (17 << pixel_shift), 1);
  1513. }
  1514. }
  1515. if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  1516. if(chroma444){
  1517. if(deblock_topleft){
  1518. XCHG(top_border_m1 + (24 << pixel_shift), src_cb - (7 << pixel_shift), 1);
  1519. XCHG(top_border_m1 + (40 << pixel_shift), src_cr - (7 << pixel_shift), 1);
  1520. }
  1521. XCHG(top_border + (16 << pixel_shift), src_cb + (1 << pixel_shift), xchg);
  1522. XCHG(top_border + (24 << pixel_shift), src_cb + (9 << pixel_shift), 1);
  1523. XCHG(top_border + (32 << pixel_shift), src_cr + (1 << pixel_shift), xchg);
  1524. XCHG(top_border + (40 << pixel_shift), src_cr + (9 << pixel_shift), 1);
  1525. if(s->mb_x+1 < s->mb_width){
  1526. XCHG(h->top_borders[top_idx][s->mb_x+1] + (16 << pixel_shift), src_cb + (17 << pixel_shift), 1);
  1527. XCHG(h->top_borders[top_idx][s->mb_x+1] + (32 << pixel_shift), src_cr + (17 << pixel_shift), 1);
  1528. }
  1529. } else {
  1530. if(deblock_top){
  1531. if(deblock_topleft){
  1532. XCHG(top_border_m1 + (16 << pixel_shift), src_cb - (7 << pixel_shift), 1);
  1533. XCHG(top_border_m1 + (24 << pixel_shift), src_cr - (7 << pixel_shift), 1);
  1534. }
  1535. XCHG(top_border + (16 << pixel_shift), src_cb+1+pixel_shift, 1);
  1536. XCHG(top_border + (24 << pixel_shift), src_cr+1+pixel_shift, 1);
  1537. }
  1538. }
  1539. }
  1540. }
  1541. static av_always_inline int dctcoef_get(DCTELEM *mb, int high_bit_depth, int index) {
  1542. if (high_bit_depth) {
  1543. return AV_RN32A(((int32_t*)mb) + index);
  1544. } else
  1545. return AV_RN16A(mb + index);
  1546. }
  1547. static av_always_inline void dctcoef_set(DCTELEM *mb, int high_bit_depth, int index, int value) {
  1548. if (high_bit_depth) {
  1549. AV_WN32A(((int32_t*)mb) + index, value);
  1550. } else
  1551. AV_WN16A(mb + index, value);
  1552. }
  1553. static av_always_inline void hl_decode_mb_predict_luma(H264Context *h, int mb_type, int is_h264, int simple, int transform_bypass,
  1554. int pixel_shift, int *block_offset, int linesize, uint8_t *dest_y, int p)
  1555. {
  1556. MpegEncContext * const s = &h->s;
  1557. void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
  1558. void (*idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
  1559. int i;
  1560. int qscale = p == 0 ? s->qscale : h->chroma_qp[p-1];
  1561. block_offset += 16*p;
  1562. if(IS_INTRA4x4(mb_type)){
  1563. if(simple || !s->encoding){
  1564. if(IS_8x8DCT(mb_type)){
  1565. if(transform_bypass){
  1566. idct_dc_add =
  1567. idct_add = s->dsp.add_pixels8;
  1568. }else{
  1569. idct_dc_add = h->h264dsp.h264_idct8_dc_add;
  1570. idct_add = h->h264dsp.h264_idct8_add;
  1571. }
  1572. for(i=0; i<16; i+=4){
  1573. uint8_t * const ptr= dest_y + block_offset[i];
  1574. const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ];
  1575. if(transform_bypass && h->sps.profile_idc==244 && dir<=1){
  1576. h->hpc.pred8x8l_add[dir](ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
  1577. }else{
  1578. const int nnz = h->non_zero_count_cache[ scan8[i+p*16] ];
  1579. h->hpc.pred8x8l[ dir ](ptr, (h->topleft_samples_available<<i)&0x8000,
  1580. (h->topright_samples_available<<i)&0x4000, linesize);
  1581. if(nnz){
  1582. if(nnz == 1 && dctcoef_get(h->mb, pixel_shift, i*16+p*256))
  1583. idct_dc_add(ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
  1584. else
  1585. idct_add (ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
  1586. }
  1587. }
  1588. }
  1589. }else{
  1590. if(transform_bypass){
  1591. idct_dc_add =
  1592. idct_add = s->dsp.add_pixels4;
  1593. }else{
  1594. idct_dc_add = h->h264dsp.h264_idct_dc_add;
  1595. idct_add = h->h264dsp.h264_idct_add;
  1596. }
  1597. for(i=0; i<16; i++){
  1598. uint8_t * const ptr= dest_y + block_offset[i];
  1599. const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ];
  1600. if(transform_bypass && h->sps.profile_idc==244 && dir<=1){
  1601. h->hpc.pred4x4_add[dir](ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
  1602. }else{
  1603. uint8_t *topright;
  1604. int nnz, tr;
  1605. uint64_t tr_high;
  1606. if(dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED){
  1607. const int topright_avail= (h->topright_samples_available<<i)&0x8000;
  1608. assert(s->mb_y || linesize <= block_offset[i]);
  1609. if(!topright_avail){
  1610. if (pixel_shift) {
  1611. tr_high= ((uint16_t*)ptr)[3 - linesize/2]*0x0001000100010001ULL;
  1612. topright= (uint8_t*) &tr_high;
  1613. } else {
  1614. tr= ptr[3 - linesize]*0x01010101u;
  1615. topright= (uint8_t*) &tr;
  1616. }
  1617. }else
  1618. topright= ptr + (4 << pixel_shift) - linesize;
  1619. }else
  1620. topright= NULL;
  1621. h->hpc.pred4x4[ dir ](ptr, topright, linesize);
  1622. nnz = h->non_zero_count_cache[ scan8[i+p*16] ];
  1623. if(nnz){
  1624. if(is_h264){
  1625. if(nnz == 1 && dctcoef_get(h->mb, pixel_shift, i*16+p*256))
  1626. idct_dc_add(ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
  1627. else
  1628. idct_add (ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
  1629. }else
  1630. ff_svq3_add_idct_c(ptr, h->mb + i*16+p*256, linesize, qscale, 0);
  1631. }
  1632. }
  1633. }
  1634. }
  1635. }
  1636. }else{
  1637. h->hpc.pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize);
  1638. if(is_h264){
  1639. if(h->non_zero_count_cache[ scan8[LUMA_DC_BLOCK_INDEX+p] ]){
  1640. if(!transform_bypass)
  1641. h->h264dsp.h264_luma_dc_dequant_idct(h->mb+(p*256 << pixel_shift), h->mb_luma_dc[p], h->dequant4_coeff[p][qscale][0]);
  1642. else{
  1643. static const uint8_t dc_mapping[16] = { 0*16, 1*16, 4*16, 5*16, 2*16, 3*16, 6*16, 7*16,
  1644. 8*16, 9*16,12*16,13*16,10*16,11*16,14*16,15*16};
  1645. for(i = 0; i < 16; i++)
  1646. dctcoef_set(h->mb+(p*256 << pixel_shift), pixel_shift, dc_mapping[i], dctcoef_get(h->mb_luma_dc[p], pixel_shift, i));
  1647. }
  1648. }
  1649. }else
  1650. ff_svq3_luma_dc_dequant_idct_c(h->mb+p*256, h->mb_luma_dc[p], qscale);
  1651. }
  1652. }
  1653. static av_always_inline void hl_decode_mb_idct_luma(H264Context *h, int mb_type, int is_h264, int simple, int transform_bypass,
  1654. int pixel_shift, int *block_offset, int linesize, uint8_t *dest_y, int p)
  1655. {
  1656. MpegEncContext * const s = &h->s;
  1657. void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
  1658. int i;
  1659. block_offset += 16*p;
  1660. if(!IS_INTRA4x4(mb_type)){
  1661. if(is_h264){
  1662. if(IS_INTRA16x16(mb_type)){
  1663. if(transform_bypass){
  1664. if(h->sps.profile_idc==244 && (h->intra16x16_pred_mode==VERT_PRED8x8 || h->intra16x16_pred_mode==HOR_PRED8x8)){
  1665. h->hpc.pred16x16_add[h->intra16x16_pred_mode](dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize);
  1666. }else{
  1667. for(i=0; i<16; i++){
  1668. if(h->non_zero_count_cache[ scan8[i+p*16] ] || dctcoef_get(h->mb, pixel_shift, i*16+p*256))
  1669. s->dsp.add_pixels4(dest_y + block_offset[i], h->mb + (i*16+p*256 << pixel_shift), linesize);
  1670. }
  1671. }
  1672. }else{
  1673. h->h264dsp.h264_idct_add16intra(dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize, h->non_zero_count_cache+p*5*8);
  1674. }
  1675. }else if(h->cbp&15){
  1676. if(transform_bypass){
  1677. const int di = IS_8x8DCT(mb_type) ? 4 : 1;
  1678. idct_add= IS_8x8DCT(mb_type) ? s->dsp.add_pixels8 : s->dsp.add_pixels4;
  1679. for(i=0; i<16; i+=di){
  1680. if(h->non_zero_count_cache[ scan8[i+p*16] ]){
  1681. idct_add(dest_y + block_offset[i], h->mb + (i*16+p*256 << pixel_shift), linesize);
  1682. }
  1683. }
  1684. }else{
  1685. if(IS_8x8DCT(mb_type)){
  1686. h->h264dsp.h264_idct8_add4(dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize, h->non_zero_count_cache+p*5*8);
  1687. }else{
  1688. h->h264dsp.h264_idct_add16(dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize, h->non_zero_count_cache+p*5*8);
  1689. }
  1690. }
  1691. }
  1692. }else{
  1693. for(i=0; i<16; i++){
  1694. if(h->non_zero_count_cache[ scan8[i+p*16] ] || h->mb[i*16+p*256]){ //FIXME benchmark weird rule, & below
  1695. uint8_t * const ptr= dest_y + block_offset[i];
  1696. ff_svq3_add_idct_c(ptr, h->mb + i*16 + p*256, linesize, s->qscale, IS_INTRA(mb_type) ? 1 : 0);
  1697. }
  1698. }
  1699. }
  1700. }
  1701. }
  1702. static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple, int pixel_shift)
  1703. {
  1704. MpegEncContext * const s = &h->s;
  1705. const int mb_x= s->mb_x;
  1706. const int mb_y= s->mb_y;
  1707. const int mb_xy= h->mb_xy;
  1708. const int mb_type = s->current_picture.f.mb_type[mb_xy];
  1709. uint8_t *dest_y, *dest_cb, *dest_cr;
  1710. int linesize, uvlinesize /*dct_offset*/;
  1711. int i, j;
  1712. int *block_offset = &h->block_offset[0];
  1713. const int transform_bypass = !simple && (s->qscale == 0 && h->sps.transform_bypass);
  1714. /* is_h264 should always be true if SVQ3 is disabled. */
  1715. const int is_h264 = !CONFIG_SVQ3_DECODER || simple || s->codec_id == CODEC_ID_H264;
  1716. void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
  1717. const int block_h = 16 >> s->chroma_y_shift;
  1718. const int chroma422 = CHROMA422;
  1719. dest_y = s->current_picture.f.data[0] + ((mb_x << pixel_shift) + mb_y * s->linesize ) * 16;
  1720. dest_cb = s->current_picture.f.data[1] + (mb_x << pixel_shift)*8 + mb_y * s->uvlinesize * block_h;
  1721. dest_cr = s->current_picture.f.data[2] + (mb_x << pixel_shift)*8 + mb_y * s->uvlinesize * block_h;
  1722. s->dsp.prefetch(dest_y + (s->mb_x&3)*4*s->linesize + (64 << pixel_shift), s->linesize, 4);
  1723. s->dsp.prefetch(dest_cb + (s->mb_x&7)*s->uvlinesize + (64 << pixel_shift), dest_cr - dest_cb, 2);
  1724. h->list_counts[mb_xy]= h->list_count;
  1725. if (!simple && MB_FIELD) {
  1726. linesize = h->mb_linesize = s->linesize * 2;
  1727. uvlinesize = h->mb_uvlinesize = s->uvlinesize * 2;
  1728. block_offset = &h->block_offset[48];
  1729. if(mb_y&1){ //FIXME move out of this function?
  1730. dest_y -= s->linesize*15;
  1731. dest_cb-= s->uvlinesize * (block_h - 1);
  1732. dest_cr-= s->uvlinesize * (block_h - 1);
  1733. }
  1734. if(FRAME_MBAFF) {
  1735. int list;
  1736. for(list=0; list<h->list_count; list++){
  1737. if(!USES_LIST(mb_type, list))
  1738. continue;
  1739. if(IS_16X16(mb_type)){
  1740. int8_t *ref = &h->ref_cache[list][scan8[0]];
  1741. fill_rectangle(ref, 4, 4, 8, (16+*ref)^(s->mb_y&1), 1);
  1742. }else{
  1743. for(i=0; i<16; i+=4){
  1744. int ref = h->ref_cache[list][scan8[i]];
  1745. if(ref >= 0)
  1746. fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1);
  1747. }
  1748. }
  1749. }
  1750. }
  1751. } else {
  1752. linesize = h->mb_linesize = s->linesize;
  1753. uvlinesize = h->mb_uvlinesize = s->uvlinesize;
  1754. // dct_offset = s->linesize * 16;
  1755. }
  1756. if (!simple && IS_INTRA_PCM(mb_type)) {
  1757. const int bit_depth = h->sps.bit_depth_luma;
  1758. if (pixel_shift) {
  1759. int j;
  1760. GetBitContext gb;
  1761. init_get_bits(&gb, (uint8_t*)h->mb, 384*bit_depth);
  1762. for (i = 0; i < 16; i++) {
  1763. uint16_t *tmp_y = (uint16_t*)(dest_y + i*linesize);
  1764. for (j = 0; j < 16; j++)
  1765. tmp_y[j] = get_bits(&gb, bit_depth);
  1766. }
  1767. if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  1768. if (!h->sps.chroma_format_idc) {
  1769. for (i = 0; i < block_h; i++) {
  1770. uint16_t *tmp_cb = (uint16_t*)(dest_cb + i*uvlinesize);
  1771. uint16_t *tmp_cr = (uint16_t*)(dest_cr + i*uvlinesize);
  1772. for (j = 0; j < 8; j++) {
  1773. tmp_cb[j] = tmp_cr[j] = 1 << (bit_depth - 1);
  1774. }
  1775. }
  1776. } else {
  1777. for (i = 0; i < block_h; i++) {
  1778. uint16_t *tmp_cb = (uint16_t*)(dest_cb + i*uvlinesize);
  1779. for (j = 0; j < 8; j++)
  1780. tmp_cb[j] = get_bits(&gb, bit_depth);
  1781. }
  1782. for (i = 0; i < block_h; i++) {
  1783. uint16_t *tmp_cr = (uint16_t*)(dest_cr + i*uvlinesize);
  1784. for (j = 0; j < 8; j++)
  1785. tmp_cr[j] = get_bits(&gb, bit_depth);
  1786. }
  1787. }
  1788. }
  1789. } else {
  1790. for (i=0; i<16; i++) {
  1791. memcpy(dest_y + i* linesize, h->mb + i*8, 16);
  1792. }
  1793. if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  1794. if (!h->sps.chroma_format_idc) {
  1795. for (i=0; i<8; i++) {
  1796. memset(dest_cb + i*uvlinesize, 1 << (bit_depth - 1), 8);
  1797. memset(dest_cr + i*uvlinesize, 1 << (bit_depth - 1), 8);
  1798. }
  1799. } else {
  1800. for (i=0; i<block_h; i++) {
  1801. memcpy(dest_cb + i*uvlinesize, h->mb + 128 + i*4, 8);
  1802. memcpy(dest_cr + i*uvlinesize, h->mb + 160 + i*4, 8);
  1803. }
  1804. }
  1805. }
  1806. }
  1807. } else {
  1808. if(IS_INTRA(mb_type)){
  1809. if(h->deblocking_filter)
  1810. xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1, 0, simple, pixel_shift);
  1811. if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  1812. h->hpc.pred8x8[ h->chroma_pred_mode ](dest_cb, uvlinesize);
  1813. h->hpc.pred8x8[ h->chroma_pred_mode ](dest_cr, uvlinesize);
  1814. }
  1815. hl_decode_mb_predict_luma(h, mb_type, is_h264, simple, transform_bypass, pixel_shift, block_offset, linesize, dest_y, 0);
  1816. if(h->deblocking_filter)
  1817. xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0, 0, simple, pixel_shift);
  1818. }else if(is_h264){
  1819. if (chroma422) {
  1820. hl_motion_422(h, dest_y, dest_cb, dest_cr,
  1821. s->me.qpel_put, s->dsp.put_h264_chroma_pixels_tab,
  1822. s->me.qpel_avg, s->dsp.avg_h264_chroma_pixels_tab,
  1823. h->h264dsp.weight_h264_pixels_tab,
  1824. h->h264dsp.biweight_h264_pixels_tab,
  1825. pixel_shift);
  1826. } else {
  1827. hl_motion_420(h, dest_y, dest_cb, dest_cr,
  1828. s->me.qpel_put, s->dsp.put_h264_chroma_pixels_tab,
  1829. s->me.qpel_avg, s->dsp.avg_h264_chroma_pixels_tab,
  1830. h->h264dsp.weight_h264_pixels_tab,
  1831. h->h264dsp.biweight_h264_pixels_tab,
  1832. pixel_shift);
  1833. }
  1834. }
  1835. hl_decode_mb_idct_luma(h, mb_type, is_h264, simple, transform_bypass, pixel_shift, block_offset, linesize, dest_y, 0);
  1836. if((simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)) && (h->cbp&0x30)){
  1837. uint8_t *dest[2] = {dest_cb, dest_cr};
  1838. if(transform_bypass){
  1839. if(IS_INTRA(mb_type) && h->sps.profile_idc==244 && (h->chroma_pred_mode==VERT_PRED8x8 || h->chroma_pred_mode==HOR_PRED8x8)){
  1840. h->hpc.pred8x8_add[h->chroma_pred_mode](dest[0], block_offset + 16, h->mb + (16*16*1 << pixel_shift), uvlinesize);
  1841. h->hpc.pred8x8_add[h->chroma_pred_mode](dest[1], block_offset + 32, h->mb + (16*16*2 << pixel_shift), uvlinesize);
  1842. }else{
  1843. idct_add = s->dsp.add_pixels4;
  1844. for(j=1; j<3; j++){
  1845. for(i=j*16; i<j*16+4; i++){
  1846. if(h->non_zero_count_cache[ scan8[i] ] || dctcoef_get(h->mb, pixel_shift, i*16))
  1847. idct_add (dest[j-1] + block_offset[i], h->mb + (i*16 << pixel_shift), uvlinesize);
  1848. }
  1849. if (chroma422) {
  1850. for(i=j*16+4; i<j*16+8; i++){
  1851. if(h->non_zero_count_cache[ scan8[i+4] ] || dctcoef_get(h->mb, pixel_shift, i*16))
  1852. idct_add (dest[j-1] + block_offset[i+4], h->mb + (i*16 << pixel_shift), uvlinesize);
  1853. }
  1854. }
  1855. }
  1856. }
  1857. }else{
  1858. if(is_h264){
  1859. int qp[2];
  1860. if (chroma422) {
  1861. qp[0] = h->chroma_qp[0] + 3;
  1862. qp[1] = h->chroma_qp[1] + 3;
  1863. } else {
  1864. qp[0] = h->chroma_qp[0];
  1865. qp[1] = h->chroma_qp[1];
  1866. }
  1867. if(h->non_zero_count_cache[ scan8[CHROMA_DC_BLOCK_INDEX+0] ])
  1868. h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + (16*16*1 << pixel_shift), h->dequant4_coeff[IS_INTRA(mb_type) ? 1:4][qp[0]][0]);
  1869. if(h->non_zero_count_cache[ scan8[CHROMA_DC_BLOCK_INDEX+1] ])
  1870. h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + (16*16*2 << pixel_shift), h->dequant4_coeff[IS_INTRA(mb_type) ? 2:5][qp[1]][0]);
  1871. h->h264dsp.h264_idct_add8(dest, block_offset,
  1872. h->mb, uvlinesize,
  1873. h->non_zero_count_cache);
  1874. }
  1875. #if CONFIG_SVQ3_DECODER
  1876. else{
  1877. h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + 16*16*1, h->dequant4_coeff[IS_INTRA(mb_type) ? 1:4][h->chroma_qp[0]][0]);
  1878. h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + 16*16*2, h->dequant4_coeff[IS_INTRA(mb_type) ? 2:5][h->chroma_qp[1]][0]);
  1879. for(j=1; j<3; j++){
  1880. for(i=j*16; i<j*16+4; i++){
  1881. if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){
  1882. uint8_t * const ptr= dest[j-1] + block_offset[i];
  1883. ff_svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, ff_h264_chroma_qp[0][s->qscale + 12] - 12, 2);
  1884. }
  1885. }
  1886. }
  1887. }
  1888. #endif
  1889. }
  1890. }
  1891. }
  1892. if(h->cbp || IS_INTRA(mb_type))
  1893. {
  1894. s->dsp.clear_blocks(h->mb);
  1895. s->dsp.clear_blocks(h->mb+(24*16<<pixel_shift));
  1896. }
  1897. }
  1898. static av_always_inline void hl_decode_mb_444_internal(H264Context *h, int simple, int pixel_shift){
  1899. MpegEncContext * const s = &h->s;
  1900. const int mb_x= s->mb_x;
  1901. const int mb_y= s->mb_y;
  1902. const int mb_xy= h->mb_xy;
  1903. const int mb_type = s->current_picture.f.mb_type[mb_xy];
  1904. uint8_t *dest[3];
  1905. int linesize;
  1906. int i, j, p;
  1907. int *block_offset = &h->block_offset[0];
  1908. const int transform_bypass = !simple && (s->qscale == 0 && h->sps.transform_bypass);
  1909. const int plane_count = (simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)) ? 3 : 1;
  1910. for (p = 0; p < plane_count; p++)
  1911. {
  1912. dest[p] = s->current_picture.f.data[p] + ((mb_x << pixel_shift) + mb_y * s->linesize) * 16;
  1913. s->dsp.prefetch(dest[p] + (s->mb_x&3)*4*s->linesize + (64 << pixel_shift), s->linesize, 4);
  1914. }
  1915. h->list_counts[mb_xy]= h->list_count;
  1916. if (!simple && MB_FIELD) {
  1917. linesize = h->mb_linesize = h->mb_uvlinesize = s->linesize * 2;
  1918. block_offset = &h->block_offset[48];
  1919. if(mb_y&1) //FIXME move out of this function?
  1920. for (p = 0; p < 3; p++)
  1921. dest[p] -= s->linesize*15;
  1922. if(FRAME_MBAFF) {
  1923. int list;
  1924. for(list=0; list<h->list_count; list++){
  1925. if(!USES_LIST(mb_type, list))
  1926. continue;
  1927. if(IS_16X16(mb_type)){
  1928. int8_t *ref = &h->ref_cache[list][scan8[0]];
  1929. fill_rectangle(ref, 4, 4, 8, (16+*ref)^(s->mb_y&1), 1);
  1930. }else{
  1931. for(i=0; i<16; i+=4){
  1932. int ref = h->ref_cache[list][scan8[i]];
  1933. if(ref >= 0)
  1934. fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1);
  1935. }
  1936. }
  1937. }
  1938. }
  1939. } else {
  1940. linesize = h->mb_linesize = h->mb_uvlinesize = s->linesize;
  1941. }
  1942. if (!simple && IS_INTRA_PCM(mb_type)) {
  1943. if (pixel_shift) {
  1944. const int bit_depth = h->sps.bit_depth_luma;
  1945. GetBitContext gb;
  1946. init_get_bits(&gb, (uint8_t*)h->mb, 768*bit_depth);
  1947. for (p = 0; p < plane_count; p++) {
  1948. for (i = 0; i < 16; i++) {
  1949. uint16_t *tmp = (uint16_t*)(dest[p] + i*linesize);
  1950. for (j = 0; j < 16; j++)
  1951. tmp[j] = get_bits(&gb, bit_depth);
  1952. }
  1953. }
  1954. } else {
  1955. for (p = 0; p < plane_count; p++) {
  1956. for (i = 0; i < 16; i++) {
  1957. memcpy(dest[p] + i*linesize, h->mb + p*128 + i*8, 16);
  1958. }
  1959. }
  1960. }
  1961. } else {
  1962. if(IS_INTRA(mb_type)){
  1963. if(h->deblocking_filter)
  1964. xchg_mb_border(h, dest[0], dest[1], dest[2], linesize, linesize, 1, 1, simple, pixel_shift);
  1965. for (p = 0; p < plane_count; p++)
  1966. hl_decode_mb_predict_luma(h, mb_type, 1, simple, transform_bypass, pixel_shift, block_offset, linesize, dest[p], p);
  1967. if(h->deblocking_filter)
  1968. xchg_mb_border(h, dest[0], dest[1], dest[2], linesize, linesize, 0, 1, simple, pixel_shift);
  1969. }else{
  1970. hl_motion(h, dest[0], dest[1], dest[2],
  1971. s->me.qpel_put, s->dsp.put_h264_chroma_pixels_tab,
  1972. s->me.qpel_avg, s->dsp.avg_h264_chroma_pixels_tab,
  1973. h->h264dsp.weight_h264_pixels_tab,
  1974. h->h264dsp.biweight_h264_pixels_tab, pixel_shift, 3);
  1975. }
  1976. for (p = 0; p < plane_count; p++)
  1977. hl_decode_mb_idct_luma(h, mb_type, 1, simple, transform_bypass, pixel_shift, block_offset, linesize, dest[p], p);
  1978. }
  1979. if(h->cbp || IS_INTRA(mb_type))
  1980. {
  1981. s->dsp.clear_blocks(h->mb);
  1982. s->dsp.clear_blocks(h->mb+(24*16<<pixel_shift));
  1983. }
  1984. }
  1985. /**
  1986. * Process a macroblock; this case avoids checks for expensive uncommon cases.
  1987. */
  1988. #define hl_decode_mb_simple(sh, bits) \
  1989. static void hl_decode_mb_simple_ ## bits(H264Context *h){ \
  1990. hl_decode_mb_internal(h, 1, sh); \
  1991. }
  1992. hl_decode_mb_simple(0, 8);
  1993. hl_decode_mb_simple(1, 16);
  1994. /**
  1995. * Process a macroblock; this handles edge cases, such as interlacing.
  1996. */
  1997. static void av_noinline hl_decode_mb_complex(H264Context *h){
  1998. hl_decode_mb_internal(h, 0, h->pixel_shift);
  1999. }
  2000. static void av_noinline hl_decode_mb_444_complex(H264Context *h){
  2001. hl_decode_mb_444_internal(h, 0, h->pixel_shift);
  2002. }
  2003. static void av_noinline hl_decode_mb_444_simple(H264Context *h){
  2004. hl_decode_mb_444_internal(h, 1, 0);
  2005. }
  2006. void ff_h264_hl_decode_mb(H264Context *h){
  2007. MpegEncContext * const s = &h->s;
  2008. const int mb_xy= h->mb_xy;
  2009. const int mb_type = s->current_picture.f.mb_type[mb_xy];
  2010. int is_complex = CONFIG_SMALL || h->is_complex || IS_INTRA_PCM(mb_type) || s->qscale == 0;
  2011. if (CHROMA444) {
  2012. if(is_complex || h->pixel_shift)
  2013. hl_decode_mb_444_complex(h);
  2014. else
  2015. hl_decode_mb_444_simple(h);
  2016. } else if (is_complex) {
  2017. hl_decode_mb_complex(h);
  2018. } else if (h->pixel_shift) {
  2019. hl_decode_mb_simple_16(h);
  2020. } else
  2021. hl_decode_mb_simple_8(h);
  2022. }
  2023. static int pred_weight_table(H264Context *h){
  2024. MpegEncContext * const s = &h->s;
  2025. int list, i;
  2026. int luma_def, chroma_def;
  2027. h->use_weight= 0;
  2028. h->use_weight_chroma= 0;
  2029. h->luma_log2_weight_denom= get_ue_golomb(&s->gb);
  2030. if(h->sps.chroma_format_idc)
  2031. h->chroma_log2_weight_denom= get_ue_golomb(&s->gb);
  2032. luma_def = 1<<h->luma_log2_weight_denom;
  2033. chroma_def = 1<<h->chroma_log2_weight_denom;
  2034. for(list=0; list<2; list++){
  2035. h->luma_weight_flag[list] = 0;
  2036. h->chroma_weight_flag[list] = 0;
  2037. for(i=0; i<h->ref_count[list]; i++){
  2038. int luma_weight_flag, chroma_weight_flag;
  2039. luma_weight_flag= get_bits1(&s->gb);
  2040. if(luma_weight_flag){
  2041. h->luma_weight[i][list][0]= get_se_golomb(&s->gb);
  2042. h->luma_weight[i][list][1]= get_se_golomb(&s->gb);
  2043. if( h->luma_weight[i][list][0] != luma_def
  2044. || h->luma_weight[i][list][1] != 0) {
  2045. h->use_weight= 1;
  2046. h->luma_weight_flag[list]= 1;
  2047. }
  2048. }else{
  2049. h->luma_weight[i][list][0]= luma_def;
  2050. h->luma_weight[i][list][1]= 0;
  2051. }
  2052. if(h->sps.chroma_format_idc){
  2053. chroma_weight_flag= get_bits1(&s->gb);
  2054. if(chroma_weight_flag){
  2055. int j;
  2056. for(j=0; j<2; j++){
  2057. h->chroma_weight[i][list][j][0]= get_se_golomb(&s->gb);
  2058. h->chroma_weight[i][list][j][1]= get_se_golomb(&s->gb);
  2059. if( h->chroma_weight[i][list][j][0] != chroma_def
  2060. || h->chroma_weight[i][list][j][1] != 0) {
  2061. h->use_weight_chroma= 1;
  2062. h->chroma_weight_flag[list]= 1;
  2063. }
  2064. }
  2065. }else{
  2066. int j;
  2067. for(j=0; j<2; j++){
  2068. h->chroma_weight[i][list][j][0]= chroma_def;
  2069. h->chroma_weight[i][list][j][1]= 0;
  2070. }
  2071. }
  2072. }
  2073. }
  2074. if(h->slice_type_nos != AV_PICTURE_TYPE_B) break;
  2075. }
  2076. h->use_weight= h->use_weight || h->use_weight_chroma;
  2077. return 0;
  2078. }
  2079. /**
  2080. * Initialize implicit_weight table.
  2081. * @param field 0/1 initialize the weight for interlaced MBAFF
  2082. * -1 initializes the rest
  2083. */
  2084. static void implicit_weight_table(H264Context *h, int field){
  2085. MpegEncContext * const s = &h->s;
  2086. int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
  2087. for (i = 0; i < 2; i++) {
  2088. h->luma_weight_flag[i] = 0;
  2089. h->chroma_weight_flag[i] = 0;
  2090. }
  2091. if(field < 0){
  2092. if (s->picture_structure == PICT_FRAME) {
  2093. cur_poc = s->current_picture_ptr->poc;
  2094. } else {
  2095. cur_poc = s->current_picture_ptr->field_poc[s->picture_structure - 1];
  2096. }
  2097. if( h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF
  2098. && h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2*cur_poc){
  2099. h->use_weight= 0;
  2100. h->use_weight_chroma= 0;
  2101. return;
  2102. }
  2103. ref_start= 0;
  2104. ref_count0= h->ref_count[0];
  2105. ref_count1= h->ref_count[1];
  2106. }else{
  2107. cur_poc = s->current_picture_ptr->field_poc[field];
  2108. ref_start= 16;
  2109. ref_count0= 16+2*h->ref_count[0];
  2110. ref_count1= 16+2*h->ref_count[1];
  2111. }
  2112. h->use_weight= 2;
  2113. h->use_weight_chroma= 2;
  2114. h->luma_log2_weight_denom= 5;
  2115. h->chroma_log2_weight_denom= 5;
  2116. for(ref0=ref_start; ref0 < ref_count0; ref0++){
  2117. int poc0 = h->ref_list[0][ref0].poc;
  2118. for(ref1=ref_start; ref1 < ref_count1; ref1++){
  2119. int w = 32;
  2120. if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
  2121. int poc1 = h->ref_list[1][ref1].poc;
  2122. int td = av_clip(poc1 - poc0, -128, 127);
  2123. if(td){
  2124. int tb = av_clip(cur_poc - poc0, -128, 127);
  2125. int tx = (16384 + (FFABS(td) >> 1)) / td;
  2126. int dist_scale_factor = (tb*tx + 32) >> 8;
  2127. if(dist_scale_factor >= -64 && dist_scale_factor <= 128)
  2128. w = 64 - dist_scale_factor;
  2129. }
  2130. }
  2131. if(field<0){
  2132. h->implicit_weight[ref0][ref1][0]=
  2133. h->implicit_weight[ref0][ref1][1]= w;
  2134. }else{
  2135. h->implicit_weight[ref0][ref1][field]=w;
  2136. }
  2137. }
  2138. }
  2139. }
  2140. /**
  2141. * instantaneous decoder refresh.
  2142. */
  2143. static void idr(H264Context *h){
  2144. int i;
  2145. ff_h264_remove_all_refs(h);
  2146. h->prev_frame_num= -1;
  2147. h->prev_frame_num_offset= 0;
  2148. h->prev_poc_msb=
  2149. h->prev_poc_lsb= 0;
  2150. for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
  2151. h->last_pocs[i] = INT_MIN;
  2152. }
  2153. /* forget old pics after a seek */
  2154. static void flush_dpb(AVCodecContext *avctx){
  2155. H264Context *h= avctx->priv_data;
  2156. int i;
  2157. for(i=0; i<=MAX_DELAYED_PIC_COUNT; i++) {
  2158. if(h->delayed_pic[i])
  2159. h->delayed_pic[i]->f.reference = 0;
  2160. h->delayed_pic[i]= NULL;
  2161. }
  2162. for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
  2163. h->last_pocs[i] = INT_MIN;
  2164. h->outputed_poc=h->next_outputed_poc= INT_MIN;
  2165. h->prev_interlaced_frame = 1;
  2166. idr(h);
  2167. if(h->s.current_picture_ptr)
  2168. h->s.current_picture_ptr->f.reference = 0;
  2169. h->s.first_field= 0;
  2170. ff_h264_reset_sei(h);
  2171. ff_mpeg_flush(avctx);
  2172. h->recovery_frame= -1;
  2173. h->sync= 0;
  2174. }
  2175. static int init_poc(H264Context *h){
  2176. MpegEncContext * const s = &h->s;
  2177. const int max_frame_num= 1<<h->sps.log2_max_frame_num;
  2178. int field_poc[2];
  2179. Picture *cur = s->current_picture_ptr;
  2180. h->frame_num_offset= h->prev_frame_num_offset;
  2181. if(h->frame_num < h->prev_frame_num)
  2182. h->frame_num_offset += max_frame_num;
  2183. if(h->sps.poc_type==0){
  2184. const int max_poc_lsb= 1<<h->sps.log2_max_poc_lsb;
  2185. if (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb/2)
  2186. h->poc_msb = h->prev_poc_msb + max_poc_lsb;
  2187. else if(h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb/2)
  2188. h->poc_msb = h->prev_poc_msb - max_poc_lsb;
  2189. else
  2190. h->poc_msb = h->prev_poc_msb;
  2191. //printf("poc: %d %d\n", h->poc_msb, h->poc_lsb);
  2192. field_poc[0] =
  2193. field_poc[1] = h->poc_msb + h->poc_lsb;
  2194. if(s->picture_structure == PICT_FRAME)
  2195. field_poc[1] += h->delta_poc_bottom;
  2196. }else if(h->sps.poc_type==1){
  2197. int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
  2198. int i;
  2199. if(h->sps.poc_cycle_length != 0)
  2200. abs_frame_num = h->frame_num_offset + h->frame_num;
  2201. else
  2202. abs_frame_num = 0;
  2203. if(h->nal_ref_idc==0 && abs_frame_num > 0)
  2204. abs_frame_num--;
  2205. expected_delta_per_poc_cycle = 0;
  2206. for(i=0; i < h->sps.poc_cycle_length; i++)
  2207. expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[ i ]; //FIXME integrate during sps parse
  2208. if(abs_frame_num > 0){
  2209. int poc_cycle_cnt = (abs_frame_num - 1) / h->sps.poc_cycle_length;
  2210. int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
  2211. expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
  2212. for(i = 0; i <= frame_num_in_poc_cycle; i++)
  2213. expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[ i ];
  2214. } else
  2215. expectedpoc = 0;
  2216. if(h->nal_ref_idc == 0)
  2217. expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
  2218. field_poc[0] = expectedpoc + h->delta_poc[0];
  2219. field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
  2220. if(s->picture_structure == PICT_FRAME)
  2221. field_poc[1] += h->delta_poc[1];
  2222. }else{
  2223. int poc= 2*(h->frame_num_offset + h->frame_num);
  2224. if(!h->nal_ref_idc)
  2225. poc--;
  2226. field_poc[0]= poc;
  2227. field_poc[1]= poc;
  2228. }
  2229. if(s->picture_structure != PICT_BOTTOM_FIELD)
  2230. s->current_picture_ptr->field_poc[0]= field_poc[0];
  2231. if(s->picture_structure != PICT_TOP_FIELD)
  2232. s->current_picture_ptr->field_poc[1]= field_poc[1];
  2233. cur->poc= FFMIN(cur->field_poc[0], cur->field_poc[1]);
  2234. return 0;
  2235. }
  2236. /**
  2237. * initialize scan tables
  2238. */
  2239. static void init_scan_tables(H264Context *h){
  2240. int i;
  2241. for(i=0; i<16; i++){
  2242. #define T(x) (x>>2) | ((x<<2) & 0xF)
  2243. h->zigzag_scan[i] = T(zigzag_scan[i]);
  2244. h-> field_scan[i] = T( field_scan[i]);
  2245. #undef T
  2246. }
  2247. for(i=0; i<64; i++){
  2248. #define T(x) (x>>3) | ((x&7)<<3)
  2249. h->zigzag_scan8x8[i] = T(ff_zigzag_direct[i]);
  2250. h->zigzag_scan8x8_cavlc[i] = T(zigzag_scan8x8_cavlc[i]);
  2251. h->field_scan8x8[i] = T(field_scan8x8[i]);
  2252. h->field_scan8x8_cavlc[i] = T(field_scan8x8_cavlc[i]);
  2253. #undef T
  2254. }
  2255. if(h->sps.transform_bypass){ //FIXME same ugly
  2256. h->zigzag_scan_q0 = zigzag_scan;
  2257. h->zigzag_scan8x8_q0 = ff_zigzag_direct;
  2258. h->zigzag_scan8x8_cavlc_q0 = zigzag_scan8x8_cavlc;
  2259. h->field_scan_q0 = field_scan;
  2260. h->field_scan8x8_q0 = field_scan8x8;
  2261. h->field_scan8x8_cavlc_q0 = field_scan8x8_cavlc;
  2262. }else{
  2263. h->zigzag_scan_q0 = h->zigzag_scan;
  2264. h->zigzag_scan8x8_q0 = h->zigzag_scan8x8;
  2265. h->zigzag_scan8x8_cavlc_q0 = h->zigzag_scan8x8_cavlc;
  2266. h->field_scan_q0 = h->field_scan;
  2267. h->field_scan8x8_q0 = h->field_scan8x8;
  2268. h->field_scan8x8_cavlc_q0 = h->field_scan8x8_cavlc;
  2269. }
  2270. }
  2271. static int field_end(H264Context *h, int in_setup){
  2272. MpegEncContext * const s = &h->s;
  2273. AVCodecContext * const avctx= s->avctx;
  2274. int err = 0;
  2275. s->mb_y= 0;
  2276. if (!in_setup && !s->dropable)
  2277. ff_thread_report_progress((AVFrame*)s->current_picture_ptr, (16*s->mb_height >> FIELD_PICTURE) - 1,
  2278. s->picture_structure==PICT_BOTTOM_FIELD);
  2279. if (CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
  2280. ff_vdpau_h264_set_reference_frames(s);
  2281. if(in_setup || !(avctx->active_thread_type&FF_THREAD_FRAME)){
  2282. if(!s->dropable) {
  2283. err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
  2284. h->prev_poc_msb= h->poc_msb;
  2285. h->prev_poc_lsb= h->poc_lsb;
  2286. }
  2287. h->prev_frame_num_offset= h->frame_num_offset;
  2288. h->prev_frame_num= h->frame_num;
  2289. h->outputed_poc = h->next_outputed_poc;
  2290. }
  2291. if (avctx->hwaccel) {
  2292. if (avctx->hwaccel->end_frame(avctx) < 0)
  2293. av_log(avctx, AV_LOG_ERROR, "hardware accelerator failed to decode picture\n");
  2294. }
  2295. if (CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
  2296. ff_vdpau_h264_picture_complete(s);
  2297. /*
  2298. * FIXME: Error handling code does not seem to support interlaced
  2299. * when slices span multiple rows
  2300. * The ff_er_add_slice calls don't work right for bottom
  2301. * fields; they cause massive erroneous error concealing
  2302. * Error marking covers both fields (top and bottom).
  2303. * This causes a mismatched s->error_count
  2304. * and a bad error table. Further, the error count goes to
  2305. * INT_MAX when called for bottom field, because mb_y is
  2306. * past end by one (callers fault) and resync_mb_y != 0
  2307. * causes problems for the first MB line, too.
  2308. */
  2309. if (!FIELD_PICTURE)
  2310. ff_er_frame_end(s);
  2311. MPV_frame_end(s);
  2312. h->current_slice=0;
  2313. return err;
  2314. }
  2315. /**
  2316. * Replicate H264 "master" context to thread contexts.
  2317. */
  2318. static void clone_slice(H264Context *dst, H264Context *src)
  2319. {
  2320. memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
  2321. dst->s.current_picture_ptr = src->s.current_picture_ptr;
  2322. dst->s.current_picture = src->s.current_picture;
  2323. dst->s.linesize = src->s.linesize;
  2324. dst->s.uvlinesize = src->s.uvlinesize;
  2325. dst->s.first_field = src->s.first_field;
  2326. dst->prev_poc_msb = src->prev_poc_msb;
  2327. dst->prev_poc_lsb = src->prev_poc_lsb;
  2328. dst->prev_frame_num_offset = src->prev_frame_num_offset;
  2329. dst->prev_frame_num = src->prev_frame_num;
  2330. dst->short_ref_count = src->short_ref_count;
  2331. memcpy(dst->short_ref, src->short_ref, sizeof(dst->short_ref));
  2332. memcpy(dst->long_ref, src->long_ref, sizeof(dst->long_ref));
  2333. memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
  2334. memcpy(dst->ref_list, src->ref_list, sizeof(dst->ref_list));
  2335. memcpy(dst->dequant4_coeff, src->dequant4_coeff, sizeof(src->dequant4_coeff));
  2336. memcpy(dst->dequant8_coeff, src->dequant8_coeff, sizeof(src->dequant8_coeff));
  2337. }
  2338. /**
  2339. * computes profile from profile_idc and constraint_set?_flags
  2340. *
  2341. * @param sps SPS
  2342. *
  2343. * @return profile as defined by FF_PROFILE_H264_*
  2344. */
  2345. int ff_h264_get_profile(SPS *sps)
  2346. {
  2347. int profile = sps->profile_idc;
  2348. switch(sps->profile_idc) {
  2349. case FF_PROFILE_H264_BASELINE:
  2350. // constraint_set1_flag set to 1
  2351. profile |= (sps->constraint_set_flags & 1<<1) ? FF_PROFILE_H264_CONSTRAINED : 0;
  2352. break;
  2353. case FF_PROFILE_H264_HIGH_10:
  2354. case FF_PROFILE_H264_HIGH_422:
  2355. case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
  2356. // constraint_set3_flag set to 1
  2357. profile |= (sps->constraint_set_flags & 1<<3) ? FF_PROFILE_H264_INTRA : 0;
  2358. break;
  2359. }
  2360. return profile;
  2361. }
  2362. /**
  2363. * decodes a slice header.
  2364. * This will also call MPV_common_init() and frame_start() as needed.
  2365. *
  2366. * @param h h264context
  2367. * @param h0 h264 master context (differs from 'h' when doing sliced based parallel decoding)
  2368. *
  2369. * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
  2370. */
  2371. static int decode_slice_header(H264Context *h, H264Context *h0){
  2372. MpegEncContext * const s = &h->s;
  2373. MpegEncContext * const s0 = &h0->s;
  2374. unsigned int first_mb_in_slice;
  2375. unsigned int pps_id;
  2376. int num_ref_idx_active_override_flag;
  2377. unsigned int slice_type, tmp, i, j;
  2378. int default_ref_list_done = 0;
  2379. int last_pic_structure;
  2380. s->dropable= h->nal_ref_idc == 0;
  2381. /* FIXME: 2tap qpel isn't implemented for high bit depth. */
  2382. if((s->avctx->flags2 & CODEC_FLAG2_FAST) && !h->nal_ref_idc && !h->pixel_shift){
  2383. s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab;
  2384. s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab;
  2385. }else{
  2386. s->me.qpel_put= s->dsp.put_h264_qpel_pixels_tab;
  2387. s->me.qpel_avg= s->dsp.avg_h264_qpel_pixels_tab;
  2388. }
  2389. first_mb_in_slice= get_ue_golomb_long(&s->gb);
  2390. if(first_mb_in_slice == 0){ //FIXME better field boundary detection
  2391. if(h0->current_slice && FIELD_PICTURE){
  2392. field_end(h, 1);
  2393. }
  2394. h0->current_slice = 0;
  2395. if (!s0->first_field)
  2396. s->current_picture_ptr= NULL;
  2397. }
  2398. slice_type= get_ue_golomb_31(&s->gb);
  2399. if(slice_type > 9){
  2400. av_log(h->s.avctx, AV_LOG_ERROR, "slice type too large (%d) at %d %d\n", h->slice_type, s->mb_x, s->mb_y);
  2401. return -1;
  2402. }
  2403. if(slice_type > 4){
  2404. slice_type -= 5;
  2405. h->slice_type_fixed=1;
  2406. }else
  2407. h->slice_type_fixed=0;
  2408. slice_type= golomb_to_pict_type[ slice_type ];
  2409. if (slice_type == AV_PICTURE_TYPE_I
  2410. || (h0->current_slice != 0 && slice_type == h0->last_slice_type) ) {
  2411. default_ref_list_done = 1;
  2412. }
  2413. h->slice_type= slice_type;
  2414. h->slice_type_nos= slice_type & 3;
  2415. s->pict_type= h->slice_type; // to make a few old functions happy, it's wrong though
  2416. pps_id= get_ue_golomb(&s->gb);
  2417. if(pps_id>=MAX_PPS_COUNT){
  2418. av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
  2419. return -1;
  2420. }
  2421. if(!h0->pps_buffers[pps_id]) {
  2422. av_log(h->s.avctx, AV_LOG_ERROR, "non-existing PPS %u referenced\n", pps_id);
  2423. return -1;
  2424. }
  2425. h->pps= *h0->pps_buffers[pps_id];
  2426. if(!h0->sps_buffers[h->pps.sps_id]) {
  2427. av_log(h->s.avctx, AV_LOG_ERROR, "non-existing SPS %u referenced\n", h->pps.sps_id);
  2428. return -1;
  2429. }
  2430. h->sps = *h0->sps_buffers[h->pps.sps_id];
  2431. s->avctx->profile = ff_h264_get_profile(&h->sps);
  2432. s->avctx->level = h->sps.level_idc;
  2433. s->avctx->refs = h->sps.ref_frame_count;
  2434. if(h == h0 && h->dequant_coeff_pps != pps_id){
  2435. h->dequant_coeff_pps = pps_id;
  2436. init_dequant_tables(h);
  2437. }
  2438. s->mb_width= h->sps.mb_width;
  2439. s->mb_height= h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
  2440. h->b_stride= s->mb_width*4;
  2441. s->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
  2442. s->width = 16*s->mb_width;
  2443. s->height= 16*s->mb_height;
  2444. if (s->context_initialized
  2445. && ( s->width != s->avctx->coded_width || s->height != s->avctx->coded_height
  2446. || s->avctx->bits_per_raw_sample != h->sps.bit_depth_luma
  2447. || h->cur_chroma_format_idc != h->sps.chroma_format_idc
  2448. || av_cmp_q(h->sps.sar, s->avctx->sample_aspect_ratio))) {
  2449. if(h != h0) {
  2450. av_log_missing_feature(s->avctx, "Width/height/bit depth/chroma idc changing with threads is", 0);
  2451. return -1; // width / height changed during parallelized decoding
  2452. }
  2453. free_tables(h, 0);
  2454. flush_dpb(s->avctx);
  2455. MPV_common_end(s);
  2456. h->list_count = 0;
  2457. }
  2458. if (!s->context_initialized) {
  2459. if (h != h0) {
  2460. av_log(h->s.avctx, AV_LOG_ERROR, "Cannot (re-)initialize context during parallel decoding.\n");
  2461. return -1;
  2462. }
  2463. avcodec_set_dimensions(s->avctx, s->width, s->height);
  2464. s->avctx->width -= (2>>CHROMA444)*FFMIN(h->sps.crop_right, (8<<CHROMA444)-1);
  2465. s->avctx->height -= (1<<s->chroma_y_shift)*FFMIN(h->sps.crop_bottom, (16>>s->chroma_y_shift)-1) * (2 - h->sps.frame_mbs_only_flag);
  2466. s->avctx->sample_aspect_ratio= h->sps.sar;
  2467. av_assert0(s->avctx->sample_aspect_ratio.den);
  2468. if (s->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
  2469. h->cur_chroma_format_idc != h->sps.chroma_format_idc) {
  2470. if (h->sps.bit_depth_luma >= 8 && h->sps.bit_depth_luma <= 10 &&
  2471. (h->sps.bit_depth_luma != 9 || !CHROMA422)) {
  2472. s->avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
  2473. h->cur_chroma_format_idc = h->sps.chroma_format_idc;
  2474. h->pixel_shift = h->sps.bit_depth_luma > 8;
  2475. ff_h264dsp_init(&h->h264dsp, h->sps.bit_depth_luma, h->sps.chroma_format_idc);
  2476. ff_h264_pred_init(&h->hpc, s->codec_id, h->sps.bit_depth_luma, h->sps.chroma_format_idc);
  2477. s->dsp.dct_bits = h->sps.bit_depth_luma > 8 ? 32 : 16;
  2478. dsputil_init(&s->dsp, s->avctx);
  2479. } else {
  2480. av_log(s->avctx, AV_LOG_ERROR, "Unsupported bit depth: %d chroma_idc: %d\n",
  2481. h->sps.bit_depth_luma, h->sps.chroma_format_idc);
  2482. return -1;
  2483. }
  2484. }
  2485. if(h->sps.video_signal_type_present_flag){
  2486. s->avctx->color_range = h->sps.full_range>0 ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
  2487. if(h->sps.colour_description_present_flag){
  2488. s->avctx->color_primaries = h->sps.color_primaries;
  2489. s->avctx->color_trc = h->sps.color_trc;
  2490. s->avctx->colorspace = h->sps.colorspace;
  2491. }
  2492. }
  2493. if(h->sps.timing_info_present_flag){
  2494. int64_t den= h->sps.time_scale;
  2495. if(h->x264_build < 44U)
  2496. den *= 2;
  2497. av_reduce(&s->avctx->time_base.num, &s->avctx->time_base.den,
  2498. h->sps.num_units_in_tick, den, 1<<30);
  2499. }
  2500. switch (h->sps.bit_depth_luma) {
  2501. case 9 :
  2502. if (CHROMA444) {
  2503. if (s->avctx->colorspace == AVCOL_SPC_RGB) {
  2504. s->avctx->pix_fmt = PIX_FMT_GBRP9;
  2505. } else
  2506. s->avctx->pix_fmt = PIX_FMT_YUV444P9;
  2507. } else if (CHROMA422)
  2508. s->avctx->pix_fmt = PIX_FMT_YUV422P9;
  2509. else
  2510. s->avctx->pix_fmt = PIX_FMT_YUV420P9;
  2511. break;
  2512. case 10 :
  2513. if (CHROMA444) {
  2514. if (s->avctx->colorspace == AVCOL_SPC_RGB) {
  2515. s->avctx->pix_fmt = PIX_FMT_GBRP10;
  2516. } else
  2517. s->avctx->pix_fmt = PIX_FMT_YUV444P10;
  2518. } else if (CHROMA422)
  2519. s->avctx->pix_fmt = PIX_FMT_YUV422P10;
  2520. else
  2521. s->avctx->pix_fmt = PIX_FMT_YUV420P10;
  2522. break;
  2523. default:
  2524. if (CHROMA444){
  2525. s->avctx->pix_fmt = s->avctx->color_range == AVCOL_RANGE_JPEG ? PIX_FMT_YUVJ444P : PIX_FMT_YUV444P;
  2526. if (s->avctx->colorspace == AVCOL_SPC_RGB) {
  2527. s->avctx->pix_fmt = PIX_FMT_GBR24P;
  2528. av_log(h->s.avctx, AV_LOG_DEBUG, "Detected GBR colorspace.\n");
  2529. } else if (s->avctx->colorspace == AVCOL_SPC_YCGCO) {
  2530. av_log(h->s.avctx, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
  2531. }
  2532. } else if (CHROMA422) {
  2533. s->avctx->pix_fmt = s->avctx->color_range == AVCOL_RANGE_JPEG ? PIX_FMT_YUVJ422P : PIX_FMT_YUV422P;
  2534. }else{
  2535. s->avctx->pix_fmt = s->avctx->get_format(s->avctx,
  2536. s->avctx->codec->pix_fmts ?
  2537. s->avctx->codec->pix_fmts :
  2538. s->avctx->color_range == AVCOL_RANGE_JPEG ?
  2539. hwaccel_pixfmt_list_h264_jpeg_420 :
  2540. ff_hwaccel_pixfmt_list_420);
  2541. }
  2542. }
  2543. s->avctx->hwaccel = ff_find_hwaccel(s->avctx->codec->id, s->avctx->pix_fmt);
  2544. if (MPV_common_init(s) < 0) {
  2545. av_log(h->s.avctx, AV_LOG_ERROR, "MPV_common_init() failed.\n");
  2546. return -1;
  2547. }
  2548. s->first_field = 0;
  2549. h->prev_interlaced_frame = 1;
  2550. init_scan_tables(h);
  2551. if (ff_h264_alloc_tables(h) < 0) {
  2552. av_log(h->s.avctx, AV_LOG_ERROR, "Could not allocate memory for h264\n");
  2553. return AVERROR(ENOMEM);
  2554. }
  2555. if (!HAVE_THREADS || !(s->avctx->active_thread_type&FF_THREAD_SLICE)) {
  2556. if (context_init(h) < 0) {
  2557. av_log(h->s.avctx, AV_LOG_ERROR, "context_init() failed.\n");
  2558. return -1;
  2559. }
  2560. } else {
  2561. for(i = 1; i < s->avctx->thread_count; i++) {
  2562. H264Context *c;
  2563. c = h->thread_context[i] = av_malloc(sizeof(H264Context));
  2564. memcpy(c, h->s.thread_context[i], sizeof(MpegEncContext));
  2565. memset(&c->s + 1, 0, sizeof(H264Context) - sizeof(MpegEncContext));
  2566. c->h264dsp = h->h264dsp;
  2567. c->sps = h->sps;
  2568. c->pps = h->pps;
  2569. c->pixel_shift = h->pixel_shift;
  2570. c->cur_chroma_format_idc = h->cur_chroma_format_idc;
  2571. init_scan_tables(c);
  2572. clone_tables(c, h, i);
  2573. }
  2574. for(i = 0; i < s->avctx->thread_count; i++)
  2575. if (context_init(h->thread_context[i]) < 0) {
  2576. av_log(h->s.avctx, AV_LOG_ERROR, "context_init() failed.\n");
  2577. return -1;
  2578. }
  2579. }
  2580. }
  2581. h->frame_num= get_bits(&s->gb, h->sps.log2_max_frame_num);
  2582. h->mb_mbaff = 0;
  2583. h->mb_aff_frame = 0;
  2584. last_pic_structure = s0->picture_structure;
  2585. if(h->sps.frame_mbs_only_flag){
  2586. s->picture_structure= PICT_FRAME;
  2587. }else{
  2588. if(!h->sps.direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B){
  2589. av_log(h->s.avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
  2590. return -1;
  2591. }
  2592. if(get_bits1(&s->gb)) { //field_pic_flag
  2593. s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag
  2594. } else {
  2595. s->picture_structure= PICT_FRAME;
  2596. h->mb_aff_frame = h->sps.mb_aff;
  2597. }
  2598. }
  2599. h->mb_field_decoding_flag= s->picture_structure != PICT_FRAME;
  2600. if(h0->current_slice == 0){
  2601. // Shorten frame num gaps so we don't have to allocate reference frames just to throw them away
  2602. if(h->frame_num != h->prev_frame_num && h->prev_frame_num >= 0) {
  2603. int unwrap_prev_frame_num = h->prev_frame_num, max_frame_num = 1<<h->sps.log2_max_frame_num;
  2604. if (unwrap_prev_frame_num > h->frame_num) unwrap_prev_frame_num -= max_frame_num;
  2605. if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
  2606. unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
  2607. if (unwrap_prev_frame_num < 0)
  2608. unwrap_prev_frame_num += max_frame_num;
  2609. h->prev_frame_num = unwrap_prev_frame_num;
  2610. }
  2611. }
  2612. while(h->frame_num != h->prev_frame_num && h->prev_frame_num >= 0 &&
  2613. h->frame_num != (h->prev_frame_num+1)%(1<<h->sps.log2_max_frame_num)){
  2614. Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
  2615. av_log(h->s.avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n", h->frame_num, h->prev_frame_num);
  2616. if (ff_h264_frame_start(h) < 0)
  2617. return -1;
  2618. h->prev_frame_num++;
  2619. h->prev_frame_num %= 1<<h->sps.log2_max_frame_num;
  2620. s->current_picture_ptr->frame_num= h->prev_frame_num;
  2621. ff_thread_report_progress((AVFrame*)s->current_picture_ptr, INT_MAX, 0);
  2622. ff_thread_report_progress((AVFrame*)s->current_picture_ptr, INT_MAX, 1);
  2623. ff_generate_sliding_window_mmcos(h);
  2624. if (ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index) < 0 &&
  2625. (s->avctx->err_recognition & AV_EF_EXPLODE))
  2626. return AVERROR_INVALIDDATA;
  2627. /* Error concealment: if a ref is missing, copy the previous ref in its place.
  2628. * FIXME: avoiding a memcpy would be nice, but ref handling makes many assumptions
  2629. * about there being no actual duplicates.
  2630. * FIXME: this doesn't copy padding for out-of-frame motion vectors. Given we're
  2631. * concealing a lost frame, this probably isn't noticable by comparison, but it should
  2632. * be fixed. */
  2633. if (h->short_ref_count) {
  2634. if (prev) {
  2635. av_image_copy(h->short_ref[0]->f.data, h->short_ref[0]->f.linesize,
  2636. (const uint8_t**)prev->f.data, prev->f.linesize,
  2637. s->avctx->pix_fmt, s->mb_width*16, s->mb_height*16);
  2638. h->short_ref[0]->poc = prev->poc+2;
  2639. }
  2640. h->short_ref[0]->frame_num = h->prev_frame_num;
  2641. }
  2642. }
  2643. /* See if we have a decoded first field looking for a pair... */
  2644. if (s0->first_field) {
  2645. assert(s0->current_picture_ptr);
  2646. assert(s0->current_picture_ptr->f.data[0]);
  2647. assert(s0->current_picture_ptr->f.reference != DELAYED_PIC_REF);
  2648. /* figure out if we have a complementary field pair */
  2649. if (!FIELD_PICTURE || s->picture_structure == last_pic_structure) {
  2650. /*
  2651. * Previous field is unmatched. Don't display it, but let it
  2652. * remain for reference if marked as such.
  2653. */
  2654. s0->current_picture_ptr = NULL;
  2655. s0->first_field = FIELD_PICTURE;
  2656. } else {
  2657. if (s0->current_picture_ptr->frame_num != h->frame_num) {
  2658. /*
  2659. * This and previous field had
  2660. * different frame_nums. Consider this field first in
  2661. * pair. Throw away previous field except for reference
  2662. * purposes.
  2663. */
  2664. s0->first_field = 1;
  2665. s0->current_picture_ptr = NULL;
  2666. } else {
  2667. /* Second field in complementary pair */
  2668. s0->first_field = 0;
  2669. }
  2670. }
  2671. } else {
  2672. /* Frame or first field in a potentially complementary pair */
  2673. assert(!s0->current_picture_ptr);
  2674. s0->first_field = FIELD_PICTURE;
  2675. }
  2676. if(!FIELD_PICTURE || s0->first_field) {
  2677. if (ff_h264_frame_start(h) < 0) {
  2678. s0->first_field = 0;
  2679. return -1;
  2680. }
  2681. } else {
  2682. ff_release_unused_pictures(s, 0);
  2683. }
  2684. }
  2685. if(h != h0)
  2686. clone_slice(h, h0);
  2687. s->current_picture_ptr->frame_num= h->frame_num; //FIXME frame_num cleanup
  2688. assert(s->mb_num == s->mb_width * s->mb_height);
  2689. if(first_mb_in_slice << FIELD_OR_MBAFF_PICTURE >= s->mb_num ||
  2690. first_mb_in_slice >= s->mb_num){
  2691. av_log(h->s.avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
  2692. return -1;
  2693. }
  2694. s->resync_mb_x = s->mb_x = first_mb_in_slice % s->mb_width;
  2695. s->resync_mb_y = s->mb_y = (first_mb_in_slice / s->mb_width) << FIELD_OR_MBAFF_PICTURE;
  2696. if (s->picture_structure == PICT_BOTTOM_FIELD)
  2697. s->resync_mb_y = s->mb_y = s->mb_y + 1;
  2698. assert(s->mb_y < s->mb_height);
  2699. if(s->picture_structure==PICT_FRAME){
  2700. h->curr_pic_num= h->frame_num;
  2701. h->max_pic_num= 1<< h->sps.log2_max_frame_num;
  2702. }else{
  2703. h->curr_pic_num= 2*h->frame_num + 1;
  2704. h->max_pic_num= 1<<(h->sps.log2_max_frame_num + 1);
  2705. }
  2706. if(h->nal_unit_type == NAL_IDR_SLICE){
  2707. get_ue_golomb(&s->gb); /* idr_pic_id */
  2708. }
  2709. if(h->sps.poc_type==0){
  2710. h->poc_lsb= get_bits(&s->gb, h->sps.log2_max_poc_lsb);
  2711. if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME){
  2712. h->delta_poc_bottom= get_se_golomb(&s->gb);
  2713. }
  2714. }
  2715. if(h->sps.poc_type==1 && !h->sps.delta_pic_order_always_zero_flag){
  2716. h->delta_poc[0]= get_se_golomb(&s->gb);
  2717. if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME)
  2718. h->delta_poc[1]= get_se_golomb(&s->gb);
  2719. }
  2720. init_poc(h);
  2721. if(h->pps.redundant_pic_cnt_present){
  2722. h->redundant_pic_count= get_ue_golomb(&s->gb);
  2723. }
  2724. //set defaults, might be overridden a few lines later
  2725. h->ref_count[0]= h->pps.ref_count[0];
  2726. h->ref_count[1]= h->pps.ref_count[1];
  2727. if(h->slice_type_nos != AV_PICTURE_TYPE_I){
  2728. unsigned max= (16<<(s->picture_structure != PICT_FRAME))-1;
  2729. if(h->slice_type_nos == AV_PICTURE_TYPE_B){
  2730. h->direct_spatial_mv_pred= get_bits1(&s->gb);
  2731. }
  2732. num_ref_idx_active_override_flag= get_bits1(&s->gb);
  2733. if(num_ref_idx_active_override_flag){
  2734. h->ref_count[0]= get_ue_golomb(&s->gb) + 1;
  2735. if(h->slice_type_nos==AV_PICTURE_TYPE_B)
  2736. h->ref_count[1]= get_ue_golomb(&s->gb) + 1;
  2737. }
  2738. if(h->ref_count[0]-1 > max || h->ref_count[1]-1 > max){
  2739. av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n");
  2740. h->ref_count[0]= h->ref_count[1]= 1;
  2741. return -1;
  2742. }
  2743. if(h->slice_type_nos == AV_PICTURE_TYPE_B)
  2744. h->list_count= 2;
  2745. else
  2746. h->list_count= 1;
  2747. }else
  2748. h->ref_count[1]= h->ref_count[0]= h->list_count= 0;
  2749. if(!default_ref_list_done){
  2750. ff_h264_fill_default_ref_list(h);
  2751. }
  2752. if(h->slice_type_nos!=AV_PICTURE_TYPE_I && ff_h264_decode_ref_pic_list_reordering(h) < 0) {
  2753. h->ref_count[1]= h->ref_count[0]= 0;
  2754. return -1;
  2755. }
  2756. if(h->slice_type_nos!=AV_PICTURE_TYPE_I){
  2757. s->last_picture_ptr= &h->ref_list[0][0];
  2758. ff_copy_picture(&s->last_picture, s->last_picture_ptr);
  2759. }
  2760. if(h->slice_type_nos==AV_PICTURE_TYPE_B){
  2761. s->next_picture_ptr= &h->ref_list[1][0];
  2762. ff_copy_picture(&s->next_picture, s->next_picture_ptr);
  2763. }
  2764. if( (h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P )
  2765. || (h->pps.weighted_bipred_idc==1 && h->slice_type_nos== AV_PICTURE_TYPE_B ) )
  2766. pred_weight_table(h);
  2767. else if(h->pps.weighted_bipred_idc==2 && h->slice_type_nos== AV_PICTURE_TYPE_B){
  2768. implicit_weight_table(h, -1);
  2769. }else {
  2770. h->use_weight = 0;
  2771. for (i = 0; i < 2; i++) {
  2772. h->luma_weight_flag[i] = 0;
  2773. h->chroma_weight_flag[i] = 0;
  2774. }
  2775. }
  2776. if(h->nal_ref_idc && ff_h264_decode_ref_pic_marking(h0, &s->gb) < 0 &&
  2777. (s->avctx->err_recognition & AV_EF_EXPLODE))
  2778. return AVERROR_INVALIDDATA;
  2779. if(FRAME_MBAFF){
  2780. ff_h264_fill_mbaff_ref_list(h);
  2781. if(h->pps.weighted_bipred_idc==2 && h->slice_type_nos== AV_PICTURE_TYPE_B){
  2782. implicit_weight_table(h, 0);
  2783. implicit_weight_table(h, 1);
  2784. }
  2785. }
  2786. if(h->slice_type_nos==AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
  2787. ff_h264_direct_dist_scale_factor(h);
  2788. ff_h264_direct_ref_list_init(h);
  2789. if( h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac ){
  2790. tmp = get_ue_golomb_31(&s->gb);
  2791. if(tmp > 2){
  2792. av_log(s->avctx, AV_LOG_ERROR, "cabac_init_idc overflow\n");
  2793. return -1;
  2794. }
  2795. h->cabac_init_idc= tmp;
  2796. }
  2797. h->last_qscale_diff = 0;
  2798. tmp = h->pps.init_qp + get_se_golomb(&s->gb);
  2799. if(tmp>51+6*(h->sps.bit_depth_luma-8)){
  2800. av_log(s->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
  2801. return -1;
  2802. }
  2803. s->qscale= tmp;
  2804. h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
  2805. h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
  2806. //FIXME qscale / qp ... stuff
  2807. if(h->slice_type == AV_PICTURE_TYPE_SP){
  2808. get_bits1(&s->gb); /* sp_for_switch_flag */
  2809. }
  2810. if(h->slice_type==AV_PICTURE_TYPE_SP || h->slice_type == AV_PICTURE_TYPE_SI){
  2811. get_se_golomb(&s->gb); /* slice_qs_delta */
  2812. }
  2813. h->deblocking_filter = 1;
  2814. h->slice_alpha_c0_offset = 52;
  2815. h->slice_beta_offset = 52;
  2816. if( h->pps.deblocking_filter_parameters_present ) {
  2817. tmp= get_ue_golomb_31(&s->gb);
  2818. if(tmp > 2){
  2819. av_log(s->avctx, AV_LOG_ERROR, "deblocking_filter_idc %u out of range\n", tmp);
  2820. return -1;
  2821. }
  2822. h->deblocking_filter= tmp;
  2823. if(h->deblocking_filter < 2)
  2824. h->deblocking_filter^= 1; // 1<->0
  2825. if( h->deblocking_filter ) {
  2826. h->slice_alpha_c0_offset += get_se_golomb(&s->gb) << 1;
  2827. h->slice_beta_offset += get_se_golomb(&s->gb) << 1;
  2828. if( h->slice_alpha_c0_offset > 104U
  2829. || h->slice_beta_offset > 104U){
  2830. av_log(s->avctx, AV_LOG_ERROR, "deblocking filter parameters %d %d out of range\n", h->slice_alpha_c0_offset, h->slice_beta_offset);
  2831. return -1;
  2832. }
  2833. }
  2834. }
  2835. if( s->avctx->skip_loop_filter >= AVDISCARD_ALL
  2836. ||(s->avctx->skip_loop_filter >= AVDISCARD_NONKEY && h->slice_type_nos != AV_PICTURE_TYPE_I)
  2837. ||(s->avctx->skip_loop_filter >= AVDISCARD_BIDIR && h->slice_type_nos == AV_PICTURE_TYPE_B)
  2838. ||(s->avctx->skip_loop_filter >= AVDISCARD_NONREF && h->nal_ref_idc == 0))
  2839. h->deblocking_filter= 0;
  2840. if(h->deblocking_filter == 1 && h0->max_contexts > 1) {
  2841. if(s->avctx->flags2 & CODEC_FLAG2_FAST) {
  2842. /* Cheat slightly for speed:
  2843. Do not bother to deblock across slices. */
  2844. h->deblocking_filter = 2;
  2845. } else {
  2846. h0->max_contexts = 1;
  2847. if(!h0->single_decode_warning) {
  2848. av_log(s->avctx, AV_LOG_INFO, "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
  2849. h0->single_decode_warning = 1;
  2850. }
  2851. if (h != h0) {
  2852. av_log(h->s.avctx, AV_LOG_ERROR, "Deblocking switched inside frame.\n");
  2853. return 1;
  2854. }
  2855. }
  2856. }
  2857. h->qp_thresh = 15 + 52 - FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset)
  2858. - FFMAX3(0, h->pps.chroma_qp_index_offset[0], h->pps.chroma_qp_index_offset[1])
  2859. + 6 * (h->sps.bit_depth_luma - 8);
  2860. #if 0 //FMO
  2861. if( h->pps.num_slice_groups > 1 && h->pps.mb_slice_group_map_type >= 3 && h->pps.mb_slice_group_map_type <= 5)
  2862. slice_group_change_cycle= get_bits(&s->gb, ?);
  2863. #endif
  2864. h0->last_slice_type = slice_type;
  2865. h->slice_num = ++h0->current_slice;
  2866. if(h->slice_num)
  2867. h0->slice_row[(h->slice_num-1)&(MAX_SLICES-1)]= s->resync_mb_y;
  2868. if ( h0->slice_row[h->slice_num&(MAX_SLICES-1)] + 3 >= s->resync_mb_y
  2869. && h0->slice_row[h->slice_num&(MAX_SLICES-1)] <= s->resync_mb_y
  2870. && h->slice_num >= MAX_SLICES) {
  2871. //in case of ASO this check needs to be updated depending on how we decide to assign slice numbers in this case
  2872. av_log(s->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);
  2873. }
  2874. for(j=0; j<2; j++){
  2875. int id_list[16];
  2876. int *ref2frm= h->ref2frm[h->slice_num&(MAX_SLICES-1)][j];
  2877. for(i=0; i<16; i++){
  2878. id_list[i]= 60;
  2879. if (h->ref_list[j][i].f.data[0]) {
  2880. int k;
  2881. uint8_t *base = h->ref_list[j][i].f.base[0];
  2882. for(k=0; k<h->short_ref_count; k++)
  2883. if (h->short_ref[k]->f.base[0] == base) {
  2884. id_list[i]= k;
  2885. break;
  2886. }
  2887. for(k=0; k<h->long_ref_count; k++)
  2888. if (h->long_ref[k] && h->long_ref[k]->f.base[0] == base) {
  2889. id_list[i]= h->short_ref_count + k;
  2890. break;
  2891. }
  2892. }
  2893. }
  2894. ref2frm[0]=
  2895. ref2frm[1]= -1;
  2896. for(i=0; i<16; i++)
  2897. ref2frm[i+2]= 4*id_list[i]
  2898. + (h->ref_list[j][i].f.reference & 3);
  2899. ref2frm[18+0]=
  2900. ref2frm[18+1]= -1;
  2901. for(i=16; i<48; i++)
  2902. ref2frm[i+4]= 4*id_list[(i-16)>>1]
  2903. + (h->ref_list[j][i].f.reference & 3);
  2904. }
  2905. //FIXME: fix draw_edges+PAFF+frame threads
  2906. h->emu_edge_width= (s->flags&CODEC_FLAG_EMU_EDGE || (!h->sps.frame_mbs_only_flag && s->avctx->active_thread_type)) ? 0 : 16;
  2907. h->emu_edge_height= (FRAME_MBAFF || FIELD_PICTURE) ? 0 : h->emu_edge_width;
  2908. if(s->avctx->debug&FF_DEBUG_PICT_INFO){
  2909. av_log(h->s.avctx, AV_LOG_DEBUG, "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",
  2910. h->slice_num,
  2911. (s->picture_structure==PICT_FRAME ? "F" : s->picture_structure==PICT_TOP_FIELD ? "T" : "B"),
  2912. first_mb_in_slice,
  2913. av_get_picture_type_char(h->slice_type), h->slice_type_fixed ? " fix" : "", h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
  2914. pps_id, h->frame_num,
  2915. s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1],
  2916. h->ref_count[0], h->ref_count[1],
  2917. s->qscale,
  2918. h->deblocking_filter, h->slice_alpha_c0_offset/2-26, h->slice_beta_offset/2-26,
  2919. h->use_weight,
  2920. h->use_weight==1 && h->use_weight_chroma ? "c" : "",
  2921. h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : ""
  2922. );
  2923. }
  2924. return 0;
  2925. }
  2926. int ff_h264_get_slice_type(const H264Context *h)
  2927. {
  2928. switch (h->slice_type) {
  2929. case AV_PICTURE_TYPE_P: return 0;
  2930. case AV_PICTURE_TYPE_B: return 1;
  2931. case AV_PICTURE_TYPE_I: return 2;
  2932. case AV_PICTURE_TYPE_SP: return 3;
  2933. case AV_PICTURE_TYPE_SI: return 4;
  2934. default: return -1;
  2935. }
  2936. }
  2937. static av_always_inline void fill_filter_caches_inter(H264Context *h, MpegEncContext * const s, int mb_type, int top_xy,
  2938. int left_xy[LEFT_MBS], int top_type, int left_type[LEFT_MBS], int mb_xy, int list)
  2939. {
  2940. int b_stride = h->b_stride;
  2941. int16_t (*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
  2942. int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
  2943. if(IS_INTER(mb_type) || IS_DIRECT(mb_type)){
  2944. if(USES_LIST(top_type, list)){
  2945. const int b_xy= h->mb2b_xy[top_xy] + 3*b_stride;
  2946. const int b8_xy= 4*top_xy + 2;
  2947. int (*ref2frm)[64] = h->ref2frm[ h->slice_table[top_xy]&(MAX_SLICES-1) ][0] + (MB_MBAFF ? 20 : 2);
  2948. AV_COPY128(mv_dst - 1*8, s->current_picture.f.motion_val[list][b_xy + 0]);
  2949. ref_cache[0 - 1*8]=
  2950. ref_cache[1 - 1*8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 0]];
  2951. ref_cache[2 - 1*8]=
  2952. ref_cache[3 - 1*8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 1]];
  2953. }else{
  2954. AV_ZERO128(mv_dst - 1*8);
  2955. AV_WN32A(&ref_cache[0 - 1*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
  2956. }
  2957. if(!IS_INTERLACED(mb_type^left_type[LTOP])){
  2958. if(USES_LIST(left_type[LTOP], list)){
  2959. const int b_xy= h->mb2b_xy[left_xy[LTOP]] + 3;
  2960. const int b8_xy= 4*left_xy[LTOP] + 1;
  2961. int (*ref2frm)[64] = h->ref2frm[ h->slice_table[left_xy[LTOP]]&(MAX_SLICES-1) ][0] + (MB_MBAFF ? 20 : 2);
  2962. AV_COPY32(mv_dst - 1 + 0, s->current_picture.f.motion_val[list][b_xy + b_stride*0]);
  2963. AV_COPY32(mv_dst - 1 + 8, s->current_picture.f.motion_val[list][b_xy + b_stride*1]);
  2964. AV_COPY32(mv_dst - 1 + 16, s->current_picture.f.motion_val[list][b_xy + b_stride*2]);
  2965. AV_COPY32(mv_dst - 1 + 24, s->current_picture.f.motion_val[list][b_xy + b_stride*3]);
  2966. ref_cache[-1 + 0]=
  2967. ref_cache[-1 + 8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2*0]];
  2968. ref_cache[-1 + 16]=
  2969. ref_cache[-1 + 24]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2*1]];
  2970. }else{
  2971. AV_ZERO32(mv_dst - 1 + 0);
  2972. AV_ZERO32(mv_dst - 1 + 8);
  2973. AV_ZERO32(mv_dst - 1 +16);
  2974. AV_ZERO32(mv_dst - 1 +24);
  2975. ref_cache[-1 + 0]=
  2976. ref_cache[-1 + 8]=
  2977. ref_cache[-1 + 16]=
  2978. ref_cache[-1 + 24]= LIST_NOT_USED;
  2979. }
  2980. }
  2981. }
  2982. if(!USES_LIST(mb_type, list)){
  2983. fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0,0), 4);
  2984. AV_WN32A(&ref_cache[0*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
  2985. AV_WN32A(&ref_cache[1*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
  2986. AV_WN32A(&ref_cache[2*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
  2987. AV_WN32A(&ref_cache[3*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
  2988. return;
  2989. }
  2990. {
  2991. int8_t *ref = &s->current_picture.f.ref_index[list][4*mb_xy];
  2992. int (*ref2frm)[64] = h->ref2frm[ h->slice_num&(MAX_SLICES-1) ][0] + (MB_MBAFF ? 20 : 2);
  2993. uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]],ref2frm[list][ref[1]])&0x00FF00FF)*0x0101;
  2994. uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]],ref2frm[list][ref[3]])&0x00FF00FF)*0x0101;
  2995. AV_WN32A(&ref_cache[0*8], ref01);
  2996. AV_WN32A(&ref_cache[1*8], ref01);
  2997. AV_WN32A(&ref_cache[2*8], ref23);
  2998. AV_WN32A(&ref_cache[3*8], ref23);
  2999. }
  3000. {
  3001. int16_t (*mv_src)[2] = &s->current_picture.f.motion_val[list][4*s->mb_x + 4*s->mb_y*b_stride];
  3002. AV_COPY128(mv_dst + 8*0, mv_src + 0*b_stride);
  3003. AV_COPY128(mv_dst + 8*1, mv_src + 1*b_stride);
  3004. AV_COPY128(mv_dst + 8*2, mv_src + 2*b_stride);
  3005. AV_COPY128(mv_dst + 8*3, mv_src + 3*b_stride);
  3006. }
  3007. }
  3008. /**
  3009. *
  3010. * @return non zero if the loop filter can be skiped
  3011. */
  3012. static int fill_filter_caches(H264Context *h, int mb_type){
  3013. MpegEncContext * const s = &h->s;
  3014. const int mb_xy= h->mb_xy;
  3015. int top_xy, left_xy[LEFT_MBS];
  3016. int top_type, left_type[LEFT_MBS];
  3017. uint8_t *nnz;
  3018. uint8_t *nnz_cache;
  3019. top_xy = mb_xy - (s->mb_stride << MB_FIELD);
  3020. /* Wow, what a mess, why didn't they simplify the interlacing & intra
  3021. * stuff, I can't imagine that these complex rules are worth it. */
  3022. left_xy[LBOT] = left_xy[LTOP] = mb_xy-1;
  3023. if(FRAME_MBAFF){
  3024. const int left_mb_field_flag = IS_INTERLACED(s->current_picture.f.mb_type[mb_xy - 1]);
  3025. const int curr_mb_field_flag = IS_INTERLACED(mb_type);
  3026. if(s->mb_y&1){
  3027. if (left_mb_field_flag != curr_mb_field_flag) {
  3028. left_xy[LTOP] -= s->mb_stride;
  3029. }
  3030. }else{
  3031. if(curr_mb_field_flag){
  3032. top_xy += s->mb_stride & (((s->current_picture.f.mb_type[top_xy] >> 7) & 1) - 1);
  3033. }
  3034. if (left_mb_field_flag != curr_mb_field_flag) {
  3035. left_xy[LBOT] += s->mb_stride;
  3036. }
  3037. }
  3038. }
  3039. h->top_mb_xy = top_xy;
  3040. h->left_mb_xy[LTOP] = left_xy[LTOP];
  3041. h->left_mb_xy[LBOT] = left_xy[LBOT];
  3042. {
  3043. //for sufficiently low qp, filtering wouldn't do anything
  3044. //this is a conservative estimate: could also check beta_offset and more accurate chroma_qp
  3045. int qp_thresh = h->qp_thresh; //FIXME strictly we should store qp_thresh for each mb of a slice
  3046. int qp = s->current_picture.f.qscale_table[mb_xy];
  3047. if(qp <= qp_thresh
  3048. && (left_xy[LTOP] < 0 || ((qp + s->current_picture.f.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh)
  3049. && (top_xy < 0 || ((qp + s->current_picture.f.qscale_table[top_xy ] + 1) >> 1) <= qp_thresh)) {
  3050. if(!FRAME_MBAFF)
  3051. return 1;
  3052. if ((left_xy[LTOP] < 0 || ((qp + s->current_picture.f.qscale_table[left_xy[LBOT] ] + 1) >> 1) <= qp_thresh) &&
  3053. (top_xy < s->mb_stride || ((qp + s->current_picture.f.qscale_table[top_xy - s->mb_stride] + 1) >> 1) <= qp_thresh))
  3054. return 1;
  3055. }
  3056. }
  3057. top_type = s->current_picture.f.mb_type[top_xy];
  3058. left_type[LTOP] = s->current_picture.f.mb_type[left_xy[LTOP]];
  3059. left_type[LBOT] = s->current_picture.f.mb_type[left_xy[LBOT]];
  3060. if(h->deblocking_filter == 2){
  3061. if(h->slice_table[top_xy ] != h->slice_num) top_type= 0;
  3062. if(h->slice_table[left_xy[LBOT]] != h->slice_num) left_type[LTOP]= left_type[LBOT]= 0;
  3063. }else{
  3064. if(h->slice_table[top_xy ] == 0xFFFF) top_type= 0;
  3065. if(h->slice_table[left_xy[LBOT]] == 0xFFFF) left_type[LTOP]= left_type[LBOT] =0;
  3066. }
  3067. h->top_type = top_type;
  3068. h->left_type[LTOP]= left_type[LTOP];
  3069. h->left_type[LBOT]= left_type[LBOT];
  3070. if(IS_INTRA(mb_type))
  3071. return 0;
  3072. fill_filter_caches_inter(h, s, mb_type, top_xy, left_xy, top_type, left_type, mb_xy, 0);
  3073. if(h->list_count == 2)
  3074. fill_filter_caches_inter(h, s, mb_type, top_xy, left_xy, top_type, left_type, mb_xy, 1);
  3075. nnz = h->non_zero_count[mb_xy];
  3076. nnz_cache = h->non_zero_count_cache;
  3077. AV_COPY32(&nnz_cache[4+8*1], &nnz[ 0]);
  3078. AV_COPY32(&nnz_cache[4+8*2], &nnz[ 4]);
  3079. AV_COPY32(&nnz_cache[4+8*3], &nnz[ 8]);
  3080. AV_COPY32(&nnz_cache[4+8*4], &nnz[12]);
  3081. h->cbp= h->cbp_table[mb_xy];
  3082. if(top_type){
  3083. nnz = h->non_zero_count[top_xy];
  3084. AV_COPY32(&nnz_cache[4+8*0], &nnz[3*4]);
  3085. }
  3086. if(left_type[LTOP]){
  3087. nnz = h->non_zero_count[left_xy[LTOP]];
  3088. nnz_cache[3+8*1]= nnz[3+0*4];
  3089. nnz_cache[3+8*2]= nnz[3+1*4];
  3090. nnz_cache[3+8*3]= nnz[3+2*4];
  3091. nnz_cache[3+8*4]= nnz[3+3*4];
  3092. }
  3093. // CAVLC 8x8dct requires NNZ values for residual decoding that differ from what the loop filter needs
  3094. if(!CABAC && h->pps.transform_8x8_mode){
  3095. if(IS_8x8DCT(top_type)){
  3096. nnz_cache[4+8*0]=
  3097. nnz_cache[5+8*0]= (h->cbp_table[top_xy] & 0x4000) >> 12;
  3098. nnz_cache[6+8*0]=
  3099. nnz_cache[7+8*0]= (h->cbp_table[top_xy] & 0x8000) >> 12;
  3100. }
  3101. if(IS_8x8DCT(left_type[LTOP])){
  3102. nnz_cache[3+8*1]=
  3103. nnz_cache[3+8*2]= (h->cbp_table[left_xy[LTOP]]&0x2000) >> 12; //FIXME check MBAFF
  3104. }
  3105. if(IS_8x8DCT(left_type[LBOT])){
  3106. nnz_cache[3+8*3]=
  3107. nnz_cache[3+8*4]= (h->cbp_table[left_xy[LBOT]]&0x8000) >> 12; //FIXME check MBAFF
  3108. }
  3109. if(IS_8x8DCT(mb_type)){
  3110. nnz_cache[scan8[0 ]]= nnz_cache[scan8[1 ]]=
  3111. nnz_cache[scan8[2 ]]= nnz_cache[scan8[3 ]]= (h->cbp & 0x1000) >> 12;
  3112. nnz_cache[scan8[0+ 4]]= nnz_cache[scan8[1+ 4]]=
  3113. nnz_cache[scan8[2+ 4]]= nnz_cache[scan8[3+ 4]]= (h->cbp & 0x2000) >> 12;
  3114. nnz_cache[scan8[0+ 8]]= nnz_cache[scan8[1+ 8]]=
  3115. nnz_cache[scan8[2+ 8]]= nnz_cache[scan8[3+ 8]]= (h->cbp & 0x4000) >> 12;
  3116. nnz_cache[scan8[0+12]]= nnz_cache[scan8[1+12]]=
  3117. nnz_cache[scan8[2+12]]= nnz_cache[scan8[3+12]]= (h->cbp & 0x8000) >> 12;
  3118. }
  3119. }
  3120. return 0;
  3121. }
  3122. static void loop_filter(H264Context *h, int start_x, int end_x){
  3123. MpegEncContext * const s = &h->s;
  3124. uint8_t *dest_y, *dest_cb, *dest_cr;
  3125. int linesize, uvlinesize, mb_x, mb_y;
  3126. const int end_mb_y= s->mb_y + FRAME_MBAFF;
  3127. const int old_slice_type= h->slice_type;
  3128. const int pixel_shift = h->pixel_shift;
  3129. const int block_h = 16 >> s->chroma_y_shift;
  3130. if(h->deblocking_filter) {
  3131. for(mb_x= start_x; mb_x<end_x; mb_x++){
  3132. for(mb_y=end_mb_y - FRAME_MBAFF; mb_y<= end_mb_y; mb_y++){
  3133. int mb_xy, mb_type;
  3134. mb_xy = h->mb_xy = mb_x + mb_y*s->mb_stride;
  3135. h->slice_num= h->slice_table[mb_xy];
  3136. mb_type = s->current_picture.f.mb_type[mb_xy];
  3137. h->list_count= h->list_counts[mb_xy];
  3138. if(FRAME_MBAFF)
  3139. h->mb_mbaff = h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
  3140. s->mb_x= mb_x;
  3141. s->mb_y= mb_y;
  3142. dest_y = s->current_picture.f.data[0] + ((mb_x << pixel_shift) + mb_y * s->linesize ) * 16;
  3143. dest_cb = s->current_picture.f.data[1] + (mb_x << pixel_shift) * (8 << CHROMA444) + mb_y * s->uvlinesize * block_h;
  3144. dest_cr = s->current_picture.f.data[2] + (mb_x << pixel_shift) * (8 << CHROMA444) + mb_y * s->uvlinesize * block_h;
  3145. //FIXME simplify above
  3146. if (MB_FIELD) {
  3147. linesize = h->mb_linesize = s->linesize * 2;
  3148. uvlinesize = h->mb_uvlinesize = s->uvlinesize * 2;
  3149. if(mb_y&1){ //FIXME move out of this function?
  3150. dest_y -= s->linesize*15;
  3151. dest_cb-= s->uvlinesize * (block_h - 1);
  3152. dest_cr-= s->uvlinesize * (block_h - 1);
  3153. }
  3154. } else {
  3155. linesize = h->mb_linesize = s->linesize;
  3156. uvlinesize = h->mb_uvlinesize = s->uvlinesize;
  3157. }
  3158. backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
  3159. if(fill_filter_caches(h, mb_type))
  3160. continue;
  3161. h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.f.qscale_table[mb_xy]);
  3162. h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.f.qscale_table[mb_xy]);
  3163. if (FRAME_MBAFF) {
  3164. ff_h264_filter_mb (h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
  3165. } else {
  3166. ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
  3167. }
  3168. }
  3169. }
  3170. }
  3171. h->slice_type= old_slice_type;
  3172. s->mb_x= end_x;
  3173. s->mb_y= end_mb_y - FRAME_MBAFF;
  3174. h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
  3175. h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
  3176. }
  3177. static void predict_field_decoding_flag(H264Context *h){
  3178. MpegEncContext * const s = &h->s;
  3179. const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
  3180. int mb_type = (h->slice_table[mb_xy-1] == h->slice_num)
  3181. ? s->current_picture.f.mb_type[mb_xy - 1]
  3182. : (h->slice_table[mb_xy-s->mb_stride] == h->slice_num)
  3183. ? s->current_picture.f.mb_type[mb_xy - s->mb_stride]
  3184. : 0;
  3185. h->mb_mbaff = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
  3186. }
  3187. /**
  3188. * Draw edges and report progress for the last MB row.
  3189. */
  3190. static void decode_finish_row(H264Context *h){
  3191. MpegEncContext * const s = &h->s;
  3192. int top = 16*(s->mb_y >> FIELD_PICTURE);
  3193. int height = 16 << FRAME_MBAFF;
  3194. int deblock_border = (16 + 4) << FRAME_MBAFF;
  3195. int pic_height = 16*s->mb_height >> FIELD_PICTURE;
  3196. if (h->deblocking_filter) {
  3197. if((top + height) >= pic_height)
  3198. height += deblock_border;
  3199. top -= deblock_border;
  3200. }
  3201. if (top >= pic_height || (top + height) < h->emu_edge_height)
  3202. return;
  3203. height = FFMIN(height, pic_height - top);
  3204. if (top < h->emu_edge_height) {
  3205. height = top+height;
  3206. top = 0;
  3207. }
  3208. ff_draw_horiz_band(s, top, height);
  3209. if (s->dropable) return;
  3210. ff_thread_report_progress((AVFrame*)s->current_picture_ptr, top + height - 1,
  3211. s->picture_structure==PICT_BOTTOM_FIELD);
  3212. }
  3213. static int decode_slice(struct AVCodecContext *avctx, void *arg){
  3214. H264Context *h = *(void**)arg;
  3215. MpegEncContext * const s = &h->s;
  3216. const int part_mask= s->partitioned_frame ? (AC_END|AC_ERROR) : 0x7F;
  3217. int lf_x_start = s->mb_x;
  3218. s->mb_skip_run= -1;
  3219. h->is_complex = FRAME_MBAFF || s->picture_structure != PICT_FRAME || s->codec_id != CODEC_ID_H264 ||
  3220. (CONFIG_GRAY && (s->flags&CODEC_FLAG_GRAY));
  3221. if( h->pps.cabac ) {
  3222. /* realign */
  3223. align_get_bits( &s->gb );
  3224. /* init cabac */
  3225. ff_init_cabac_states( &h->cabac);
  3226. ff_init_cabac_decoder( &h->cabac,
  3227. s->gb.buffer + get_bits_count(&s->gb)/8,
  3228. (get_bits_left(&s->gb) + 7)/8);
  3229. ff_h264_init_cabac_states(h);
  3230. for(;;){
  3231. //START_TIMER
  3232. int ret = ff_h264_decode_mb_cabac(h);
  3233. int eos;
  3234. //STOP_TIMER("decode_mb_cabac")
  3235. if(ret>=0) ff_h264_hl_decode_mb(h);
  3236. if( ret >= 0 && FRAME_MBAFF ) { //FIXME optimal? or let mb_decode decode 16x32 ?
  3237. s->mb_y++;
  3238. ret = ff_h264_decode_mb_cabac(h);
  3239. if(ret>=0) ff_h264_hl_decode_mb(h);
  3240. s->mb_y--;
  3241. }
  3242. eos = get_cabac_terminate( &h->cabac );
  3243. if((s->workaround_bugs & FF_BUG_TRUNCATED) && h->cabac.bytestream > h->cabac.bytestream_end + 2){
  3244. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
  3245. if (s->mb_x >= lf_x_start) loop_filter(h, lf_x_start, s->mb_x + 1);
  3246. return 0;
  3247. }
  3248. if( ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 2) {
  3249. av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d, bytestream (%td)\n", s->mb_x, s->mb_y, h->cabac.bytestream_end - h->cabac.bytestream);
  3250. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
  3251. return -1;
  3252. }
  3253. if( ++s->mb_x >= s->mb_width ) {
  3254. loop_filter(h, lf_x_start, s->mb_x);
  3255. s->mb_x = lf_x_start = 0;
  3256. decode_finish_row(h);
  3257. ++s->mb_y;
  3258. if(FIELD_OR_MBAFF_PICTURE) {
  3259. ++s->mb_y;
  3260. if(FRAME_MBAFF && s->mb_y < s->mb_height)
  3261. predict_field_decoding_flag(h);
  3262. }
  3263. }
  3264. if( eos || s->mb_y >= s->mb_height ) {
  3265. tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
  3266. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
  3267. if (s->mb_x > lf_x_start) loop_filter(h, lf_x_start, s->mb_x);
  3268. return 0;
  3269. }
  3270. }
  3271. } else {
  3272. for(;;){
  3273. int ret = ff_h264_decode_mb_cavlc(h);
  3274. if(ret>=0) ff_h264_hl_decode_mb(h);
  3275. if(ret>=0 && FRAME_MBAFF){ //FIXME optimal? or let mb_decode decode 16x32 ?
  3276. s->mb_y++;
  3277. ret = ff_h264_decode_mb_cavlc(h);
  3278. if(ret>=0) ff_h264_hl_decode_mb(h);
  3279. s->mb_y--;
  3280. }
  3281. if(ret<0){
  3282. av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
  3283. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
  3284. return -1;
  3285. }
  3286. if(++s->mb_x >= s->mb_width){
  3287. loop_filter(h, lf_x_start, s->mb_x);
  3288. s->mb_x = lf_x_start = 0;
  3289. decode_finish_row(h);
  3290. ++s->mb_y;
  3291. if(FIELD_OR_MBAFF_PICTURE) {
  3292. ++s->mb_y;
  3293. if(FRAME_MBAFF && s->mb_y < s->mb_height)
  3294. predict_field_decoding_flag(h);
  3295. }
  3296. if(s->mb_y >= s->mb_height){
  3297. tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
  3298. if( get_bits_count(&s->gb) == s->gb.size_in_bits
  3299. || get_bits_count(&s->gb) < s->gb.size_in_bits && s->avctx->error_recognition < FF_ER_AGGRESSIVE) {
  3300. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
  3301. return 0;
  3302. }else{
  3303. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
  3304. return -1;
  3305. }
  3306. }
  3307. }
  3308. if(get_bits_count(&s->gb) >= s->gb.size_in_bits && s->mb_skip_run<=0){
  3309. tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
  3310. if(get_bits_count(&s->gb) == s->gb.size_in_bits ){
  3311. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
  3312. if (s->mb_x > lf_x_start) loop_filter(h, lf_x_start, s->mb_x);
  3313. return 0;
  3314. }else{
  3315. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
  3316. return -1;
  3317. }
  3318. }
  3319. }
  3320. }
  3321. }
  3322. /**
  3323. * Call decode_slice() for each context.
  3324. *
  3325. * @param h h264 master context
  3326. * @param context_count number of contexts to execute
  3327. */
  3328. static int execute_decode_slices(H264Context *h, int context_count){
  3329. MpegEncContext * const s = &h->s;
  3330. AVCodecContext * const avctx= s->avctx;
  3331. H264Context *hx;
  3332. int i;
  3333. if (s->avctx->hwaccel || s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
  3334. return 0;
  3335. if(context_count == 1) {
  3336. return decode_slice(avctx, &h);
  3337. } else {
  3338. for(i = 1; i < context_count; i++) {
  3339. hx = h->thread_context[i];
  3340. hx->s.error_recognition = avctx->error_recognition;
  3341. hx->s.error_count = 0;
  3342. hx->x264_build= h->x264_build;
  3343. }
  3344. avctx->execute(avctx, (void *)decode_slice,
  3345. h->thread_context, NULL, context_count, sizeof(void*));
  3346. /* pull back stuff from slices to master context */
  3347. hx = h->thread_context[context_count - 1];
  3348. s->mb_x = hx->s.mb_x;
  3349. s->mb_y = hx->s.mb_y;
  3350. s->dropable = hx->s.dropable;
  3351. s->picture_structure = hx->s.picture_structure;
  3352. for(i = 1; i < context_count; i++)
  3353. h->s.error_count += h->thread_context[i]->s.error_count;
  3354. }
  3355. return 0;
  3356. }
  3357. static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
  3358. MpegEncContext * const s = &h->s;
  3359. AVCodecContext * const avctx= s->avctx;
  3360. H264Context *hx; ///< thread context
  3361. int buf_index;
  3362. int context_count;
  3363. int next_avc;
  3364. int pass = !(avctx->active_thread_type & FF_THREAD_FRAME);
  3365. int nals_needed=0; ///< number of NALs that need decoding before the next frame thread starts
  3366. int nal_index;
  3367. h->max_contexts = (HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_SLICE)) ? avctx->thread_count : 1;
  3368. if(!(s->flags2 & CODEC_FLAG2_CHUNKS)){
  3369. h->current_slice = 0;
  3370. if (!s->first_field)
  3371. s->current_picture_ptr= NULL;
  3372. ff_h264_reset_sei(h);
  3373. }
  3374. for(;pass <= 1;pass++){
  3375. buf_index = 0;
  3376. context_count = 0;
  3377. next_avc = h->is_avc ? 0 : buf_size;
  3378. nal_index = 0;
  3379. for(;;){
  3380. int consumed;
  3381. int dst_length;
  3382. int bit_length;
  3383. const uint8_t *ptr;
  3384. int i, nalsize = 0;
  3385. int err;
  3386. if(buf_index >= next_avc) {
  3387. if(buf_index >= buf_size) break;
  3388. nalsize = 0;
  3389. for(i = 0; i < h->nal_length_size; i++)
  3390. nalsize = (nalsize << 8) | buf[buf_index++];
  3391. if(nalsize <= 0 || nalsize > buf_size - buf_index){
  3392. av_log(h->s.avctx, AV_LOG_ERROR, "AVC: nal size %d\n", nalsize);
  3393. break;
  3394. }
  3395. next_avc= buf_index + nalsize;
  3396. } else {
  3397. // start code prefix search
  3398. for(; buf_index + 3 < next_avc; buf_index++){
  3399. // This should always succeed in the first iteration.
  3400. if(buf[buf_index] == 0 && buf[buf_index+1] == 0 && buf[buf_index+2] == 1)
  3401. break;
  3402. }
  3403. if(buf_index+3 >= buf_size) break;
  3404. buf_index+=3;
  3405. if(buf_index >= next_avc) continue;
  3406. }
  3407. hx = h->thread_context[context_count];
  3408. ptr= ff_h264_decode_nal(hx, buf + buf_index, &dst_length, &consumed, next_avc - buf_index);
  3409. if (ptr==NULL || dst_length < 0){
  3410. return -1;
  3411. }
  3412. i= buf_index + consumed;
  3413. if((s->workaround_bugs & FF_BUG_AUTODETECT) && i+3<next_avc &&
  3414. buf[i]==0x00 && buf[i+1]==0x00 && buf[i+2]==0x01 && buf[i+3]==0xE0)
  3415. s->workaround_bugs |= FF_BUG_TRUNCATED;
  3416. if(!(s->workaround_bugs & FF_BUG_TRUNCATED)){
  3417. while(dst_length > 0 && ptr[dst_length - 1] == 0)
  3418. dst_length--;
  3419. }
  3420. bit_length= !dst_length ? 0 : (8*dst_length - ff_h264_decode_rbsp_trailing(h, ptr + dst_length - 1));
  3421. if(s->avctx->debug&FF_DEBUG_STARTCODE){
  3422. av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d/%d at %d/%d length %d\n", hx->nal_unit_type, hx->nal_ref_idc, buf_index, buf_size, dst_length);
  3423. }
  3424. if (h->is_avc && (nalsize != consumed) && nalsize){
  3425. av_log(h->s.avctx, AV_LOG_DEBUG, "AVC: Consumed only %d bytes instead of %d\n", consumed, nalsize);
  3426. }
  3427. buf_index += consumed;
  3428. nal_index++;
  3429. if(pass == 0) {
  3430. // packets can sometimes contain multiple PPS/SPS
  3431. // e.g. two PAFF field pictures in one packet, or a demuxer which splits NALs strangely
  3432. // if so, when frame threading we can't start the next thread until we've read all of them
  3433. switch (hx->nal_unit_type) {
  3434. case NAL_SPS:
  3435. case NAL_PPS:
  3436. nals_needed = nal_index;
  3437. break;
  3438. case NAL_IDR_SLICE:
  3439. case NAL_SLICE:
  3440. init_get_bits(&hx->s.gb, ptr, bit_length);
  3441. if (!get_ue_golomb(&hx->s.gb))
  3442. nals_needed = nal_index;
  3443. }
  3444. continue;
  3445. }
  3446. //FIXME do not discard SEI id
  3447. if(avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc == 0)
  3448. continue;
  3449. again:
  3450. err = 0;
  3451. switch(hx->nal_unit_type){
  3452. case NAL_IDR_SLICE:
  3453. if (h->nal_unit_type != NAL_IDR_SLICE) {
  3454. av_log(h->s.avctx, AV_LOG_ERROR, "Invalid mix of idr and non-idr slices");
  3455. return -1;
  3456. }
  3457. idr(h); //FIXME ensure we don't loose some frames if there is reordering
  3458. case NAL_SLICE:
  3459. init_get_bits(&hx->s.gb, ptr, bit_length);
  3460. hx->intra_gb_ptr=
  3461. hx->inter_gb_ptr= &hx->s.gb;
  3462. hx->s.data_partitioning = 0;
  3463. if((err = decode_slice_header(hx, h)))
  3464. break;
  3465. if ( h->sei_recovery_frame_cnt >= 0
  3466. && ((h->recovery_frame - h->frame_num) & ((1 << h->sps.log2_max_frame_num)-1)) > h->sei_recovery_frame_cnt) {
  3467. h->recovery_frame = (h->frame_num + h->sei_recovery_frame_cnt) %
  3468. (1 << h->sps.log2_max_frame_num);
  3469. }
  3470. s->current_picture_ptr->f.key_frame |=
  3471. (hx->nal_unit_type == NAL_IDR_SLICE);
  3472. if (h->recovery_frame == h->frame_num) {
  3473. h->sync |= 1;
  3474. h->recovery_frame = -1;
  3475. }
  3476. h->sync |= !!s->current_picture_ptr->f.key_frame;
  3477. h->sync |= 3*!!(s->flags2 & CODEC_FLAG2_SHOW_ALL);
  3478. s->current_picture_ptr->sync = h->sync;
  3479. if (h->current_slice == 1) {
  3480. if(!(s->flags2 & CODEC_FLAG2_CHUNKS)) {
  3481. decode_postinit(h, nal_index >= nals_needed);
  3482. }
  3483. if (s->avctx->hwaccel && s->avctx->hwaccel->start_frame(s->avctx, NULL, 0) < 0)
  3484. return -1;
  3485. if(CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
  3486. ff_vdpau_h264_picture_start(s);
  3487. }
  3488. if(hx->redundant_pic_count==0
  3489. && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
  3490. && (avctx->skip_frame < AVDISCARD_BIDIR || hx->slice_type_nos!=AV_PICTURE_TYPE_B)
  3491. && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type_nos==AV_PICTURE_TYPE_I)
  3492. && avctx->skip_frame < AVDISCARD_ALL){
  3493. if(avctx->hwaccel) {
  3494. if (avctx->hwaccel->decode_slice(avctx, &buf[buf_index - consumed], consumed) < 0)
  3495. return -1;
  3496. }else
  3497. if(CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU){
  3498. static const uint8_t start_code[] = {0x00, 0x00, 0x01};
  3499. ff_vdpau_add_data_chunk(s, start_code, sizeof(start_code));
  3500. ff_vdpau_add_data_chunk(s, &buf[buf_index - consumed], consumed );
  3501. }else
  3502. context_count++;
  3503. }
  3504. break;
  3505. case NAL_DPA:
  3506. init_get_bits(&hx->s.gb, ptr, bit_length);
  3507. hx->intra_gb_ptr=
  3508. hx->inter_gb_ptr= NULL;
  3509. if ((err = decode_slice_header(hx, h)) < 0)
  3510. break;
  3511. hx->s.data_partitioning = 1;
  3512. break;
  3513. case NAL_DPB:
  3514. init_get_bits(&hx->intra_gb, ptr, bit_length);
  3515. hx->intra_gb_ptr= &hx->intra_gb;
  3516. break;
  3517. case NAL_DPC:
  3518. init_get_bits(&hx->inter_gb, ptr, bit_length);
  3519. hx->inter_gb_ptr= &hx->inter_gb;
  3520. if(hx->redundant_pic_count==0 && hx->intra_gb_ptr && hx->s.data_partitioning
  3521. && s->context_initialized
  3522. && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
  3523. && (avctx->skip_frame < AVDISCARD_BIDIR || hx->slice_type_nos!=AV_PICTURE_TYPE_B)
  3524. && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type_nos==AV_PICTURE_TYPE_I)
  3525. && avctx->skip_frame < AVDISCARD_ALL)
  3526. context_count++;
  3527. break;
  3528. case NAL_SEI:
  3529. init_get_bits(&s->gb, ptr, bit_length);
  3530. ff_h264_decode_sei(h);
  3531. break;
  3532. case NAL_SPS:
  3533. init_get_bits(&s->gb, ptr, bit_length);
  3534. if(ff_h264_decode_seq_parameter_set(h) < 0 && (h->is_avc ? (nalsize != consumed) && nalsize : 1)){
  3535. av_log(h->s.avctx, AV_LOG_DEBUG, "SPS decoding failure, trying alternative mode\n");
  3536. if(h->is_avc) av_assert0(next_avc - buf_index + consumed == nalsize);
  3537. init_get_bits(&s->gb, &buf[buf_index + 1 - consumed], 8*(next_avc - buf_index + consumed));
  3538. ff_h264_decode_seq_parameter_set(h);
  3539. }
  3540. if (s->flags& CODEC_FLAG_LOW_DELAY ||
  3541. (h->sps.bitstream_restriction_flag && !h->sps.num_reorder_frames))
  3542. s->low_delay=1;
  3543. if(avctx->has_b_frames < 2)
  3544. avctx->has_b_frames= !s->low_delay;
  3545. break;
  3546. case NAL_PPS:
  3547. init_get_bits(&s->gb, ptr, bit_length);
  3548. ff_h264_decode_picture_parameter_set(h, bit_length);
  3549. break;
  3550. case NAL_AUD:
  3551. case NAL_END_SEQUENCE:
  3552. case NAL_END_STREAM:
  3553. case NAL_FILLER_DATA:
  3554. case NAL_SPS_EXT:
  3555. case NAL_AUXILIARY_SLICE:
  3556. break;
  3557. default:
  3558. av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n", hx->nal_unit_type, bit_length);
  3559. }
  3560. if(context_count == h->max_contexts) {
  3561. execute_decode_slices(h, context_count);
  3562. context_count = 0;
  3563. }
  3564. if (err < 0)
  3565. av_log(h->s.avctx, AV_LOG_ERROR, "decode_slice_header error\n");
  3566. else if(err == 1) {
  3567. /* Slice could not be decoded in parallel mode, copy down
  3568. * NAL unit stuff to context 0 and restart. Note that
  3569. * rbsp_buffer is not transferred, but since we no longer
  3570. * run in parallel mode this should not be an issue. */
  3571. h->nal_unit_type = hx->nal_unit_type;
  3572. h->nal_ref_idc = hx->nal_ref_idc;
  3573. hx = h;
  3574. goto again;
  3575. }
  3576. }
  3577. }
  3578. if(context_count)
  3579. execute_decode_slices(h, context_count);
  3580. return buf_index;
  3581. }
  3582. /**
  3583. * returns the number of bytes consumed for building the current frame
  3584. */
  3585. static int get_consumed_bytes(MpegEncContext *s, int pos, int buf_size){
  3586. if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
  3587. if(pos+10>buf_size) pos=buf_size; // oops ;)
  3588. return pos;
  3589. }
  3590. static int decode_frame(AVCodecContext *avctx,
  3591. void *data, int *data_size,
  3592. AVPacket *avpkt)
  3593. {
  3594. const uint8_t *buf = avpkt->data;
  3595. int buf_size = avpkt->size;
  3596. H264Context *h = avctx->priv_data;
  3597. MpegEncContext *s = &h->s;
  3598. AVFrame *pict = data;
  3599. int buf_index;
  3600. s->flags= avctx->flags;
  3601. s->flags2= avctx->flags2;
  3602. /* end of stream, output what is still in the buffers */
  3603. out:
  3604. if (buf_size == 0) {
  3605. Picture *out;
  3606. int i, out_idx;
  3607. s->current_picture_ptr = NULL;
  3608. //FIXME factorize this with the output code below
  3609. out = h->delayed_pic[0];
  3610. out_idx = 0;
  3611. for (i = 1; h->delayed_pic[i] && !h->delayed_pic[i]->f.key_frame && !h->delayed_pic[i]->mmco_reset; i++)
  3612. if(h->delayed_pic[i]->poc < out->poc){
  3613. out = h->delayed_pic[i];
  3614. out_idx = i;
  3615. }
  3616. for(i=out_idx; h->delayed_pic[i]; i++)
  3617. h->delayed_pic[i] = h->delayed_pic[i+1];
  3618. if(out){
  3619. *data_size = sizeof(AVFrame);
  3620. *pict= *(AVFrame*)out;
  3621. }
  3622. return 0;
  3623. }
  3624. if(h->is_avc && buf_size >= 9 && AV_RB32(buf)==0x0164001F && buf[5] && buf[8]==0x67)
  3625. return ff_h264_decode_extradata(h, buf, buf_size);
  3626. buf_index=decode_nal_units(h, buf, buf_size);
  3627. if(buf_index < 0)
  3628. return -1;
  3629. if (!s->current_picture_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
  3630. buf_size = 0;
  3631. goto out;
  3632. }
  3633. if(!(s->flags2 & CODEC_FLAG2_CHUNKS) && !s->current_picture_ptr){
  3634. if (avctx->skip_frame >= AVDISCARD_NONREF ||
  3635. buf_size >= 4 && !memcmp("Q264", buf, 4))
  3636. return 0;
  3637. av_log(avctx, AV_LOG_ERROR, "no frame!\n");
  3638. return -1;
  3639. }
  3640. if(!(s->flags2 & CODEC_FLAG2_CHUNKS) || (s->mb_y >= s->mb_height && s->mb_height)){
  3641. if(s->flags2 & CODEC_FLAG2_CHUNKS) decode_postinit(h, 1);
  3642. field_end(h, 0);
  3643. *data_size = 0; /* Wait for second field. */
  3644. if (h->next_output_pic && h->next_output_pic->sync) {
  3645. if(h->sync>1 || h->next_output_pic->f.pict_type != AV_PICTURE_TYPE_B){
  3646. *data_size = sizeof(AVFrame);
  3647. *pict = *(AVFrame*)h->next_output_pic;
  3648. }
  3649. }
  3650. }
  3651. assert(pict->data[0] || !*data_size);
  3652. ff_print_debug_info(s, pict);
  3653. //printf("out %d\n", (int)pict->data[0]);
  3654. return get_consumed_bytes(s, buf_index, buf_size);
  3655. }
  3656. #if 0
  3657. static inline void fill_mb_avail(H264Context *h){
  3658. MpegEncContext * const s = &h->s;
  3659. const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
  3660. if(s->mb_y){
  3661. h->mb_avail[0]= s->mb_x && h->slice_table[mb_xy - s->mb_stride - 1] == h->slice_num;
  3662. h->mb_avail[1]= h->slice_table[mb_xy - s->mb_stride ] == h->slice_num;
  3663. h->mb_avail[2]= s->mb_x+1 < s->mb_width && h->slice_table[mb_xy - s->mb_stride + 1] == h->slice_num;
  3664. }else{
  3665. h->mb_avail[0]=
  3666. h->mb_avail[1]=
  3667. h->mb_avail[2]= 0;
  3668. }
  3669. h->mb_avail[3]= s->mb_x && h->slice_table[mb_xy - 1] == h->slice_num;
  3670. h->mb_avail[4]= 1; //FIXME move out
  3671. h->mb_avail[5]= 0; //FIXME move out
  3672. }
  3673. #endif
  3674. #ifdef TEST
  3675. #undef printf
  3676. #undef random
  3677. #define COUNT 8000
  3678. #define SIZE (COUNT*40)
  3679. extern AVCodec ff_h264_decoder;
  3680. int main(void){
  3681. int i;
  3682. uint8_t temp[SIZE];
  3683. PutBitContext pb;
  3684. GetBitContext gb;
  3685. // int int_temp[10000];
  3686. DSPContext dsp;
  3687. AVCodecContext avctx;
  3688. avcodec_get_context_defaults3(&avctx, &ff_h264_decoder);
  3689. dsputil_init(&dsp, &avctx);
  3690. init_put_bits(&pb, temp, SIZE);
  3691. printf("testing unsigned exp golomb\n");
  3692. for(i=0; i<COUNT; i++){
  3693. START_TIMER
  3694. set_ue_golomb(&pb, i);
  3695. STOP_TIMER("set_ue_golomb");
  3696. }
  3697. flush_put_bits(&pb);
  3698. init_get_bits(&gb, temp, 8*SIZE);
  3699. for(i=0; i<COUNT; i++){
  3700. int j, s;
  3701. s= show_bits(&gb, 24);
  3702. START_TIMER
  3703. j= get_ue_golomb(&gb);
  3704. if(j != i){
  3705. printf("mismatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
  3706. // return -1;
  3707. }
  3708. STOP_TIMER("get_ue_golomb");
  3709. }
  3710. init_put_bits(&pb, temp, SIZE);
  3711. printf("testing signed exp golomb\n");
  3712. for(i=0; i<COUNT; i++){
  3713. START_TIMER
  3714. set_se_golomb(&pb, i - COUNT/2);
  3715. STOP_TIMER("set_se_golomb");
  3716. }
  3717. flush_put_bits(&pb);
  3718. init_get_bits(&gb, temp, 8*SIZE);
  3719. for(i=0; i<COUNT; i++){
  3720. int j, s;
  3721. s= show_bits(&gb, 24);
  3722. START_TIMER
  3723. j= get_se_golomb(&gb);
  3724. if(j != i - COUNT/2){
  3725. printf("mismatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
  3726. // return -1;
  3727. }
  3728. STOP_TIMER("get_se_golomb");
  3729. }
  3730. printf("Testing RBSP\n");
  3731. return 0;
  3732. }
  3733. #endif /* TEST */
  3734. av_cold void ff_h264_free_context(H264Context *h)
  3735. {
  3736. int i;
  3737. free_tables(h, 1); //FIXME cleanup init stuff perhaps
  3738. for(i = 0; i < MAX_SPS_COUNT; i++)
  3739. av_freep(h->sps_buffers + i);
  3740. for(i = 0; i < MAX_PPS_COUNT; i++)
  3741. av_freep(h->pps_buffers + i);
  3742. }
  3743. av_cold int ff_h264_decode_end(AVCodecContext *avctx)
  3744. {
  3745. H264Context *h = avctx->priv_data;
  3746. MpegEncContext *s = &h->s;
  3747. ff_h264_remove_all_refs(h);
  3748. ff_h264_free_context(h);
  3749. MPV_common_end(s);
  3750. // memset(h, 0, sizeof(H264Context));
  3751. return 0;
  3752. }
  3753. static const AVProfile profiles[] = {
  3754. { FF_PROFILE_H264_BASELINE, "Baseline" },
  3755. { FF_PROFILE_H264_CONSTRAINED_BASELINE, "Constrained Baseline" },
  3756. { FF_PROFILE_H264_MAIN, "Main" },
  3757. { FF_PROFILE_H264_EXTENDED, "Extended" },
  3758. { FF_PROFILE_H264_HIGH, "High" },
  3759. { FF_PROFILE_H264_HIGH_10, "High 10" },
  3760. { FF_PROFILE_H264_HIGH_10_INTRA, "High 10 Intra" },
  3761. { FF_PROFILE_H264_HIGH_422, "High 4:2:2" },
  3762. { FF_PROFILE_H264_HIGH_422_INTRA, "High 4:2:2 Intra" },
  3763. { FF_PROFILE_H264_HIGH_444, "High 4:4:4" },
  3764. { FF_PROFILE_H264_HIGH_444_PREDICTIVE, "High 4:4:4 Predictive" },
  3765. { FF_PROFILE_H264_HIGH_444_INTRA, "High 4:4:4 Intra" },
  3766. { FF_PROFILE_H264_CAVLC_444, "CAVLC 4:4:4" },
  3767. { FF_PROFILE_UNKNOWN },
  3768. };
  3769. static const AVOption h264_options[] = {
  3770. {"is_avc", "is avc", offsetof(H264Context, is_avc), FF_OPT_TYPE_INT, {.dbl = 0}, 0, 1, 0},
  3771. {"nal_length_size", "nal_length_size", offsetof(H264Context, nal_length_size), FF_OPT_TYPE_INT, {.dbl = 0}, 0, 4, 0},
  3772. {NULL}
  3773. };
  3774. static const AVClass h264_class = {
  3775. "H264 Decoder",
  3776. av_default_item_name,
  3777. h264_options,
  3778. LIBAVUTIL_VERSION_INT,
  3779. };
  3780. static const AVClass h264_vdpau_class = {
  3781. "H264 VDPAU Decoder",
  3782. av_default_item_name,
  3783. h264_options,
  3784. LIBAVUTIL_VERSION_INT,
  3785. };
  3786. AVCodec ff_h264_decoder = {
  3787. .name = "h264",
  3788. .type = AVMEDIA_TYPE_VIDEO,
  3789. .id = CODEC_ID_H264,
  3790. .priv_data_size = sizeof(H264Context),
  3791. .init = ff_h264_decode_init,
  3792. .close = ff_h264_decode_end,
  3793. .decode = decode_frame,
  3794. .capabilities = /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 | CODEC_CAP_DELAY |
  3795. CODEC_CAP_SLICE_THREADS | CODEC_CAP_FRAME_THREADS,
  3796. .flush= flush_dpb,
  3797. .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  3798. .init_thread_copy = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
  3799. .update_thread_context = ONLY_IF_THREADS_ENABLED(decode_update_thread_context),
  3800. .profiles = NULL_IF_CONFIG_SMALL(profiles),
  3801. .priv_class = &h264_class,
  3802. };
  3803. #if CONFIG_H264_VDPAU_DECODER
  3804. AVCodec ff_h264_vdpau_decoder = {
  3805. .name = "h264_vdpau",
  3806. .type = AVMEDIA_TYPE_VIDEO,
  3807. .id = CODEC_ID_H264,
  3808. .priv_data_size = sizeof(H264Context),
  3809. .init = ff_h264_decode_init,
  3810. .close = ff_h264_decode_end,
  3811. .decode = decode_frame,
  3812. .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU,
  3813. .flush= flush_dpb,
  3814. .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
  3815. .pix_fmts = (const enum PixelFormat[]){PIX_FMT_VDPAU_H264, PIX_FMT_NONE},
  3816. .profiles = NULL_IF_CONFIG_SMALL(profiles),
  3817. .priv_class = &h264_vdpau_class,
  3818. };
  3819. #endif