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.

4263 lines
164KB

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