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.

8135 lines
313KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... encoder/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 h264.c
  23. * H.264 / AVC / MPEG4 part10 codec.
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include "dsputil.h"
  27. #include "avcodec.h"
  28. #include "mpegvideo.h"
  29. #include "h264.h"
  30. #include "h264data.h"
  31. #include "h264_parser.h"
  32. #include "golomb.h"
  33. #include "rectangle.h"
  34. #include "cabac.h"
  35. #ifdef ARCH_X86
  36. #include "i386/h264_i386.h"
  37. #endif
  38. //#undef NDEBUG
  39. #include <assert.h>
  40. /**
  41. * Value of Picture.reference when Picture is not a reference picture, but
  42. * is held for delayed output.
  43. */
  44. #define DELAYED_PIC_REF 4
  45. static VLC coeff_token_vlc[4];
  46. static VLC chroma_dc_coeff_token_vlc;
  47. static VLC total_zeros_vlc[15];
  48. static VLC chroma_dc_total_zeros_vlc[3];
  49. static VLC run_vlc[6];
  50. static VLC run7_vlc;
  51. static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp);
  52. static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc);
  53. static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize);
  54. static void filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize);
  55. static av_always_inline uint32_t pack16to32(int a, int b){
  56. #ifdef WORDS_BIGENDIAN
  57. return (b&0xFFFF) + (a<<16);
  58. #else
  59. return (a&0xFFFF) + (b<<16);
  60. #endif
  61. }
  62. const uint8_t ff_rem6[52]={
  63. 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,
  64. };
  65. const uint8_t ff_div6[52]={
  66. 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,
  67. };
  68. static void fill_caches(H264Context *h, int mb_type, int for_deblock){
  69. MpegEncContext * const s = &h->s;
  70. const int mb_xy= h->mb_xy;
  71. int topleft_xy, top_xy, topright_xy, left_xy[2];
  72. int topleft_type, top_type, topright_type, left_type[2];
  73. int left_block[8];
  74. int topleft_partition= -1;
  75. int i;
  76. top_xy = mb_xy - (s->mb_stride << FIELD_PICTURE);
  77. //FIXME deblocking could skip the intra and nnz parts.
  78. if(for_deblock && (h->slice_num == 1 || h->slice_table[mb_xy] == h->slice_table[top_xy]) && !FRAME_MBAFF)
  79. return;
  80. /* Wow, what a mess, why didn't they simplify the interlacing & intra
  81. * stuff, I can't imagine that these complex rules are worth it. */
  82. topleft_xy = top_xy - 1;
  83. topright_xy= top_xy + 1;
  84. left_xy[1] = left_xy[0] = mb_xy-1;
  85. left_block[0]= 0;
  86. left_block[1]= 1;
  87. left_block[2]= 2;
  88. left_block[3]= 3;
  89. left_block[4]= 7;
  90. left_block[5]= 10;
  91. left_block[6]= 8;
  92. left_block[7]= 11;
  93. if(FRAME_MBAFF){
  94. const int pair_xy = s->mb_x + (s->mb_y & ~1)*s->mb_stride;
  95. const int top_pair_xy = pair_xy - s->mb_stride;
  96. const int topleft_pair_xy = top_pair_xy - 1;
  97. const int topright_pair_xy = top_pair_xy + 1;
  98. const int topleft_mb_frame_flag = !IS_INTERLACED(s->current_picture.mb_type[topleft_pair_xy]);
  99. const int top_mb_frame_flag = !IS_INTERLACED(s->current_picture.mb_type[top_pair_xy]);
  100. const int topright_mb_frame_flag = !IS_INTERLACED(s->current_picture.mb_type[topright_pair_xy]);
  101. const int left_mb_frame_flag = !IS_INTERLACED(s->current_picture.mb_type[pair_xy-1]);
  102. const int curr_mb_frame_flag = !IS_INTERLACED(mb_type);
  103. const int bottom = (s->mb_y & 1);
  104. tprintf(s->avctx, "fill_caches: curr_mb_frame_flag:%d, left_mb_frame_flag:%d, topleft_mb_frame_flag:%d, top_mb_frame_flag:%d, topright_mb_frame_flag:%d\n", curr_mb_frame_flag, left_mb_frame_flag, topleft_mb_frame_flag, top_mb_frame_flag, topright_mb_frame_flag);
  105. if (bottom
  106. ? !curr_mb_frame_flag // bottom macroblock
  107. : (!curr_mb_frame_flag && !top_mb_frame_flag) // top macroblock
  108. ) {
  109. top_xy -= s->mb_stride;
  110. }
  111. if (bottom
  112. ? !curr_mb_frame_flag // bottom macroblock
  113. : (!curr_mb_frame_flag && !topleft_mb_frame_flag) // top macroblock
  114. ) {
  115. topleft_xy -= s->mb_stride;
  116. } else if(bottom && curr_mb_frame_flag && !left_mb_frame_flag) {
  117. topleft_xy += s->mb_stride;
  118. // take topleft mv from the middle of the mb, as opposed to all other modes which use the bottom-right partition
  119. topleft_partition = 0;
  120. }
  121. if (bottom
  122. ? !curr_mb_frame_flag // bottom macroblock
  123. : (!curr_mb_frame_flag && !topright_mb_frame_flag) // top macroblock
  124. ) {
  125. topright_xy -= s->mb_stride;
  126. }
  127. if (left_mb_frame_flag != curr_mb_frame_flag) {
  128. left_xy[1] = left_xy[0] = pair_xy - 1;
  129. if (curr_mb_frame_flag) {
  130. if (bottom) {
  131. left_block[0]= 2;
  132. left_block[1]= 2;
  133. left_block[2]= 3;
  134. left_block[3]= 3;
  135. left_block[4]= 8;
  136. left_block[5]= 11;
  137. left_block[6]= 8;
  138. left_block[7]= 11;
  139. } else {
  140. left_block[0]= 0;
  141. left_block[1]= 0;
  142. left_block[2]= 1;
  143. left_block[3]= 1;
  144. left_block[4]= 7;
  145. left_block[5]= 10;
  146. left_block[6]= 7;
  147. left_block[7]= 10;
  148. }
  149. } else {
  150. left_xy[1] += s->mb_stride;
  151. //left_block[0]= 0;
  152. left_block[1]= 2;
  153. left_block[2]= 0;
  154. left_block[3]= 2;
  155. //left_block[4]= 7;
  156. left_block[5]= 10;
  157. left_block[6]= 7;
  158. left_block[7]= 10;
  159. }
  160. }
  161. }
  162. h->top_mb_xy = top_xy;
  163. h->left_mb_xy[0] = left_xy[0];
  164. h->left_mb_xy[1] = left_xy[1];
  165. if(for_deblock){
  166. topleft_type = 0;
  167. topright_type = 0;
  168. top_type = h->slice_table[top_xy ] < 255 ? s->current_picture.mb_type[top_xy] : 0;
  169. left_type[0] = h->slice_table[left_xy[0] ] < 255 ? s->current_picture.mb_type[left_xy[0]] : 0;
  170. left_type[1] = h->slice_table[left_xy[1] ] < 255 ? s->current_picture.mb_type[left_xy[1]] : 0;
  171. if(FRAME_MBAFF && !IS_INTRA(mb_type)){
  172. int list;
  173. int v = *(uint16_t*)&h->non_zero_count[mb_xy][14];
  174. for(i=0; i<16; i++)
  175. h->non_zero_count_cache[scan8[i]] = (v>>i)&1;
  176. for(list=0; list<h->list_count; list++){
  177. if(USES_LIST(mb_type,list)){
  178. uint32_t *src = (uint32_t*)s->current_picture.motion_val[list][h->mb2b_xy[mb_xy]];
  179. uint32_t *dst = (uint32_t*)h->mv_cache[list][scan8[0]];
  180. int8_t *ref = &s->current_picture.ref_index[list][h->mb2b8_xy[mb_xy]];
  181. for(i=0; i<4; i++, dst+=8, src+=h->b_stride){
  182. dst[0] = src[0];
  183. dst[1] = src[1];
  184. dst[2] = src[2];
  185. dst[3] = src[3];
  186. }
  187. *(uint32_t*)&h->ref_cache[list][scan8[ 0]] =
  188. *(uint32_t*)&h->ref_cache[list][scan8[ 2]] = pack16to32(ref[0],ref[1])*0x0101;
  189. ref += h->b8_stride;
  190. *(uint32_t*)&h->ref_cache[list][scan8[ 8]] =
  191. *(uint32_t*)&h->ref_cache[list][scan8[10]] = pack16to32(ref[0],ref[1])*0x0101;
  192. }else{
  193. fill_rectangle(&h-> mv_cache[list][scan8[ 0]], 4, 4, 8, 0, 4);
  194. fill_rectangle(&h->ref_cache[list][scan8[ 0]], 4, 4, 8, (uint8_t)LIST_NOT_USED, 1);
  195. }
  196. }
  197. }
  198. }else{
  199. topleft_type = h->slice_table[topleft_xy ] == h->slice_num ? s->current_picture.mb_type[topleft_xy] : 0;
  200. top_type = h->slice_table[top_xy ] == h->slice_num ? s->current_picture.mb_type[top_xy] : 0;
  201. topright_type= h->slice_table[topright_xy] == h->slice_num ? s->current_picture.mb_type[topright_xy]: 0;
  202. left_type[0] = h->slice_table[left_xy[0] ] == h->slice_num ? s->current_picture.mb_type[left_xy[0]] : 0;
  203. left_type[1] = h->slice_table[left_xy[1] ] == h->slice_num ? s->current_picture.mb_type[left_xy[1]] : 0;
  204. }
  205. if(IS_INTRA(mb_type)){
  206. h->topleft_samples_available=
  207. h->top_samples_available=
  208. h->left_samples_available= 0xFFFF;
  209. h->topright_samples_available= 0xEEEA;
  210. if(!IS_INTRA(top_type) && (top_type==0 || h->pps.constrained_intra_pred)){
  211. h->topleft_samples_available= 0xB3FF;
  212. h->top_samples_available= 0x33FF;
  213. h->topright_samples_available= 0x26EA;
  214. }
  215. for(i=0; i<2; i++){
  216. if(!IS_INTRA(left_type[i]) && (left_type[i]==0 || h->pps.constrained_intra_pred)){
  217. h->topleft_samples_available&= 0xDF5F;
  218. h->left_samples_available&= 0x5F5F;
  219. }
  220. }
  221. if(!IS_INTRA(topleft_type) && (topleft_type==0 || h->pps.constrained_intra_pred))
  222. h->topleft_samples_available&= 0x7FFF;
  223. if(!IS_INTRA(topright_type) && (topright_type==0 || h->pps.constrained_intra_pred))
  224. h->topright_samples_available&= 0xFBFF;
  225. if(IS_INTRA4x4(mb_type)){
  226. if(IS_INTRA4x4(top_type)){
  227. h->intra4x4_pred_mode_cache[4+8*0]= h->intra4x4_pred_mode[top_xy][4];
  228. h->intra4x4_pred_mode_cache[5+8*0]= h->intra4x4_pred_mode[top_xy][5];
  229. h->intra4x4_pred_mode_cache[6+8*0]= h->intra4x4_pred_mode[top_xy][6];
  230. h->intra4x4_pred_mode_cache[7+8*0]= h->intra4x4_pred_mode[top_xy][3];
  231. }else{
  232. int pred;
  233. if(!top_type || (IS_INTER(top_type) && h->pps.constrained_intra_pred))
  234. pred= -1;
  235. else{
  236. pred= 2;
  237. }
  238. h->intra4x4_pred_mode_cache[4+8*0]=
  239. h->intra4x4_pred_mode_cache[5+8*0]=
  240. h->intra4x4_pred_mode_cache[6+8*0]=
  241. h->intra4x4_pred_mode_cache[7+8*0]= pred;
  242. }
  243. for(i=0; i<2; i++){
  244. if(IS_INTRA4x4(left_type[i])){
  245. h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[0+2*i]];
  246. h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[1+2*i]];
  247. }else{
  248. int pred;
  249. if(!left_type[i] || (IS_INTER(left_type[i]) && h->pps.constrained_intra_pred))
  250. pred= -1;
  251. else{
  252. pred= 2;
  253. }
  254. h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]=
  255. h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= pred;
  256. }
  257. }
  258. }
  259. }
  260. /*
  261. 0 . T T. T T T T
  262. 1 L . .L . . . .
  263. 2 L . .L . . . .
  264. 3 . T TL . . . .
  265. 4 L . .L . . . .
  266. 5 L . .. . . . .
  267. */
  268. //FIXME constraint_intra_pred & partitioning & nnz (lets hope this is just a typo in the spec)
  269. if(top_type){
  270. h->non_zero_count_cache[4+8*0]= h->non_zero_count[top_xy][4];
  271. h->non_zero_count_cache[5+8*0]= h->non_zero_count[top_xy][5];
  272. h->non_zero_count_cache[6+8*0]= h->non_zero_count[top_xy][6];
  273. h->non_zero_count_cache[7+8*0]= h->non_zero_count[top_xy][3];
  274. h->non_zero_count_cache[1+8*0]= h->non_zero_count[top_xy][9];
  275. h->non_zero_count_cache[2+8*0]= h->non_zero_count[top_xy][8];
  276. h->non_zero_count_cache[1+8*3]= h->non_zero_count[top_xy][12];
  277. h->non_zero_count_cache[2+8*3]= h->non_zero_count[top_xy][11];
  278. }else{
  279. h->non_zero_count_cache[4+8*0]=
  280. h->non_zero_count_cache[5+8*0]=
  281. h->non_zero_count_cache[6+8*0]=
  282. h->non_zero_count_cache[7+8*0]=
  283. h->non_zero_count_cache[1+8*0]=
  284. h->non_zero_count_cache[2+8*0]=
  285. h->non_zero_count_cache[1+8*3]=
  286. h->non_zero_count_cache[2+8*3]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64;
  287. }
  288. for (i=0; i<2; i++) {
  289. if(left_type[i]){
  290. h->non_zero_count_cache[3+8*1 + 2*8*i]= h->non_zero_count[left_xy[i]][left_block[0+2*i]];
  291. h->non_zero_count_cache[3+8*2 + 2*8*i]= h->non_zero_count[left_xy[i]][left_block[1+2*i]];
  292. h->non_zero_count_cache[0+8*1 + 8*i]= h->non_zero_count[left_xy[i]][left_block[4+2*i]];
  293. h->non_zero_count_cache[0+8*4 + 8*i]= h->non_zero_count[left_xy[i]][left_block[5+2*i]];
  294. }else{
  295. h->non_zero_count_cache[3+8*1 + 2*8*i]=
  296. h->non_zero_count_cache[3+8*2 + 2*8*i]=
  297. h->non_zero_count_cache[0+8*1 + 8*i]=
  298. h->non_zero_count_cache[0+8*4 + 8*i]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64;
  299. }
  300. }
  301. if( h->pps.cabac ) {
  302. // top_cbp
  303. if(top_type) {
  304. h->top_cbp = h->cbp_table[top_xy];
  305. } else if(IS_INTRA(mb_type)) {
  306. h->top_cbp = 0x1C0;
  307. } else {
  308. h->top_cbp = 0;
  309. }
  310. // left_cbp
  311. if (left_type[0]) {
  312. h->left_cbp = h->cbp_table[left_xy[0]] & 0x1f0;
  313. } else if(IS_INTRA(mb_type)) {
  314. h->left_cbp = 0x1C0;
  315. } else {
  316. h->left_cbp = 0;
  317. }
  318. if (left_type[0]) {
  319. h->left_cbp |= ((h->cbp_table[left_xy[0]]>>((left_block[0]&(~1))+1))&0x1) << 1;
  320. }
  321. if (left_type[1]) {
  322. h->left_cbp |= ((h->cbp_table[left_xy[1]]>>((left_block[2]&(~1))+1))&0x1) << 3;
  323. }
  324. }
  325. #if 1
  326. if(IS_INTER(mb_type) || IS_DIRECT(mb_type)){
  327. int list;
  328. for(list=0; list<h->list_count; list++){
  329. if(!USES_LIST(mb_type, list) && !IS_DIRECT(mb_type) && !h->deblocking_filter){
  330. /*if(!h->mv_cache_clean[list]){
  331. memset(h->mv_cache [list], 0, 8*5*2*sizeof(int16_t)); //FIXME clean only input? clean at all?
  332. memset(h->ref_cache[list], PART_NOT_AVAILABLE, 8*5*sizeof(int8_t));
  333. h->mv_cache_clean[list]= 1;
  334. }*/
  335. continue;
  336. }
  337. h->mv_cache_clean[list]= 0;
  338. if(USES_LIST(top_type, list)){
  339. const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride;
  340. const int b8_xy= h->mb2b8_xy[top_xy] + h->b8_stride;
  341. *(uint32_t*)h->mv_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 0];
  342. *(uint32_t*)h->mv_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 1];
  343. *(uint32_t*)h->mv_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 2];
  344. *(uint32_t*)h->mv_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 3];
  345. h->ref_cache[list][scan8[0] + 0 - 1*8]=
  346. h->ref_cache[list][scan8[0] + 1 - 1*8]= s->current_picture.ref_index[list][b8_xy + 0];
  347. h->ref_cache[list][scan8[0] + 2 - 1*8]=
  348. h->ref_cache[list][scan8[0] + 3 - 1*8]= s->current_picture.ref_index[list][b8_xy + 1];
  349. }else{
  350. *(uint32_t*)h->mv_cache [list][scan8[0] + 0 - 1*8]=
  351. *(uint32_t*)h->mv_cache [list][scan8[0] + 1 - 1*8]=
  352. *(uint32_t*)h->mv_cache [list][scan8[0] + 2 - 1*8]=
  353. *(uint32_t*)h->mv_cache [list][scan8[0] + 3 - 1*8]= 0;
  354. *(uint32_t*)&h->ref_cache[list][scan8[0] + 0 - 1*8]= ((top_type ? LIST_NOT_USED : PART_NOT_AVAILABLE)&0xFF)*0x01010101;
  355. }
  356. for(i=0; i<2; i++){
  357. int cache_idx = scan8[0] - 1 + i*2*8;
  358. if(USES_LIST(left_type[i], list)){
  359. const int b_xy= h->mb2b_xy[left_xy[i]] + 3;
  360. const int b8_xy= h->mb2b8_xy[left_xy[i]] + 1;
  361. *(uint32_t*)h->mv_cache[list][cache_idx ]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[0+i*2]];
  362. *(uint32_t*)h->mv_cache[list][cache_idx+8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[1+i*2]];
  363. h->ref_cache[list][cache_idx ]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[0+i*2]>>1)];
  364. h->ref_cache[list][cache_idx+8]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[1+i*2]>>1)];
  365. }else{
  366. *(uint32_t*)h->mv_cache [list][cache_idx ]=
  367. *(uint32_t*)h->mv_cache [list][cache_idx+8]= 0;
  368. h->ref_cache[list][cache_idx ]=
  369. h->ref_cache[list][cache_idx+8]= left_type[i] ? LIST_NOT_USED : PART_NOT_AVAILABLE;
  370. }
  371. }
  372. if((for_deblock || (IS_DIRECT(mb_type) && !h->direct_spatial_mv_pred)) && !FRAME_MBAFF)
  373. continue;
  374. if(USES_LIST(topleft_type, list)){
  375. const int b_xy = h->mb2b_xy[topleft_xy] + 3 + h->b_stride + (topleft_partition & 2*h->b_stride);
  376. const int b8_xy= h->mb2b8_xy[topleft_xy] + 1 + (topleft_partition & h->b8_stride);
  377. *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy];
  378. h->ref_cache[list][scan8[0] - 1 - 1*8]= s->current_picture.ref_index[list][b8_xy];
  379. }else{
  380. *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= 0;
  381. h->ref_cache[list][scan8[0] - 1 - 1*8]= topleft_type ? LIST_NOT_USED : PART_NOT_AVAILABLE;
  382. }
  383. if(USES_LIST(topright_type, list)){
  384. const int b_xy= h->mb2b_xy[topright_xy] + 3*h->b_stride;
  385. const int b8_xy= h->mb2b8_xy[topright_xy] + h->b8_stride;
  386. *(uint32_t*)h->mv_cache[list][scan8[0] + 4 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy];
  387. h->ref_cache[list][scan8[0] + 4 - 1*8]= s->current_picture.ref_index[list][b8_xy];
  388. }else{
  389. *(uint32_t*)h->mv_cache [list][scan8[0] + 4 - 1*8]= 0;
  390. h->ref_cache[list][scan8[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED : PART_NOT_AVAILABLE;
  391. }
  392. if((IS_SKIP(mb_type) || IS_DIRECT(mb_type)) && !FRAME_MBAFF)
  393. continue;
  394. h->ref_cache[list][scan8[5 ]+1] =
  395. h->ref_cache[list][scan8[7 ]+1] =
  396. h->ref_cache[list][scan8[13]+1] = //FIXME remove past 3 (init somewhere else)
  397. h->ref_cache[list][scan8[4 ]] =
  398. h->ref_cache[list][scan8[12]] = PART_NOT_AVAILABLE;
  399. *(uint32_t*)h->mv_cache [list][scan8[5 ]+1]=
  400. *(uint32_t*)h->mv_cache [list][scan8[7 ]+1]=
  401. *(uint32_t*)h->mv_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewhere else)
  402. *(uint32_t*)h->mv_cache [list][scan8[4 ]]=
  403. *(uint32_t*)h->mv_cache [list][scan8[12]]= 0;
  404. if( h->pps.cabac ) {
  405. /* XXX beurk, Load mvd */
  406. if(USES_LIST(top_type, list)){
  407. const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride;
  408. *(uint32_t*)h->mvd_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 0];
  409. *(uint32_t*)h->mvd_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 1];
  410. *(uint32_t*)h->mvd_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 2];
  411. *(uint32_t*)h->mvd_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 3];
  412. }else{
  413. *(uint32_t*)h->mvd_cache [list][scan8[0] + 0 - 1*8]=
  414. *(uint32_t*)h->mvd_cache [list][scan8[0] + 1 - 1*8]=
  415. *(uint32_t*)h->mvd_cache [list][scan8[0] + 2 - 1*8]=
  416. *(uint32_t*)h->mvd_cache [list][scan8[0] + 3 - 1*8]= 0;
  417. }
  418. if(USES_LIST(left_type[0], list)){
  419. const int b_xy= h->mb2b_xy[left_xy[0]] + 3;
  420. *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 0*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[0]];
  421. *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[1]];
  422. }else{
  423. *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 0*8]=
  424. *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 1*8]= 0;
  425. }
  426. if(USES_LIST(left_type[1], list)){
  427. const int b_xy= h->mb2b_xy[left_xy[1]] + 3;
  428. *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 2*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[2]];
  429. *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 3*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[3]];
  430. }else{
  431. *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 2*8]=
  432. *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 3*8]= 0;
  433. }
  434. *(uint32_t*)h->mvd_cache [list][scan8[5 ]+1]=
  435. *(uint32_t*)h->mvd_cache [list][scan8[7 ]+1]=
  436. *(uint32_t*)h->mvd_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewhere else)
  437. *(uint32_t*)h->mvd_cache [list][scan8[4 ]]=
  438. *(uint32_t*)h->mvd_cache [list][scan8[12]]= 0;
  439. if(h->slice_type == FF_B_TYPE){
  440. fill_rectangle(&h->direct_cache[scan8[0]], 4, 4, 8, 0, 1);
  441. if(IS_DIRECT(top_type)){
  442. *(uint32_t*)&h->direct_cache[scan8[0] - 1*8]= 0x01010101;
  443. }else if(IS_8X8(top_type)){
  444. int b8_xy = h->mb2b8_xy[top_xy] + h->b8_stride;
  445. h->direct_cache[scan8[0] + 0 - 1*8]= h->direct_table[b8_xy];
  446. h->direct_cache[scan8[0] + 2 - 1*8]= h->direct_table[b8_xy + 1];
  447. }else{
  448. *(uint32_t*)&h->direct_cache[scan8[0] - 1*8]= 0;
  449. }
  450. if(IS_DIRECT(left_type[0]))
  451. h->direct_cache[scan8[0] - 1 + 0*8]= 1;
  452. else if(IS_8X8(left_type[0]))
  453. h->direct_cache[scan8[0] - 1 + 0*8]= h->direct_table[h->mb2b8_xy[left_xy[0]] + 1 + h->b8_stride*(left_block[0]>>1)];
  454. else
  455. h->direct_cache[scan8[0] - 1 + 0*8]= 0;
  456. if(IS_DIRECT(left_type[1]))
  457. h->direct_cache[scan8[0] - 1 + 2*8]= 1;
  458. else if(IS_8X8(left_type[1]))
  459. h->direct_cache[scan8[0] - 1 + 2*8]= h->direct_table[h->mb2b8_xy[left_xy[1]] + 1 + h->b8_stride*(left_block[2]>>1)];
  460. else
  461. h->direct_cache[scan8[0] - 1 + 2*8]= 0;
  462. }
  463. }
  464. if(FRAME_MBAFF){
  465. #define MAP_MVS\
  466. MAP_F2F(scan8[0] - 1 - 1*8, topleft_type)\
  467. MAP_F2F(scan8[0] + 0 - 1*8, top_type)\
  468. MAP_F2F(scan8[0] + 1 - 1*8, top_type)\
  469. MAP_F2F(scan8[0] + 2 - 1*8, top_type)\
  470. MAP_F2F(scan8[0] + 3 - 1*8, top_type)\
  471. MAP_F2F(scan8[0] + 4 - 1*8, topright_type)\
  472. MAP_F2F(scan8[0] - 1 + 0*8, left_type[0])\
  473. MAP_F2F(scan8[0] - 1 + 1*8, left_type[0])\
  474. MAP_F2F(scan8[0] - 1 + 2*8, left_type[1])\
  475. MAP_F2F(scan8[0] - 1 + 3*8, left_type[1])
  476. if(MB_FIELD){
  477. #define MAP_F2F(idx, mb_type)\
  478. if(!IS_INTERLACED(mb_type) && h->ref_cache[list][idx] >= 0){\
  479. h->ref_cache[list][idx] <<= 1;\
  480. h->mv_cache[list][idx][1] /= 2;\
  481. h->mvd_cache[list][idx][1] /= 2;\
  482. }
  483. MAP_MVS
  484. #undef MAP_F2F
  485. }else{
  486. #define MAP_F2F(idx, mb_type)\
  487. if(IS_INTERLACED(mb_type) && h->ref_cache[list][idx] >= 0){\
  488. h->ref_cache[list][idx] >>= 1;\
  489. h->mv_cache[list][idx][1] <<= 1;\
  490. h->mvd_cache[list][idx][1] <<= 1;\
  491. }
  492. MAP_MVS
  493. #undef MAP_F2F
  494. }
  495. }
  496. }
  497. }
  498. #endif
  499. h->neighbor_transform_size= !!IS_8x8DCT(top_type) + !!IS_8x8DCT(left_type[0]);
  500. }
  501. static inline void write_back_intra_pred_mode(H264Context *h){
  502. const int mb_xy= h->mb_xy;
  503. h->intra4x4_pred_mode[mb_xy][0]= h->intra4x4_pred_mode_cache[7+8*1];
  504. h->intra4x4_pred_mode[mb_xy][1]= h->intra4x4_pred_mode_cache[7+8*2];
  505. h->intra4x4_pred_mode[mb_xy][2]= h->intra4x4_pred_mode_cache[7+8*3];
  506. h->intra4x4_pred_mode[mb_xy][3]= h->intra4x4_pred_mode_cache[7+8*4];
  507. h->intra4x4_pred_mode[mb_xy][4]= h->intra4x4_pred_mode_cache[4+8*4];
  508. h->intra4x4_pred_mode[mb_xy][5]= h->intra4x4_pred_mode_cache[5+8*4];
  509. h->intra4x4_pred_mode[mb_xy][6]= h->intra4x4_pred_mode_cache[6+8*4];
  510. }
  511. /**
  512. * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
  513. */
  514. static inline int check_intra4x4_pred_mode(H264Context *h){
  515. MpegEncContext * const s = &h->s;
  516. static const int8_t top [12]= {-1, 0,LEFT_DC_PRED,-1,-1,-1,-1,-1, 0};
  517. static const int8_t left[12]= { 0,-1, TOP_DC_PRED, 0,-1,-1,-1, 0,-1,DC_128_PRED};
  518. int i;
  519. if(!(h->top_samples_available&0x8000)){
  520. for(i=0; i<4; i++){
  521. int status= top[ h->intra4x4_pred_mode_cache[scan8[0] + i] ];
  522. if(status<0){
  523. 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);
  524. return -1;
  525. } else if(status){
  526. h->intra4x4_pred_mode_cache[scan8[0] + i]= status;
  527. }
  528. }
  529. }
  530. if(!(h->left_samples_available&0x8000)){
  531. for(i=0; i<4; i++){
  532. int status= left[ h->intra4x4_pred_mode_cache[scan8[0] + 8*i] ];
  533. if(status<0){
  534. 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);
  535. return -1;
  536. } else if(status){
  537. h->intra4x4_pred_mode_cache[scan8[0] + 8*i]= status;
  538. }
  539. }
  540. }
  541. return 0;
  542. } //FIXME cleanup like next
  543. /**
  544. * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
  545. */
  546. static inline int check_intra_pred_mode(H264Context *h, int mode){
  547. MpegEncContext * const s = &h->s;
  548. static const int8_t top [7]= {LEFT_DC_PRED8x8, 1,-1,-1};
  549. static const int8_t left[7]= { TOP_DC_PRED8x8,-1, 2,-1,DC_128_PRED8x8};
  550. if(mode > 6U) {
  551. 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);
  552. return -1;
  553. }
  554. if(!(h->top_samples_available&0x8000)){
  555. mode= top[ mode ];
  556. if(mode<0){
  557. 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);
  558. return -1;
  559. }
  560. }
  561. if(!(h->left_samples_available&0x8000)){
  562. mode= left[ mode ];
  563. if(mode<0){
  564. 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);
  565. return -1;
  566. }
  567. }
  568. return mode;
  569. }
  570. /**
  571. * gets the predicted intra4x4 prediction mode.
  572. */
  573. static inline int pred_intra_mode(H264Context *h, int n){
  574. const int index8= scan8[n];
  575. const int left= h->intra4x4_pred_mode_cache[index8 - 1];
  576. const int top = h->intra4x4_pred_mode_cache[index8 - 8];
  577. const int min= FFMIN(left, top);
  578. tprintf(h->s.avctx, "mode:%d %d min:%d\n", left ,top, min);
  579. if(min<0) return DC_PRED;
  580. else return min;
  581. }
  582. static inline void write_back_non_zero_count(H264Context *h){
  583. const int mb_xy= h->mb_xy;
  584. h->non_zero_count[mb_xy][0]= h->non_zero_count_cache[7+8*1];
  585. h->non_zero_count[mb_xy][1]= h->non_zero_count_cache[7+8*2];
  586. h->non_zero_count[mb_xy][2]= h->non_zero_count_cache[7+8*3];
  587. h->non_zero_count[mb_xy][3]= h->non_zero_count_cache[7+8*4];
  588. h->non_zero_count[mb_xy][4]= h->non_zero_count_cache[4+8*4];
  589. h->non_zero_count[mb_xy][5]= h->non_zero_count_cache[5+8*4];
  590. h->non_zero_count[mb_xy][6]= h->non_zero_count_cache[6+8*4];
  591. h->non_zero_count[mb_xy][9]= h->non_zero_count_cache[1+8*2];
  592. h->non_zero_count[mb_xy][8]= h->non_zero_count_cache[2+8*2];
  593. h->non_zero_count[mb_xy][7]= h->non_zero_count_cache[2+8*1];
  594. h->non_zero_count[mb_xy][12]=h->non_zero_count_cache[1+8*5];
  595. h->non_zero_count[mb_xy][11]=h->non_zero_count_cache[2+8*5];
  596. h->non_zero_count[mb_xy][10]=h->non_zero_count_cache[2+8*4];
  597. if(FRAME_MBAFF){
  598. // store all luma nnzs, for deblocking
  599. int v = 0, i;
  600. for(i=0; i<16; i++)
  601. v += (!!h->non_zero_count_cache[scan8[i]]) << i;
  602. *(uint16_t*)&h->non_zero_count[mb_xy][14] = v;
  603. }
  604. }
  605. /**
  606. * gets the predicted number of non zero coefficients.
  607. * @param n block index
  608. */
  609. static inline int pred_non_zero_count(H264Context *h, int n){
  610. const int index8= scan8[n];
  611. const int left= h->non_zero_count_cache[index8 - 1];
  612. const int top = h->non_zero_count_cache[index8 - 8];
  613. int i= left + top;
  614. if(i<64) i= (i+1)>>1;
  615. tprintf(h->s.avctx, "pred_nnz L%X T%X n%d s%d P%X\n", left, top, n, scan8[n], i&31);
  616. return i&31;
  617. }
  618. static inline int fetch_diagonal_mv(H264Context *h, const int16_t **C, int i, int list, int part_width){
  619. const int topright_ref= h->ref_cache[list][ i - 8 + part_width ];
  620. MpegEncContext *s = &h->s;
  621. /* there is no consistent mapping of mvs to neighboring locations that will
  622. * make mbaff happy, so we can't move all this logic to fill_caches */
  623. if(FRAME_MBAFF){
  624. const uint32_t *mb_types = s->current_picture_ptr->mb_type;
  625. const int16_t *mv;
  626. *(uint32_t*)h->mv_cache[list][scan8[0]-2] = 0;
  627. *C = h->mv_cache[list][scan8[0]-2];
  628. if(!MB_FIELD
  629. && (s->mb_y&1) && i < scan8[0]+8 && topright_ref != PART_NOT_AVAILABLE){
  630. int topright_xy = s->mb_x + (s->mb_y-1)*s->mb_stride + (i == scan8[0]+3);
  631. if(IS_INTERLACED(mb_types[topright_xy])){
  632. #define SET_DIAG_MV(MV_OP, REF_OP, X4, Y4)\
  633. const int x4 = X4, y4 = Y4;\
  634. const int mb_type = mb_types[(x4>>2)+(y4>>2)*s->mb_stride];\
  635. if(!USES_LIST(mb_type,list))\
  636. return LIST_NOT_USED;\
  637. mv = s->current_picture_ptr->motion_val[list][x4 + y4*h->b_stride];\
  638. h->mv_cache[list][scan8[0]-2][0] = mv[0];\
  639. h->mv_cache[list][scan8[0]-2][1] = mv[1] MV_OP;\
  640. return s->current_picture_ptr->ref_index[list][(x4>>1) + (y4>>1)*h->b8_stride] REF_OP;
  641. SET_DIAG_MV(*2, >>1, s->mb_x*4+(i&7)-4+part_width, s->mb_y*4-1);
  642. }
  643. }
  644. if(topright_ref == PART_NOT_AVAILABLE
  645. && ((s->mb_y&1) || i >= scan8[0]+8) && (i&7)==4
  646. && h->ref_cache[list][scan8[0]-1] != PART_NOT_AVAILABLE){
  647. if(!MB_FIELD
  648. && IS_INTERLACED(mb_types[h->left_mb_xy[0]])){
  649. SET_DIAG_MV(*2, >>1, s->mb_x*4-1, (s->mb_y|1)*4+(s->mb_y&1)*2+(i>>4)-1);
  650. }
  651. if(MB_FIELD
  652. && !IS_INTERLACED(mb_types[h->left_mb_xy[0]])
  653. && i >= scan8[0]+8){
  654. // leftshift will turn LIST_NOT_USED into PART_NOT_AVAILABLE, but that's ok.
  655. SET_DIAG_MV(/2, <<1, s->mb_x*4-1, (s->mb_y&~1)*4 - 1 + ((i-scan8[0])>>3)*2);
  656. }
  657. }
  658. #undef SET_DIAG_MV
  659. }
  660. if(topright_ref != PART_NOT_AVAILABLE){
  661. *C= h->mv_cache[list][ i - 8 + part_width ];
  662. return topright_ref;
  663. }else{
  664. tprintf(s->avctx, "topright MV not available\n");
  665. *C= h->mv_cache[list][ i - 8 - 1 ];
  666. return h->ref_cache[list][ i - 8 - 1 ];
  667. }
  668. }
  669. /**
  670. * gets the predicted MV.
  671. * @param n the block index
  672. * @param part_width the width of the partition (4, 8,16) -> (1, 2, 4)
  673. * @param mx the x component of the predicted motion vector
  674. * @param my the y component of the predicted motion vector
  675. */
  676. static inline void pred_motion(H264Context * const h, int n, int part_width, int list, int ref, int * const mx, int * const my){
  677. const int index8= scan8[n];
  678. const int top_ref= h->ref_cache[list][ index8 - 8 ];
  679. const int left_ref= h->ref_cache[list][ index8 - 1 ];
  680. const int16_t * const A= h->mv_cache[list][ index8 - 1 ];
  681. const int16_t * const B= h->mv_cache[list][ index8 - 8 ];
  682. const int16_t * C;
  683. int diagonal_ref, match_count;
  684. assert(part_width==1 || part_width==2 || part_width==4);
  685. /* mv_cache
  686. B . . A T T T T
  687. U . . L . . , .
  688. U . . L . . . .
  689. U . . L . . , .
  690. . . . L . . . .
  691. */
  692. diagonal_ref= fetch_diagonal_mv(h, &C, index8, list, part_width);
  693. match_count= (diagonal_ref==ref) + (top_ref==ref) + (left_ref==ref);
  694. tprintf(h->s.avctx, "pred_motion match_count=%d\n", match_count);
  695. if(match_count > 1){ //most common
  696. *mx= mid_pred(A[0], B[0], C[0]);
  697. *my= mid_pred(A[1], B[1], C[1]);
  698. }else if(match_count==1){
  699. if(left_ref==ref){
  700. *mx= A[0];
  701. *my= A[1];
  702. }else if(top_ref==ref){
  703. *mx= B[0];
  704. *my= B[1];
  705. }else{
  706. *mx= C[0];
  707. *my= C[1];
  708. }
  709. }else{
  710. if(top_ref == PART_NOT_AVAILABLE && diagonal_ref == PART_NOT_AVAILABLE && left_ref != PART_NOT_AVAILABLE){
  711. *mx= A[0];
  712. *my= A[1];
  713. }else{
  714. *mx= mid_pred(A[0], B[0], C[0]);
  715. *my= mid_pred(A[1], B[1], C[1]);
  716. }
  717. }
  718. tprintf(h->s.avctx, "pred_motion (%2d %2d %2d) (%2d %2d %2d) (%2d %2d %2d) -> (%2d %2d %2d) at %2d %2d %d list %d\n", top_ref, B[0], B[1], diagonal_ref, C[0], C[1], left_ref, A[0], A[1], ref, *mx, *my, h->s.mb_x, h->s.mb_y, n, list);
  719. }
  720. /**
  721. * gets the directionally predicted 16x8 MV.
  722. * @param n the block index
  723. * @param mx the x component of the predicted motion vector
  724. * @param my the y component of the predicted motion vector
  725. */
  726. static inline void pred_16x8_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){
  727. if(n==0){
  728. const int top_ref= h->ref_cache[list][ scan8[0] - 8 ];
  729. const int16_t * const B= h->mv_cache[list][ scan8[0] - 8 ];
  730. tprintf(h->s.avctx, "pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n", top_ref, B[0], B[1], h->s.mb_x, h->s.mb_y, n, list);
  731. if(top_ref == ref){
  732. *mx= B[0];
  733. *my= B[1];
  734. return;
  735. }
  736. }else{
  737. const int left_ref= h->ref_cache[list][ scan8[8] - 1 ];
  738. const int16_t * const A= h->mv_cache[list][ scan8[8] - 1 ];
  739. tprintf(h->s.avctx, "pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list);
  740. if(left_ref == ref){
  741. *mx= A[0];
  742. *my= A[1];
  743. return;
  744. }
  745. }
  746. //RARE
  747. pred_motion(h, n, 4, list, ref, mx, my);
  748. }
  749. /**
  750. * gets the directionally predicted 8x16 MV.
  751. * @param n the block index
  752. * @param mx the x component of the predicted motion vector
  753. * @param my the y component of the predicted motion vector
  754. */
  755. static inline void pred_8x16_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){
  756. if(n==0){
  757. const int left_ref= h->ref_cache[list][ scan8[0] - 1 ];
  758. const int16_t * const A= h->mv_cache[list][ scan8[0] - 1 ];
  759. tprintf(h->s.avctx, "pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list);
  760. if(left_ref == ref){
  761. *mx= A[0];
  762. *my= A[1];
  763. return;
  764. }
  765. }else{
  766. const int16_t * C;
  767. int diagonal_ref;
  768. diagonal_ref= fetch_diagonal_mv(h, &C, scan8[4], list, 2);
  769. tprintf(h->s.avctx, "pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n", diagonal_ref, C[0], C[1], h->s.mb_x, h->s.mb_y, n, list);
  770. if(diagonal_ref == ref){
  771. *mx= C[0];
  772. *my= C[1];
  773. return;
  774. }
  775. }
  776. //RARE
  777. pred_motion(h, n, 2, list, ref, mx, my);
  778. }
  779. static inline void pred_pskip_motion(H264Context * const h, int * const mx, int * const my){
  780. const int top_ref = h->ref_cache[0][ scan8[0] - 8 ];
  781. const int left_ref= h->ref_cache[0][ scan8[0] - 1 ];
  782. tprintf(h->s.avctx, "pred_pskip: (%d) (%d) at %2d %2d\n", top_ref, left_ref, h->s.mb_x, h->s.mb_y);
  783. if(top_ref == PART_NOT_AVAILABLE || left_ref == PART_NOT_AVAILABLE
  784. || (top_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 8 ] == 0)
  785. || (left_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 1 ] == 0)){
  786. *mx = *my = 0;
  787. return;
  788. }
  789. pred_motion(h, 0, 4, 0, 0, mx, my);
  790. return;
  791. }
  792. static inline void direct_dist_scale_factor(H264Context * const h){
  793. const int poc = h->s.current_picture_ptr->poc;
  794. const int poc1 = h->ref_list[1][0].poc;
  795. int i;
  796. for(i=0; i<h->ref_count[0]; i++){
  797. int poc0 = h->ref_list[0][i].poc;
  798. int td = av_clip(poc1 - poc0, -128, 127);
  799. if(td == 0 /* FIXME || pic0 is a long-term ref */){
  800. h->dist_scale_factor[i] = 256;
  801. }else{
  802. int tb = av_clip(poc - poc0, -128, 127);
  803. int tx = (16384 + (FFABS(td) >> 1)) / td;
  804. h->dist_scale_factor[i] = av_clip((tb*tx + 32) >> 6, -1024, 1023);
  805. }
  806. }
  807. if(FRAME_MBAFF){
  808. for(i=0; i<h->ref_count[0]; i++){
  809. h->dist_scale_factor_field[2*i] =
  810. h->dist_scale_factor_field[2*i+1] = h->dist_scale_factor[i];
  811. }
  812. }
  813. }
  814. static inline void direct_ref_list_init(H264Context * const h){
  815. MpegEncContext * const s = &h->s;
  816. Picture * const ref1 = &h->ref_list[1][0];
  817. Picture * const cur = s->current_picture_ptr;
  818. int list, i, j;
  819. if(cur->pict_type == FF_I_TYPE)
  820. cur->ref_count[0] = 0;
  821. if(cur->pict_type != FF_B_TYPE)
  822. cur->ref_count[1] = 0;
  823. for(list=0; list<2; list++){
  824. cur->ref_count[list] = h->ref_count[list];
  825. for(j=0; j<h->ref_count[list]; j++)
  826. cur->ref_poc[list][j] = h->ref_list[list][j].poc;
  827. }
  828. if(cur->pict_type != FF_B_TYPE || h->direct_spatial_mv_pred)
  829. return;
  830. for(list=0; list<2; list++){
  831. for(i=0; i<ref1->ref_count[list]; i++){
  832. const int poc = ref1->ref_poc[list][i];
  833. h->map_col_to_list0[list][i] = 0; /* bogus; fills in for missing frames */
  834. for(j=0; j<h->ref_count[list]; j++)
  835. if(h->ref_list[list][j].poc == poc){
  836. h->map_col_to_list0[list][i] = j;
  837. break;
  838. }
  839. }
  840. }
  841. if(FRAME_MBAFF){
  842. for(list=0; list<2; list++){
  843. for(i=0; i<ref1->ref_count[list]; i++){
  844. j = h->map_col_to_list0[list][i];
  845. h->map_col_to_list0_field[list][2*i] = 2*j;
  846. h->map_col_to_list0_field[list][2*i+1] = 2*j+1;
  847. }
  848. }
  849. }
  850. }
  851. static inline void pred_direct_motion(H264Context * const h, int *mb_type){
  852. MpegEncContext * const s = &h->s;
  853. const int mb_xy = h->mb_xy;
  854. const int b8_xy = 2*s->mb_x + 2*s->mb_y*h->b8_stride;
  855. const int b4_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride;
  856. const int mb_type_col = h->ref_list[1][0].mb_type[mb_xy];
  857. const int16_t (*l1mv0)[2] = (const int16_t (*)[2]) &h->ref_list[1][0].motion_val[0][b4_xy];
  858. const int16_t (*l1mv1)[2] = (const int16_t (*)[2]) &h->ref_list[1][0].motion_val[1][b4_xy];
  859. const int8_t *l1ref0 = &h->ref_list[1][0].ref_index[0][b8_xy];
  860. const int8_t *l1ref1 = &h->ref_list[1][0].ref_index[1][b8_xy];
  861. const int is_b8x8 = IS_8X8(*mb_type);
  862. unsigned int sub_mb_type;
  863. int i8, i4;
  864. #define MB_TYPE_16x16_OR_INTRA (MB_TYPE_16x16|MB_TYPE_INTRA4x4|MB_TYPE_INTRA16x16|MB_TYPE_INTRA_PCM)
  865. if(IS_8X8(mb_type_col) && !h->sps.direct_8x8_inference_flag){
  866. /* FIXME save sub mb types from previous frames (or derive from MVs)
  867. * so we know exactly what block size to use */
  868. sub_mb_type = MB_TYPE_8x8|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_4x4 */
  869. *mb_type = MB_TYPE_8x8|MB_TYPE_L0L1;
  870. }else if(!is_b8x8 && (mb_type_col & MB_TYPE_16x16_OR_INTRA)){
  871. sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
  872. *mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_16x16 */
  873. }else{
  874. sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
  875. *mb_type = MB_TYPE_8x8|MB_TYPE_L0L1;
  876. }
  877. if(!is_b8x8)
  878. *mb_type |= MB_TYPE_DIRECT2;
  879. if(MB_FIELD)
  880. *mb_type |= MB_TYPE_INTERLACED;
  881. tprintf(s->avctx, "mb_type = %08x, sub_mb_type = %08x, is_b8x8 = %d, mb_type_col = %08x\n", *mb_type, sub_mb_type, is_b8x8, mb_type_col);
  882. if(h->direct_spatial_mv_pred){
  883. int ref[2];
  884. int mv[2][2];
  885. int list;
  886. /* FIXME interlacing + spatial direct uses wrong colocated block positions */
  887. /* ref = min(neighbors) */
  888. for(list=0; list<2; list++){
  889. int refa = h->ref_cache[list][scan8[0] - 1];
  890. int refb = h->ref_cache[list][scan8[0] - 8];
  891. int refc = h->ref_cache[list][scan8[0] - 8 + 4];
  892. if(refc == -2)
  893. refc = h->ref_cache[list][scan8[0] - 8 - 1];
  894. ref[list] = refa;
  895. if(ref[list] < 0 || (refb < ref[list] && refb >= 0))
  896. ref[list] = refb;
  897. if(ref[list] < 0 || (refc < ref[list] && refc >= 0))
  898. ref[list] = refc;
  899. if(ref[list] < 0)
  900. ref[list] = -1;
  901. }
  902. if(ref[0] < 0 && ref[1] < 0){
  903. ref[0] = ref[1] = 0;
  904. mv[0][0] = mv[0][1] =
  905. mv[1][0] = mv[1][1] = 0;
  906. }else{
  907. for(list=0; list<2; list++){
  908. if(ref[list] >= 0)
  909. pred_motion(h, 0, 4, list, ref[list], &mv[list][0], &mv[list][1]);
  910. else
  911. mv[list][0] = mv[list][1] = 0;
  912. }
  913. }
  914. if(ref[1] < 0){
  915. if(!is_b8x8)
  916. *mb_type &= ~MB_TYPE_L1;
  917. sub_mb_type &= ~MB_TYPE_L1;
  918. }else if(ref[0] < 0){
  919. if(!is_b8x8)
  920. *mb_type &= ~MB_TYPE_L0;
  921. sub_mb_type &= ~MB_TYPE_L0;
  922. }
  923. if(IS_INTERLACED(*mb_type) != IS_INTERLACED(mb_type_col)){
  924. int pair_xy = s->mb_x + (s->mb_y&~1)*s->mb_stride;
  925. int mb_types_col[2];
  926. int b8_stride = h->b8_stride;
  927. int b4_stride = h->b_stride;
  928. *mb_type = (*mb_type & ~MB_TYPE_16x16) | MB_TYPE_8x8;
  929. if(IS_INTERLACED(*mb_type)){
  930. mb_types_col[0] = h->ref_list[1][0].mb_type[pair_xy];
  931. mb_types_col[1] = h->ref_list[1][0].mb_type[pair_xy+s->mb_stride];
  932. if(s->mb_y&1){
  933. l1ref0 -= 2*b8_stride;
  934. l1ref1 -= 2*b8_stride;
  935. l1mv0 -= 4*b4_stride;
  936. l1mv1 -= 4*b4_stride;
  937. }
  938. b8_stride *= 3;
  939. b4_stride *= 6;
  940. }else{
  941. int cur_poc = s->current_picture_ptr->poc;
  942. int *col_poc = h->ref_list[1]->field_poc;
  943. int col_parity = FFABS(col_poc[0] - cur_poc) >= FFABS(col_poc[1] - cur_poc);
  944. int dy = 2*col_parity - (s->mb_y&1);
  945. mb_types_col[0] =
  946. mb_types_col[1] = h->ref_list[1][0].mb_type[pair_xy + col_parity*s->mb_stride];
  947. l1ref0 += dy*b8_stride;
  948. l1ref1 += dy*b8_stride;
  949. l1mv0 += 2*dy*b4_stride;
  950. l1mv1 += 2*dy*b4_stride;
  951. b8_stride = 0;
  952. }
  953. for(i8=0; i8<4; i8++){
  954. int x8 = i8&1;
  955. int y8 = i8>>1;
  956. int xy8 = x8+y8*b8_stride;
  957. int xy4 = 3*x8+y8*b4_stride;
  958. int a=0, b=0;
  959. if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
  960. continue;
  961. h->sub_mb_type[i8] = sub_mb_type;
  962. fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[0], 1);
  963. fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[1], 1);
  964. if(!IS_INTRA(mb_types_col[y8])
  965. && ( (l1ref0[xy8] == 0 && FFABS(l1mv0[xy4][0]) <= 1 && FFABS(l1mv0[xy4][1]) <= 1)
  966. || (l1ref0[xy8] < 0 && l1ref1[xy8] == 0 && FFABS(l1mv1[xy4][0]) <= 1 && FFABS(l1mv1[xy4][1]) <= 1))){
  967. if(ref[0] > 0)
  968. a= pack16to32(mv[0][0],mv[0][1]);
  969. if(ref[1] > 0)
  970. b= pack16to32(mv[1][0],mv[1][1]);
  971. }else{
  972. a= pack16to32(mv[0][0],mv[0][1]);
  973. b= pack16to32(mv[1][0],mv[1][1]);
  974. }
  975. fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, a, 4);
  976. fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, b, 4);
  977. }
  978. }else if(IS_16X16(*mb_type)){
  979. int a=0, b=0;
  980. fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, (uint8_t)ref[0], 1);
  981. fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, (uint8_t)ref[1], 1);
  982. if(!IS_INTRA(mb_type_col)
  983. && ( (l1ref0[0] == 0 && FFABS(l1mv0[0][0]) <= 1 && FFABS(l1mv0[0][1]) <= 1)
  984. || (l1ref0[0] < 0 && l1ref1[0] == 0 && FFABS(l1mv1[0][0]) <= 1 && FFABS(l1mv1[0][1]) <= 1
  985. && (h->x264_build>33 || !h->x264_build)))){
  986. if(ref[0] > 0)
  987. a= pack16to32(mv[0][0],mv[0][1]);
  988. if(ref[1] > 0)
  989. b= pack16to32(mv[1][0],mv[1][1]);
  990. }else{
  991. a= pack16to32(mv[0][0],mv[0][1]);
  992. b= pack16to32(mv[1][0],mv[1][1]);
  993. }
  994. fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, a, 4);
  995. fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, b, 4);
  996. }else{
  997. for(i8=0; i8<4; i8++){
  998. const int x8 = i8&1;
  999. const int y8 = i8>>1;
  1000. if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
  1001. continue;
  1002. h->sub_mb_type[i8] = sub_mb_type;
  1003. fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mv[0][0],mv[0][1]), 4);
  1004. fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mv[1][0],mv[1][1]), 4);
  1005. fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[0], 1);
  1006. fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[1], 1);
  1007. /* col_zero_flag */
  1008. if(!IS_INTRA(mb_type_col) && ( l1ref0[x8 + y8*h->b8_stride] == 0
  1009. || (l1ref0[x8 + y8*h->b8_stride] < 0 && l1ref1[x8 + y8*h->b8_stride] == 0
  1010. && (h->x264_build>33 || !h->x264_build)))){
  1011. const int16_t (*l1mv)[2]= l1ref0[x8 + y8*h->b8_stride] == 0 ? l1mv0 : l1mv1;
  1012. if(IS_SUB_8X8(sub_mb_type)){
  1013. const int16_t *mv_col = l1mv[x8*3 + y8*3*h->b_stride];
  1014. if(FFABS(mv_col[0]) <= 1 && FFABS(mv_col[1]) <= 1){
  1015. if(ref[0] == 0)
  1016. fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);
  1017. if(ref[1] == 0)
  1018. fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);
  1019. }
  1020. }else
  1021. for(i4=0; i4<4; i4++){
  1022. const int16_t *mv_col = l1mv[x8*2 + (i4&1) + (y8*2 + (i4>>1))*h->b_stride];
  1023. if(FFABS(mv_col[0]) <= 1 && FFABS(mv_col[1]) <= 1){
  1024. if(ref[0] == 0)
  1025. *(uint32_t*)h->mv_cache[0][scan8[i8*4+i4]] = 0;
  1026. if(ref[1] == 0)
  1027. *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] = 0;
  1028. }
  1029. }
  1030. }
  1031. }
  1032. }
  1033. }else{ /* direct temporal mv pred */
  1034. const int *map_col_to_list0[2] = {h->map_col_to_list0[0], h->map_col_to_list0[1]};
  1035. const int *dist_scale_factor = h->dist_scale_factor;
  1036. if(FRAME_MBAFF){
  1037. if(IS_INTERLACED(*mb_type)){
  1038. map_col_to_list0[0] = h->map_col_to_list0_field[0];
  1039. map_col_to_list0[1] = h->map_col_to_list0_field[1];
  1040. dist_scale_factor = h->dist_scale_factor_field;
  1041. }
  1042. if(IS_INTERLACED(*mb_type) != IS_INTERLACED(mb_type_col)){
  1043. /* FIXME assumes direct_8x8_inference == 1 */
  1044. const int pair_xy = s->mb_x + (s->mb_y&~1)*s->mb_stride;
  1045. int mb_types_col[2];
  1046. int y_shift;
  1047. *mb_type = MB_TYPE_8x8|MB_TYPE_L0L1
  1048. | (is_b8x8 ? 0 : MB_TYPE_DIRECT2)
  1049. | (*mb_type & MB_TYPE_INTERLACED);
  1050. sub_mb_type = MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2|MB_TYPE_16x16;
  1051. if(IS_INTERLACED(*mb_type)){
  1052. /* frame to field scaling */
  1053. mb_types_col[0] = h->ref_list[1][0].mb_type[pair_xy];
  1054. mb_types_col[1] = h->ref_list[1][0].mb_type[pair_xy+s->mb_stride];
  1055. if(s->mb_y&1){
  1056. l1ref0 -= 2*h->b8_stride;
  1057. l1ref1 -= 2*h->b8_stride;
  1058. l1mv0 -= 4*h->b_stride;
  1059. l1mv1 -= 4*h->b_stride;
  1060. }
  1061. y_shift = 0;
  1062. if( (mb_types_col[0] & MB_TYPE_16x16_OR_INTRA)
  1063. && (mb_types_col[1] & MB_TYPE_16x16_OR_INTRA)
  1064. && !is_b8x8)
  1065. *mb_type |= MB_TYPE_16x8;
  1066. else
  1067. *mb_type |= MB_TYPE_8x8;
  1068. }else{
  1069. /* field to frame scaling */
  1070. /* col_mb_y = (mb_y&~1) + (topAbsDiffPOC < bottomAbsDiffPOC ? 0 : 1)
  1071. * but in MBAFF, top and bottom POC are equal */
  1072. int dy = (s->mb_y&1) ? 1 : 2;
  1073. mb_types_col[0] =
  1074. mb_types_col[1] = h->ref_list[1][0].mb_type[pair_xy+s->mb_stride];
  1075. l1ref0 += dy*h->b8_stride;
  1076. l1ref1 += dy*h->b8_stride;
  1077. l1mv0 += 2*dy*h->b_stride;
  1078. l1mv1 += 2*dy*h->b_stride;
  1079. y_shift = 2;
  1080. if((mb_types_col[0] & (MB_TYPE_16x16_OR_INTRA|MB_TYPE_16x8))
  1081. && !is_b8x8)
  1082. *mb_type |= MB_TYPE_16x16;
  1083. else
  1084. *mb_type |= MB_TYPE_8x8;
  1085. }
  1086. for(i8=0; i8<4; i8++){
  1087. const int x8 = i8&1;
  1088. const int y8 = i8>>1;
  1089. int ref0, scale;
  1090. const int16_t (*l1mv)[2]= l1mv0;
  1091. if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
  1092. continue;
  1093. h->sub_mb_type[i8] = sub_mb_type;
  1094. fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1);
  1095. if(IS_INTRA(mb_types_col[y8])){
  1096. fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, 0, 1);
  1097. fill_rectangle(&h-> mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);
  1098. fill_rectangle(&h-> mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);
  1099. continue;
  1100. }
  1101. ref0 = l1ref0[x8 + (y8*2>>y_shift)*h->b8_stride];
  1102. if(ref0 >= 0)
  1103. ref0 = map_col_to_list0[0][ref0*2>>y_shift];
  1104. else{
  1105. ref0 = map_col_to_list0[1][l1ref1[x8 + (y8*2>>y_shift)*h->b8_stride]*2>>y_shift];
  1106. l1mv= l1mv1;
  1107. }
  1108. scale = dist_scale_factor[ref0];
  1109. fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1);
  1110. {
  1111. const int16_t *mv_col = l1mv[x8*3 + (y8*6>>y_shift)*h->b_stride];
  1112. int my_col = (mv_col[1]<<y_shift)/2;
  1113. int mx = (scale * mv_col[0] + 128) >> 8;
  1114. int my = (scale * my_col + 128) >> 8;
  1115. fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mx,my), 4);
  1116. fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mx-mv_col[0],my-my_col), 4);
  1117. }
  1118. }
  1119. return;
  1120. }
  1121. }
  1122. /* one-to-one mv scaling */
  1123. if(IS_16X16(*mb_type)){
  1124. int ref, mv0, mv1;
  1125. fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, 0, 1);
  1126. if(IS_INTRA(mb_type_col)){
  1127. ref=mv0=mv1=0;
  1128. }else{
  1129. const int ref0 = l1ref0[0] >= 0 ? map_col_to_list0[0][l1ref0[0]]
  1130. : map_col_to_list0[1][l1ref1[0]];
  1131. const int scale = dist_scale_factor[ref0];
  1132. const int16_t *mv_col = l1ref0[0] >= 0 ? l1mv0[0] : l1mv1[0];
  1133. int mv_l0[2];
  1134. mv_l0[0] = (scale * mv_col[0] + 128) >> 8;
  1135. mv_l0[1] = (scale * mv_col[1] + 128) >> 8;
  1136. ref= ref0;
  1137. mv0= pack16to32(mv_l0[0],mv_l0[1]);
  1138. mv1= pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]);
  1139. }
  1140. fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1);
  1141. fill_rectangle(&h-> mv_cache[0][scan8[0]], 4, 4, 8, mv0, 4);
  1142. fill_rectangle(&h-> mv_cache[1][scan8[0]], 4, 4, 8, mv1, 4);
  1143. }else{
  1144. for(i8=0; i8<4; i8++){
  1145. const int x8 = i8&1;
  1146. const int y8 = i8>>1;
  1147. int ref0, scale;
  1148. const int16_t (*l1mv)[2]= l1mv0;
  1149. if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
  1150. continue;
  1151. h->sub_mb_type[i8] = sub_mb_type;
  1152. fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1);
  1153. if(IS_INTRA(mb_type_col)){
  1154. fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, 0, 1);
  1155. fill_rectangle(&h-> mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);
  1156. fill_rectangle(&h-> mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);
  1157. continue;
  1158. }
  1159. ref0 = l1ref0[x8 + y8*h->b8_stride];
  1160. if(ref0 >= 0)
  1161. ref0 = map_col_to_list0[0][ref0];
  1162. else{
  1163. ref0 = map_col_to_list0[1][l1ref1[x8 + y8*h->b8_stride]];
  1164. l1mv= l1mv1;
  1165. }
  1166. scale = dist_scale_factor[ref0];
  1167. fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1);
  1168. if(IS_SUB_8X8(sub_mb_type)){
  1169. const int16_t *mv_col = l1mv[x8*3 + y8*3*h->b_stride];
  1170. int mx = (scale * mv_col[0] + 128) >> 8;
  1171. int my = (scale * mv_col[1] + 128) >> 8;
  1172. fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mx,my), 4);
  1173. fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mx-mv_col[0],my-mv_col[1]), 4);
  1174. }else
  1175. for(i4=0; i4<4; i4++){
  1176. const int16_t *mv_col = l1mv[x8*2 + (i4&1) + (y8*2 + (i4>>1))*h->b_stride];
  1177. int16_t *mv_l0 = h->mv_cache[0][scan8[i8*4+i4]];
  1178. mv_l0[0] = (scale * mv_col[0] + 128) >> 8;
  1179. mv_l0[1] = (scale * mv_col[1] + 128) >> 8;
  1180. *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] =
  1181. pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]);
  1182. }
  1183. }
  1184. }
  1185. }
  1186. }
  1187. static inline void write_back_motion(H264Context *h, int mb_type){
  1188. MpegEncContext * const s = &h->s;
  1189. const int b_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride;
  1190. const int b8_xy= 2*s->mb_x + 2*s->mb_y*h->b8_stride;
  1191. int list;
  1192. if(!USES_LIST(mb_type, 0))
  1193. fill_rectangle(&s->current_picture.ref_index[0][b8_xy], 2, 2, h->b8_stride, (uint8_t)LIST_NOT_USED, 1);
  1194. for(list=0; list<h->list_count; list++){
  1195. int y;
  1196. if(!USES_LIST(mb_type, list))
  1197. continue;
  1198. for(y=0; y<4; y++){
  1199. *(uint64_t*)s->current_picture.motion_val[list][b_xy + 0 + y*h->b_stride]= *(uint64_t*)h->mv_cache[list][scan8[0]+0 + 8*y];
  1200. *(uint64_t*)s->current_picture.motion_val[list][b_xy + 2 + y*h->b_stride]= *(uint64_t*)h->mv_cache[list][scan8[0]+2 + 8*y];
  1201. }
  1202. if( h->pps.cabac ) {
  1203. if(IS_SKIP(mb_type))
  1204. fill_rectangle(h->mvd_table[list][b_xy], 4, 4, h->b_stride, 0, 4);
  1205. else
  1206. for(y=0; y<4; y++){
  1207. *(uint64_t*)h->mvd_table[list][b_xy + 0 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+0 + 8*y];
  1208. *(uint64_t*)h->mvd_table[list][b_xy + 2 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+2 + 8*y];
  1209. }
  1210. }
  1211. {
  1212. int8_t *ref_index = &s->current_picture.ref_index[list][b8_xy];
  1213. ref_index[0+0*h->b8_stride]= h->ref_cache[list][scan8[0]];
  1214. ref_index[1+0*h->b8_stride]= h->ref_cache[list][scan8[4]];
  1215. ref_index[0+1*h->b8_stride]= h->ref_cache[list][scan8[8]];
  1216. ref_index[1+1*h->b8_stride]= h->ref_cache[list][scan8[12]];
  1217. }
  1218. }
  1219. if(h->slice_type == FF_B_TYPE && h->pps.cabac){
  1220. if(IS_8X8(mb_type)){
  1221. uint8_t *direct_table = &h->direct_table[b8_xy];
  1222. direct_table[1+0*h->b8_stride] = IS_DIRECT(h->sub_mb_type[1]) ? 1 : 0;
  1223. direct_table[0+1*h->b8_stride] = IS_DIRECT(h->sub_mb_type[2]) ? 1 : 0;
  1224. direct_table[1+1*h->b8_stride] = IS_DIRECT(h->sub_mb_type[3]) ? 1 : 0;
  1225. }
  1226. }
  1227. }
  1228. /**
  1229. * Decodes a network abstraction layer unit.
  1230. * @param consumed is the number of bytes used as input
  1231. * @param length is the length of the array
  1232. * @param dst_length is the number of decoded bytes FIXME here or a decode rbsp tailing?
  1233. * @returns decoded bytes, might be src+1 if no escapes
  1234. */
  1235. static const uint8_t *decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length){
  1236. int i, si, di;
  1237. uint8_t *dst;
  1238. int bufidx;
  1239. // src[0]&0x80; //forbidden bit
  1240. h->nal_ref_idc= src[0]>>5;
  1241. h->nal_unit_type= src[0]&0x1F;
  1242. src++; length--;
  1243. #if 0
  1244. for(i=0; i<length; i++)
  1245. printf("%2X ", src[i]);
  1246. #endif
  1247. for(i=0; i+1<length; i+=2){
  1248. if(src[i]) continue;
  1249. if(i>0 && src[i-1]==0) i--;
  1250. if(i+2<length && src[i+1]==0 && src[i+2]<=3){
  1251. if(src[i+2]!=3){
  1252. /* startcode, so we must be past the end */
  1253. length=i;
  1254. }
  1255. break;
  1256. }
  1257. }
  1258. if(i>=length-1){ //no escaped 0
  1259. *dst_length= length;
  1260. *consumed= length+1; //+1 for the header
  1261. return src;
  1262. }
  1263. bufidx = h->nal_unit_type == NAL_DPC ? 1 : 0; // use second escape buffer for inter data
  1264. h->rbsp_buffer[bufidx]= av_fast_realloc(h->rbsp_buffer[bufidx], &h->rbsp_buffer_size[bufidx], length);
  1265. dst= h->rbsp_buffer[bufidx];
  1266. if (dst == NULL){
  1267. return NULL;
  1268. }
  1269. //printf("decoding esc\n");
  1270. si=di=0;
  1271. while(si<length){
  1272. //remove escapes (very rare 1:2^22)
  1273. if(si+2<length && src[si]==0 && src[si+1]==0 && src[si+2]<=3){
  1274. if(src[si+2]==3){ //escape
  1275. dst[di++]= 0;
  1276. dst[di++]= 0;
  1277. si+=3;
  1278. continue;
  1279. }else //next start code
  1280. break;
  1281. }
  1282. dst[di++]= src[si++];
  1283. }
  1284. *dst_length= di;
  1285. *consumed= si + 1;//+1 for the header
  1286. //FIXME store exact number of bits in the getbitcontext (it is needed for decoding)
  1287. return dst;
  1288. }
  1289. /**
  1290. * identifies the exact end of the bitstream
  1291. * @return the length of the trailing, or 0 if damaged
  1292. */
  1293. static int decode_rbsp_trailing(H264Context *h, const uint8_t *src){
  1294. int v= *src;
  1295. int r;
  1296. tprintf(h->s.avctx, "rbsp trailing %X\n", v);
  1297. for(r=1; r<9; r++){
  1298. if(v&1) return r;
  1299. v>>=1;
  1300. }
  1301. return 0;
  1302. }
  1303. /**
  1304. * idct tranforms the 16 dc values and dequantize them.
  1305. * @param qp quantization parameter
  1306. */
  1307. static void h264_luma_dc_dequant_idct_c(DCTELEM *block, int qp, int qmul){
  1308. #define stride 16
  1309. int i;
  1310. int temp[16]; //FIXME check if this is a good idea
  1311. static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride};
  1312. static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride};
  1313. //memset(block, 64, 2*256);
  1314. //return;
  1315. for(i=0; i<4; i++){
  1316. const int offset= y_offset[i];
  1317. const int z0= block[offset+stride*0] + block[offset+stride*4];
  1318. const int z1= block[offset+stride*0] - block[offset+stride*4];
  1319. const int z2= block[offset+stride*1] - block[offset+stride*5];
  1320. const int z3= block[offset+stride*1] + block[offset+stride*5];
  1321. temp[4*i+0]= z0+z3;
  1322. temp[4*i+1]= z1+z2;
  1323. temp[4*i+2]= z1-z2;
  1324. temp[4*i+3]= z0-z3;
  1325. }
  1326. for(i=0; i<4; i++){
  1327. const int offset= x_offset[i];
  1328. const int z0= temp[4*0+i] + temp[4*2+i];
  1329. const int z1= temp[4*0+i] - temp[4*2+i];
  1330. const int z2= temp[4*1+i] - temp[4*3+i];
  1331. const int z3= temp[4*1+i] + temp[4*3+i];
  1332. block[stride*0 +offset]= ((((z0 + z3)*qmul + 128 ) >> 8)); //FIXME think about merging this into decode_resdual
  1333. block[stride*2 +offset]= ((((z1 + z2)*qmul + 128 ) >> 8));
  1334. block[stride*8 +offset]= ((((z1 - z2)*qmul + 128 ) >> 8));
  1335. block[stride*10+offset]= ((((z0 - z3)*qmul + 128 ) >> 8));
  1336. }
  1337. }
  1338. #if 0
  1339. /**
  1340. * dct tranforms the 16 dc values.
  1341. * @param qp quantization parameter ??? FIXME
  1342. */
  1343. static void h264_luma_dc_dct_c(DCTELEM *block/*, int qp*/){
  1344. // const int qmul= dequant_coeff[qp][0];
  1345. int i;
  1346. int temp[16]; //FIXME check if this is a good idea
  1347. static const int x_offset[4]={0, 1*stride, 4* stride, 5*stride};
  1348. static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride};
  1349. for(i=0; i<4; i++){
  1350. const int offset= y_offset[i];
  1351. const int z0= block[offset+stride*0] + block[offset+stride*4];
  1352. const int z1= block[offset+stride*0] - block[offset+stride*4];
  1353. const int z2= block[offset+stride*1] - block[offset+stride*5];
  1354. const int z3= block[offset+stride*1] + block[offset+stride*5];
  1355. temp[4*i+0]= z0+z3;
  1356. temp[4*i+1]= z1+z2;
  1357. temp[4*i+2]= z1-z2;
  1358. temp[4*i+3]= z0-z3;
  1359. }
  1360. for(i=0; i<4; i++){
  1361. const int offset= x_offset[i];
  1362. const int z0= temp[4*0+i] + temp[4*2+i];
  1363. const int z1= temp[4*0+i] - temp[4*2+i];
  1364. const int z2= temp[4*1+i] - temp[4*3+i];
  1365. const int z3= temp[4*1+i] + temp[4*3+i];
  1366. block[stride*0 +offset]= (z0 + z3)>>1;
  1367. block[stride*2 +offset]= (z1 + z2)>>1;
  1368. block[stride*8 +offset]= (z1 - z2)>>1;
  1369. block[stride*10+offset]= (z0 - z3)>>1;
  1370. }
  1371. }
  1372. #endif
  1373. #undef xStride
  1374. #undef stride
  1375. static void chroma_dc_dequant_idct_c(DCTELEM *block, int qp, int qmul){
  1376. const int stride= 16*2;
  1377. const int xStride= 16;
  1378. int a,b,c,d,e;
  1379. a= block[stride*0 + xStride*0];
  1380. b= block[stride*0 + xStride*1];
  1381. c= block[stride*1 + xStride*0];
  1382. d= block[stride*1 + xStride*1];
  1383. e= a-b;
  1384. a= a+b;
  1385. b= c-d;
  1386. c= c+d;
  1387. block[stride*0 + xStride*0]= ((a+c)*qmul) >> 7;
  1388. block[stride*0 + xStride*1]= ((e+b)*qmul) >> 7;
  1389. block[stride*1 + xStride*0]= ((a-c)*qmul) >> 7;
  1390. block[stride*1 + xStride*1]= ((e-b)*qmul) >> 7;
  1391. }
  1392. #if 0
  1393. static void chroma_dc_dct_c(DCTELEM *block){
  1394. const int stride= 16*2;
  1395. const int xStride= 16;
  1396. int a,b,c,d,e;
  1397. a= block[stride*0 + xStride*0];
  1398. b= block[stride*0 + xStride*1];
  1399. c= block[stride*1 + xStride*0];
  1400. d= block[stride*1 + xStride*1];
  1401. e= a-b;
  1402. a= a+b;
  1403. b= c-d;
  1404. c= c+d;
  1405. block[stride*0 + xStride*0]= (a+c);
  1406. block[stride*0 + xStride*1]= (e+b);
  1407. block[stride*1 + xStride*0]= (a-c);
  1408. block[stride*1 + xStride*1]= (e-b);
  1409. }
  1410. #endif
  1411. /**
  1412. * gets the chroma qp.
  1413. */
  1414. static inline int get_chroma_qp(H264Context *h, int t, int qscale){
  1415. return h->pps.chroma_qp_table[t][qscale & 0xff];
  1416. }
  1417. //FIXME need to check that this does not overflow signed 32 bit for low qp, I am not sure, it's very close
  1418. //FIXME check that gcc inlines this (and optimizes intra & separate_dc stuff away)
  1419. static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, int intra, int separate_dc){
  1420. int i;
  1421. const int * const quant_table= quant_coeff[qscale];
  1422. const int bias= intra ? (1<<QUANT_SHIFT)/3 : (1<<QUANT_SHIFT)/6;
  1423. const unsigned int threshold1= (1<<QUANT_SHIFT) - bias - 1;
  1424. const unsigned int threshold2= (threshold1<<1);
  1425. int last_non_zero;
  1426. if(separate_dc){
  1427. if(qscale<=18){
  1428. //avoid overflows
  1429. const int dc_bias= intra ? (1<<(QUANT_SHIFT-2))/3 : (1<<(QUANT_SHIFT-2))/6;
  1430. const unsigned int dc_threshold1= (1<<(QUANT_SHIFT-2)) - dc_bias - 1;
  1431. const unsigned int dc_threshold2= (dc_threshold1<<1);
  1432. int level= block[0]*quant_coeff[qscale+18][0];
  1433. if(((unsigned)(level+dc_threshold1))>dc_threshold2){
  1434. if(level>0){
  1435. level= (dc_bias + level)>>(QUANT_SHIFT-2);
  1436. block[0]= level;
  1437. }else{
  1438. level= (dc_bias - level)>>(QUANT_SHIFT-2);
  1439. block[0]= -level;
  1440. }
  1441. // last_non_zero = i;
  1442. }else{
  1443. block[0]=0;
  1444. }
  1445. }else{
  1446. const int dc_bias= intra ? (1<<(QUANT_SHIFT+1))/3 : (1<<(QUANT_SHIFT+1))/6;
  1447. const unsigned int dc_threshold1= (1<<(QUANT_SHIFT+1)) - dc_bias - 1;
  1448. const unsigned int dc_threshold2= (dc_threshold1<<1);
  1449. int level= block[0]*quant_table[0];
  1450. if(((unsigned)(level+dc_threshold1))>dc_threshold2){
  1451. if(level>0){
  1452. level= (dc_bias + level)>>(QUANT_SHIFT+1);
  1453. block[0]= level;
  1454. }else{
  1455. level= (dc_bias - level)>>(QUANT_SHIFT+1);
  1456. block[0]= -level;
  1457. }
  1458. // last_non_zero = i;
  1459. }else{
  1460. block[0]=0;
  1461. }
  1462. }
  1463. last_non_zero= 0;
  1464. i=1;
  1465. }else{
  1466. last_non_zero= -1;
  1467. i=0;
  1468. }
  1469. for(; i<16; i++){
  1470. const int j= scantable[i];
  1471. int level= block[j]*quant_table[j];
  1472. // if( bias+level >= (1<<(QMAT_SHIFT - 3))
  1473. // || bias-level >= (1<<(QMAT_SHIFT - 3))){
  1474. if(((unsigned)(level+threshold1))>threshold2){
  1475. if(level>0){
  1476. level= (bias + level)>>QUANT_SHIFT;
  1477. block[j]= level;
  1478. }else{
  1479. level= (bias - level)>>QUANT_SHIFT;
  1480. block[j]= -level;
  1481. }
  1482. last_non_zero = i;
  1483. }else{
  1484. block[j]=0;
  1485. }
  1486. }
  1487. return last_non_zero;
  1488. }
  1489. static inline void mc_dir_part(H264Context *h, Picture *pic, int n, int square, int chroma_height, int delta, int list,
  1490. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  1491. int src_x_offset, int src_y_offset,
  1492. qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op){
  1493. MpegEncContext * const s = &h->s;
  1494. const int mx= h->mv_cache[list][ scan8[n] ][0] + src_x_offset*8;
  1495. int my= h->mv_cache[list][ scan8[n] ][1] + src_y_offset*8;
  1496. const int luma_xy= (mx&3) + ((my&3)<<2);
  1497. uint8_t * src_y = pic->data[0] + (mx>>2) + (my>>2)*h->mb_linesize;
  1498. uint8_t * src_cb, * src_cr;
  1499. int extra_width= h->emu_edge_width;
  1500. int extra_height= h->emu_edge_height;
  1501. int emu=0;
  1502. const int full_mx= mx>>2;
  1503. const int full_my= my>>2;
  1504. const int pic_width = 16*s->mb_width;
  1505. const int pic_height = 16*s->mb_height >> MB_FIELD;
  1506. if(!pic->data[0]) //FIXME this is unacceptable, some senseable error concealment must be done for missing reference frames
  1507. return;
  1508. if(mx&7) extra_width -= 3;
  1509. if(my&7) extra_height -= 3;
  1510. if( full_mx < 0-extra_width
  1511. || full_my < 0-extra_height
  1512. || full_mx + 16/*FIXME*/ > pic_width + extra_width
  1513. || full_my + 16/*FIXME*/ > pic_height + extra_height){
  1514. ff_emulated_edge_mc(s->edge_emu_buffer, src_y - 2 - 2*h->mb_linesize, h->mb_linesize, 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
  1515. src_y= s->edge_emu_buffer + 2 + 2*h->mb_linesize;
  1516. emu=1;
  1517. }
  1518. qpix_op[luma_xy](dest_y, src_y, h->mb_linesize); //FIXME try variable height perhaps?
  1519. if(!square){
  1520. qpix_op[luma_xy](dest_y + delta, src_y + delta, h->mb_linesize);
  1521. }
  1522. if(ENABLE_GRAY && s->flags&CODEC_FLAG_GRAY) return;
  1523. if(MB_FIELD){
  1524. // chroma offset when predicting from a field of opposite parity
  1525. my += 2 * ((s->mb_y & 1) - (pic->reference - 1));
  1526. emu |= (my>>3) < 0 || (my>>3) + 8 >= (pic_height>>1);
  1527. }
  1528. src_cb= pic->data[1] + (mx>>3) + (my>>3)*h->mb_uvlinesize;
  1529. src_cr= pic->data[2] + (mx>>3) + (my>>3)*h->mb_uvlinesize;
  1530. if(emu){
  1531. ff_emulated_edge_mc(s->edge_emu_buffer, src_cb, h->mb_uvlinesize, 9, 9/*FIXME*/, (mx>>3), (my>>3), pic_width>>1, pic_height>>1);
  1532. src_cb= s->edge_emu_buffer;
  1533. }
  1534. chroma_op(dest_cb, src_cb, h->mb_uvlinesize, chroma_height, mx&7, my&7);
  1535. if(emu){
  1536. ff_emulated_edge_mc(s->edge_emu_buffer, src_cr, h->mb_uvlinesize, 9, 9/*FIXME*/, (mx>>3), (my>>3), pic_width>>1, pic_height>>1);
  1537. src_cr= s->edge_emu_buffer;
  1538. }
  1539. chroma_op(dest_cr, src_cr, h->mb_uvlinesize, chroma_height, mx&7, my&7);
  1540. }
  1541. static inline void mc_part_std(H264Context *h, int n, int square, int chroma_height, int delta,
  1542. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  1543. int x_offset, int y_offset,
  1544. qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
  1545. qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
  1546. int list0, int list1){
  1547. MpegEncContext * const s = &h->s;
  1548. qpel_mc_func *qpix_op= qpix_put;
  1549. h264_chroma_mc_func chroma_op= chroma_put;
  1550. dest_y += 2*x_offset + 2*y_offset*h-> mb_linesize;
  1551. dest_cb += x_offset + y_offset*h->mb_uvlinesize;
  1552. dest_cr += x_offset + y_offset*h->mb_uvlinesize;
  1553. x_offset += 8*s->mb_x;
  1554. y_offset += 8*(s->mb_y >> MB_FIELD);
  1555. if(list0){
  1556. Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ];
  1557. mc_dir_part(h, ref, n, square, chroma_height, delta, 0,
  1558. dest_y, dest_cb, dest_cr, x_offset, y_offset,
  1559. qpix_op, chroma_op);
  1560. qpix_op= qpix_avg;
  1561. chroma_op= chroma_avg;
  1562. }
  1563. if(list1){
  1564. Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ];
  1565. mc_dir_part(h, ref, n, square, chroma_height, delta, 1,
  1566. dest_y, dest_cb, dest_cr, x_offset, y_offset,
  1567. qpix_op, chroma_op);
  1568. }
  1569. }
  1570. static inline void mc_part_weighted(H264Context *h, int n, int square, int chroma_height, int delta,
  1571. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  1572. int x_offset, int y_offset,
  1573. qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
  1574. h264_weight_func luma_weight_op, h264_weight_func chroma_weight_op,
  1575. h264_biweight_func luma_weight_avg, h264_biweight_func chroma_weight_avg,
  1576. int list0, int list1){
  1577. MpegEncContext * const s = &h->s;
  1578. dest_y += 2*x_offset + 2*y_offset*h-> mb_linesize;
  1579. dest_cb += x_offset + y_offset*h->mb_uvlinesize;
  1580. dest_cr += x_offset + y_offset*h->mb_uvlinesize;
  1581. x_offset += 8*s->mb_x;
  1582. y_offset += 8*(s->mb_y >> MB_FIELD);
  1583. if(list0 && list1){
  1584. /* don't optimize for luma-only case, since B-frames usually
  1585. * use implicit weights => chroma too. */
  1586. uint8_t *tmp_cb = s->obmc_scratchpad;
  1587. uint8_t *tmp_cr = s->obmc_scratchpad + 8;
  1588. uint8_t *tmp_y = s->obmc_scratchpad + 8*h->mb_uvlinesize;
  1589. int refn0 = h->ref_cache[0][ scan8[n] ];
  1590. int refn1 = h->ref_cache[1][ scan8[n] ];
  1591. mc_dir_part(h, &h->ref_list[0][refn0], n, square, chroma_height, delta, 0,
  1592. dest_y, dest_cb, dest_cr,
  1593. x_offset, y_offset, qpix_put, chroma_put);
  1594. mc_dir_part(h, &h->ref_list[1][refn1], n, square, chroma_height, delta, 1,
  1595. tmp_y, tmp_cb, tmp_cr,
  1596. x_offset, y_offset, qpix_put, chroma_put);
  1597. if(h->use_weight == 2){
  1598. int weight0 = h->implicit_weight[refn0][refn1];
  1599. int weight1 = 64 - weight0;
  1600. luma_weight_avg( dest_y, tmp_y, h-> mb_linesize, 5, weight0, weight1, 0);
  1601. chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize, 5, weight0, weight1, 0);
  1602. chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize, 5, weight0, weight1, 0);
  1603. }else{
  1604. luma_weight_avg(dest_y, tmp_y, h->mb_linesize, h->luma_log2_weight_denom,
  1605. h->luma_weight[0][refn0], h->luma_weight[1][refn1],
  1606. h->luma_offset[0][refn0] + h->luma_offset[1][refn1]);
  1607. chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize, h->chroma_log2_weight_denom,
  1608. h->chroma_weight[0][refn0][0], h->chroma_weight[1][refn1][0],
  1609. h->chroma_offset[0][refn0][0] + h->chroma_offset[1][refn1][0]);
  1610. chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize, h->chroma_log2_weight_denom,
  1611. h->chroma_weight[0][refn0][1], h->chroma_weight[1][refn1][1],
  1612. h->chroma_offset[0][refn0][1] + h->chroma_offset[1][refn1][1]);
  1613. }
  1614. }else{
  1615. int list = list1 ? 1 : 0;
  1616. int refn = h->ref_cache[list][ scan8[n] ];
  1617. Picture *ref= &h->ref_list[list][refn];
  1618. mc_dir_part(h, ref, n, square, chroma_height, delta, list,
  1619. dest_y, dest_cb, dest_cr, x_offset, y_offset,
  1620. qpix_put, chroma_put);
  1621. luma_weight_op(dest_y, h->mb_linesize, h->luma_log2_weight_denom,
  1622. h->luma_weight[list][refn], h->luma_offset[list][refn]);
  1623. if(h->use_weight_chroma){
  1624. chroma_weight_op(dest_cb, h->mb_uvlinesize, h->chroma_log2_weight_denom,
  1625. h->chroma_weight[list][refn][0], h->chroma_offset[list][refn][0]);
  1626. chroma_weight_op(dest_cr, h->mb_uvlinesize, h->chroma_log2_weight_denom,
  1627. h->chroma_weight[list][refn][1], h->chroma_offset[list][refn][1]);
  1628. }
  1629. }
  1630. }
  1631. static inline void mc_part(H264Context *h, int n, int square, int chroma_height, int delta,
  1632. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  1633. int x_offset, int y_offset,
  1634. qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
  1635. qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
  1636. h264_weight_func *weight_op, h264_biweight_func *weight_avg,
  1637. int list0, int list1){
  1638. if((h->use_weight==2 && list0 && list1
  1639. && (h->implicit_weight[ h->ref_cache[0][scan8[n]] ][ h->ref_cache[1][scan8[n]] ] != 32))
  1640. || h->use_weight==1)
  1641. mc_part_weighted(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr,
  1642. x_offset, y_offset, qpix_put, chroma_put,
  1643. weight_op[0], weight_op[3], weight_avg[0], weight_avg[3], list0, list1);
  1644. else
  1645. mc_part_std(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr,
  1646. x_offset, y_offset, qpix_put, chroma_put, qpix_avg, chroma_avg, list0, list1);
  1647. }
  1648. static inline void prefetch_motion(H264Context *h, int list){
  1649. /* fetch pixels for estimated mv 4 macroblocks ahead
  1650. * optimized for 64byte cache lines */
  1651. MpegEncContext * const s = &h->s;
  1652. const int refn = h->ref_cache[list][scan8[0]];
  1653. if(refn >= 0){
  1654. const int mx= (h->mv_cache[list][scan8[0]][0]>>2) + 16*s->mb_x + 8;
  1655. const int my= (h->mv_cache[list][scan8[0]][1]>>2) + 16*s->mb_y;
  1656. uint8_t **src= h->ref_list[list][refn].data;
  1657. int off= mx + (my + (s->mb_x&3)*4)*h->mb_linesize + 64;
  1658. s->dsp.prefetch(src[0]+off, s->linesize, 4);
  1659. off= (mx>>1) + ((my>>1) + (s->mb_x&7))*s->uvlinesize + 64;
  1660. s->dsp.prefetch(src[1]+off, src[2]-src[1], 2);
  1661. }
  1662. }
  1663. static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  1664. qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
  1665. qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
  1666. h264_weight_func *weight_op, h264_biweight_func *weight_avg){
  1667. MpegEncContext * const s = &h->s;
  1668. const int mb_xy= h->mb_xy;
  1669. const int mb_type= s->current_picture.mb_type[mb_xy];
  1670. assert(IS_INTER(mb_type));
  1671. prefetch_motion(h, 0);
  1672. if(IS_16X16(mb_type)){
  1673. mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0,
  1674. qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0],
  1675. &weight_op[0], &weight_avg[0],
  1676. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
  1677. }else if(IS_16X8(mb_type)){
  1678. mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0,
  1679. qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
  1680. &weight_op[1], &weight_avg[1],
  1681. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
  1682. mc_part(h, 8, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 4,
  1683. qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
  1684. &weight_op[1], &weight_avg[1],
  1685. IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1));
  1686. }else if(IS_8X16(mb_type)){
  1687. mc_part(h, 0, 0, 8, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 0, 0,
  1688. qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
  1689. &weight_op[2], &weight_avg[2],
  1690. IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
  1691. mc_part(h, 4, 0, 8, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 4, 0,
  1692. qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
  1693. &weight_op[2], &weight_avg[2],
  1694. IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1));
  1695. }else{
  1696. int i;
  1697. assert(IS_8X8(mb_type));
  1698. for(i=0; i<4; i++){
  1699. const int sub_mb_type= h->sub_mb_type[i];
  1700. const int n= 4*i;
  1701. int x_offset= (i&1)<<2;
  1702. int y_offset= (i&2)<<1;
  1703. if(IS_SUB_8X8(sub_mb_type)){
  1704. mc_part(h, n, 1, 4, 0, dest_y, dest_cb, dest_cr, x_offset, y_offset,
  1705. qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
  1706. &weight_op[3], &weight_avg[3],
  1707. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
  1708. }else if(IS_SUB_8X4(sub_mb_type)){
  1709. mc_part(h, n , 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset,
  1710. qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
  1711. &weight_op[4], &weight_avg[4],
  1712. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
  1713. mc_part(h, n+2, 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset+2,
  1714. qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
  1715. &weight_op[4], &weight_avg[4],
  1716. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
  1717. }else if(IS_SUB_4X8(sub_mb_type)){
  1718. mc_part(h, n , 0, 4, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset, y_offset,
  1719. qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
  1720. &weight_op[5], &weight_avg[5],
  1721. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
  1722. mc_part(h, n+1, 0, 4, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset+2, y_offset,
  1723. qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
  1724. &weight_op[5], &weight_avg[5],
  1725. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
  1726. }else{
  1727. int j;
  1728. assert(IS_SUB_4X4(sub_mb_type));
  1729. for(j=0; j<4; j++){
  1730. int sub_x_offset= x_offset + 2*(j&1);
  1731. int sub_y_offset= y_offset + (j&2);
  1732. mc_part(h, n+j, 1, 2, 0, dest_y, dest_cb, dest_cr, sub_x_offset, sub_y_offset,
  1733. qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
  1734. &weight_op[6], &weight_avg[6],
  1735. IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
  1736. }
  1737. }
  1738. }
  1739. }
  1740. prefetch_motion(h, 1);
  1741. }
  1742. static av_cold void decode_init_vlc(void){
  1743. static int done = 0;
  1744. if (!done) {
  1745. int i;
  1746. done = 1;
  1747. init_vlc(&chroma_dc_coeff_token_vlc, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 4*5,
  1748. &chroma_dc_coeff_token_len [0], 1, 1,
  1749. &chroma_dc_coeff_token_bits[0], 1, 1, 1);
  1750. for(i=0; i<4; i++){
  1751. init_vlc(&coeff_token_vlc[i], COEFF_TOKEN_VLC_BITS, 4*17,
  1752. &coeff_token_len [i][0], 1, 1,
  1753. &coeff_token_bits[i][0], 1, 1, 1);
  1754. }
  1755. for(i=0; i<3; i++){
  1756. init_vlc(&chroma_dc_total_zeros_vlc[i], CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 4,
  1757. &chroma_dc_total_zeros_len [i][0], 1, 1,
  1758. &chroma_dc_total_zeros_bits[i][0], 1, 1, 1);
  1759. }
  1760. for(i=0; i<15; i++){
  1761. init_vlc(&total_zeros_vlc[i], TOTAL_ZEROS_VLC_BITS, 16,
  1762. &total_zeros_len [i][0], 1, 1,
  1763. &total_zeros_bits[i][0], 1, 1, 1);
  1764. }
  1765. for(i=0; i<6; i++){
  1766. init_vlc(&run_vlc[i], RUN_VLC_BITS, 7,
  1767. &run_len [i][0], 1, 1,
  1768. &run_bits[i][0], 1, 1, 1);
  1769. }
  1770. init_vlc(&run7_vlc, RUN7_VLC_BITS, 16,
  1771. &run_len [6][0], 1, 1,
  1772. &run_bits[6][0], 1, 1, 1);
  1773. }
  1774. }
  1775. static void free_tables(H264Context *h){
  1776. int i;
  1777. H264Context *hx;
  1778. av_freep(&h->intra4x4_pred_mode);
  1779. av_freep(&h->chroma_pred_mode_table);
  1780. av_freep(&h->cbp_table);
  1781. av_freep(&h->mvd_table[0]);
  1782. av_freep(&h->mvd_table[1]);
  1783. av_freep(&h->direct_table);
  1784. av_freep(&h->non_zero_count);
  1785. av_freep(&h->slice_table_base);
  1786. h->slice_table= NULL;
  1787. av_freep(&h->mb2b_xy);
  1788. av_freep(&h->mb2b8_xy);
  1789. for(i = 0; i < MAX_SPS_COUNT; i++)
  1790. av_freep(h->sps_buffers + i);
  1791. for(i = 0; i < MAX_PPS_COUNT; i++)
  1792. av_freep(h->pps_buffers + i);
  1793. for(i = 0; i < h->s.avctx->thread_count; i++) {
  1794. hx = h->thread_context[i];
  1795. if(!hx) continue;
  1796. av_freep(&hx->top_borders[1]);
  1797. av_freep(&hx->top_borders[0]);
  1798. av_freep(&hx->s.obmc_scratchpad);
  1799. }
  1800. }
  1801. static void init_dequant8_coeff_table(H264Context *h){
  1802. int i,q,x;
  1803. const int transpose = (h->s.dsp.h264_idct8_add != ff_h264_idct8_add_c); //FIXME ugly
  1804. h->dequant8_coeff[0] = h->dequant8_buffer[0];
  1805. h->dequant8_coeff[1] = h->dequant8_buffer[1];
  1806. for(i=0; i<2; i++ ){
  1807. if(i && !memcmp(h->pps.scaling_matrix8[0], h->pps.scaling_matrix8[1], 64*sizeof(uint8_t))){
  1808. h->dequant8_coeff[1] = h->dequant8_buffer[0];
  1809. break;
  1810. }
  1811. for(q=0; q<52; q++){
  1812. int shift = ff_div6[q];
  1813. int idx = ff_rem6[q];
  1814. for(x=0; x<64; x++)
  1815. h->dequant8_coeff[i][q][transpose ? (x>>3)|((x&7)<<3) : x] =
  1816. ((uint32_t)dequant8_coeff_init[idx][ dequant8_coeff_init_scan[((x>>1)&12) | (x&3)] ] *
  1817. h->pps.scaling_matrix8[i][x]) << shift;
  1818. }
  1819. }
  1820. }
  1821. static void init_dequant4_coeff_table(H264Context *h){
  1822. int i,j,q,x;
  1823. const int transpose = (h->s.dsp.h264_idct_add != ff_h264_idct_add_c); //FIXME ugly
  1824. for(i=0; i<6; i++ ){
  1825. h->dequant4_coeff[i] = h->dequant4_buffer[i];
  1826. for(j=0; j<i; j++){
  1827. if(!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i], 16*sizeof(uint8_t))){
  1828. h->dequant4_coeff[i] = h->dequant4_buffer[j];
  1829. break;
  1830. }
  1831. }
  1832. if(j<i)
  1833. continue;
  1834. for(q=0; q<52; q++){
  1835. int shift = ff_div6[q] + 2;
  1836. int idx = ff_rem6[q];
  1837. for(x=0; x<16; x++)
  1838. h->dequant4_coeff[i][q][transpose ? (x>>2)|((x<<2)&0xF) : x] =
  1839. ((uint32_t)dequant4_coeff_init[idx][(x&1) + ((x>>2)&1)] *
  1840. h->pps.scaling_matrix4[i][x]) << shift;
  1841. }
  1842. }
  1843. }
  1844. static void init_dequant_tables(H264Context *h){
  1845. int i,x;
  1846. init_dequant4_coeff_table(h);
  1847. if(h->pps.transform_8x8_mode)
  1848. init_dequant8_coeff_table(h);
  1849. if(h->sps.transform_bypass){
  1850. for(i=0; i<6; i++)
  1851. for(x=0; x<16; x++)
  1852. h->dequant4_coeff[i][0][x] = 1<<6;
  1853. if(h->pps.transform_8x8_mode)
  1854. for(i=0; i<2; i++)
  1855. for(x=0; x<64; x++)
  1856. h->dequant8_coeff[i][0][x] = 1<<6;
  1857. }
  1858. }
  1859. /**
  1860. * allocates tables.
  1861. * needs width/height
  1862. */
  1863. static int alloc_tables(H264Context *h){
  1864. MpegEncContext * const s = &h->s;
  1865. const int big_mb_num= s->mb_stride * (s->mb_height+1);
  1866. int x,y;
  1867. CHECKED_ALLOCZ(h->intra4x4_pred_mode, big_mb_num * 8 * sizeof(uint8_t))
  1868. CHECKED_ALLOCZ(h->non_zero_count , big_mb_num * 16 * sizeof(uint8_t))
  1869. CHECKED_ALLOCZ(h->slice_table_base , (big_mb_num+s->mb_stride) * sizeof(uint8_t))
  1870. CHECKED_ALLOCZ(h->cbp_table, big_mb_num * sizeof(uint16_t))
  1871. CHECKED_ALLOCZ(h->chroma_pred_mode_table, big_mb_num * sizeof(uint8_t))
  1872. CHECKED_ALLOCZ(h->mvd_table[0], 32*big_mb_num * sizeof(uint16_t));
  1873. CHECKED_ALLOCZ(h->mvd_table[1], 32*big_mb_num * sizeof(uint16_t));
  1874. CHECKED_ALLOCZ(h->direct_table, 32*big_mb_num * sizeof(uint8_t));
  1875. memset(h->slice_table_base, -1, (big_mb_num+s->mb_stride) * sizeof(uint8_t));
  1876. h->slice_table= h->slice_table_base + s->mb_stride*2 + 1;
  1877. CHECKED_ALLOCZ(h->mb2b_xy , big_mb_num * sizeof(uint32_t));
  1878. CHECKED_ALLOCZ(h->mb2b8_xy , big_mb_num * sizeof(uint32_t));
  1879. for(y=0; y<s->mb_height; y++){
  1880. for(x=0; x<s->mb_width; x++){
  1881. const int mb_xy= x + y*s->mb_stride;
  1882. const int b_xy = 4*x + 4*y*h->b_stride;
  1883. const int b8_xy= 2*x + 2*y*h->b8_stride;
  1884. h->mb2b_xy [mb_xy]= b_xy;
  1885. h->mb2b8_xy[mb_xy]= b8_xy;
  1886. }
  1887. }
  1888. s->obmc_scratchpad = NULL;
  1889. if(!h->dequant4_coeff[0])
  1890. init_dequant_tables(h);
  1891. return 0;
  1892. fail:
  1893. free_tables(h);
  1894. return -1;
  1895. }
  1896. /**
  1897. * Mimic alloc_tables(), but for every context thread.
  1898. */
  1899. static void clone_tables(H264Context *dst, H264Context *src){
  1900. dst->intra4x4_pred_mode = src->intra4x4_pred_mode;
  1901. dst->non_zero_count = src->non_zero_count;
  1902. dst->slice_table = src->slice_table;
  1903. dst->cbp_table = src->cbp_table;
  1904. dst->mb2b_xy = src->mb2b_xy;
  1905. dst->mb2b8_xy = src->mb2b8_xy;
  1906. dst->chroma_pred_mode_table = src->chroma_pred_mode_table;
  1907. dst->mvd_table[0] = src->mvd_table[0];
  1908. dst->mvd_table[1] = src->mvd_table[1];
  1909. dst->direct_table = src->direct_table;
  1910. dst->s.obmc_scratchpad = NULL;
  1911. ff_h264_pred_init(&dst->hpc, src->s.codec_id);
  1912. }
  1913. /**
  1914. * Init context
  1915. * Allocate buffers which are not shared amongst multiple threads.
  1916. */
  1917. static int context_init(H264Context *h){
  1918. CHECKED_ALLOCZ(h->top_borders[0], h->s.mb_width * (16+8+8) * sizeof(uint8_t))
  1919. CHECKED_ALLOCZ(h->top_borders[1], h->s.mb_width * (16+8+8) * sizeof(uint8_t))
  1920. return 0;
  1921. fail:
  1922. return -1; // free_tables will clean up for us
  1923. }
  1924. static av_cold void common_init(H264Context *h){
  1925. MpegEncContext * const s = &h->s;
  1926. s->width = s->avctx->width;
  1927. s->height = s->avctx->height;
  1928. s->codec_id= s->avctx->codec->id;
  1929. ff_h264_pred_init(&h->hpc, s->codec_id);
  1930. h->dequant_coeff_pps= -1;
  1931. s->unrestricted_mv=1;
  1932. s->decode=1; //FIXME
  1933. memset(h->pps.scaling_matrix4, 16, 6*16*sizeof(uint8_t));
  1934. memset(h->pps.scaling_matrix8, 16, 2*64*sizeof(uint8_t));
  1935. }
  1936. static av_cold int decode_init(AVCodecContext *avctx){
  1937. H264Context *h= avctx->priv_data;
  1938. MpegEncContext * const s = &h->s;
  1939. MPV_decode_defaults(s);
  1940. s->avctx = avctx;
  1941. common_init(h);
  1942. s->out_format = FMT_H264;
  1943. s->workaround_bugs= avctx->workaround_bugs;
  1944. // set defaults
  1945. // s->decode_mb= ff_h263_decode_mb;
  1946. s->quarter_sample = 1;
  1947. s->low_delay= 1;
  1948. avctx->pix_fmt= PIX_FMT_YUV420P;
  1949. decode_init_vlc();
  1950. if(avctx->extradata_size > 0 && avctx->extradata &&
  1951. *(char *)avctx->extradata == 1){
  1952. h->is_avc = 1;
  1953. h->got_avcC = 0;
  1954. } else {
  1955. h->is_avc = 0;
  1956. }
  1957. h->thread_context[0] = h;
  1958. return 0;
  1959. }
  1960. static int frame_start(H264Context *h){
  1961. MpegEncContext * const s = &h->s;
  1962. int i;
  1963. if(MPV_frame_start(s, s->avctx) < 0)
  1964. return -1;
  1965. ff_er_frame_start(s);
  1966. /*
  1967. * MPV_frame_start uses pict_type to derive key_frame.
  1968. * This is incorrect for H.264; IDR markings must be used.
  1969. * Zero here; IDR markings per slice in frame or fields are OR'd in later.
  1970. * See decode_nal_units().
  1971. */
  1972. s->current_picture_ptr->key_frame= 0;
  1973. assert(s->linesize && s->uvlinesize);
  1974. for(i=0; i<16; i++){
  1975. h->block_offset[i]= 4*((scan8[i] - scan8[0])&7) + 4*s->linesize*((scan8[i] - scan8[0])>>3);
  1976. h->block_offset[24+i]= 4*((scan8[i] - scan8[0])&7) + 8*s->linesize*((scan8[i] - scan8[0])>>3);
  1977. }
  1978. for(i=0; i<4; i++){
  1979. h->block_offset[16+i]=
  1980. h->block_offset[20+i]= 4*((scan8[i] - scan8[0])&7) + 4*s->uvlinesize*((scan8[i] - scan8[0])>>3);
  1981. h->block_offset[24+16+i]=
  1982. h->block_offset[24+20+i]= 4*((scan8[i] - scan8[0])&7) + 8*s->uvlinesize*((scan8[i] - scan8[0])>>3);
  1983. }
  1984. /* can't be in alloc_tables because linesize isn't known there.
  1985. * FIXME: redo bipred weight to not require extra buffer? */
  1986. for(i = 0; i < s->avctx->thread_count; i++)
  1987. if(!h->thread_context[i]->s.obmc_scratchpad)
  1988. h->thread_context[i]->s.obmc_scratchpad = av_malloc(16*2*s->linesize + 8*2*s->uvlinesize);
  1989. /* some macroblocks will be accessed before they're available */
  1990. if(FRAME_MBAFF || s->avctx->thread_count > 1)
  1991. memset(h->slice_table, -1, (s->mb_height*s->mb_stride-1) * sizeof(uint8_t));
  1992. // s->decode= (s->flags&CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.reference /*|| h->contains_intra*/ || 1;
  1993. return 0;
  1994. }
  1995. static inline void backup_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize, int simple){
  1996. MpegEncContext * const s = &h->s;
  1997. int i;
  1998. src_y -= linesize;
  1999. src_cb -= uvlinesize;
  2000. src_cr -= uvlinesize;
  2001. // There are two lines saved, the line above the the top macroblock of a pair,
  2002. // and the line above the bottom macroblock
  2003. h->left_border[0]= h->top_borders[0][s->mb_x][15];
  2004. for(i=1; i<17; i++){
  2005. h->left_border[i]= src_y[15+i* linesize];
  2006. }
  2007. *(uint64_t*)(h->top_borders[0][s->mb_x]+0)= *(uint64_t*)(src_y + 16*linesize);
  2008. *(uint64_t*)(h->top_borders[0][s->mb_x]+8)= *(uint64_t*)(src_y +8+16*linesize);
  2009. if(simple || !ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  2010. h->left_border[17 ]= h->top_borders[0][s->mb_x][16+7];
  2011. h->left_border[17+9]= h->top_borders[0][s->mb_x][24+7];
  2012. for(i=1; i<9; i++){
  2013. h->left_border[i+17 ]= src_cb[7+i*uvlinesize];
  2014. h->left_border[i+17+9]= src_cr[7+i*uvlinesize];
  2015. }
  2016. *(uint64_t*)(h->top_borders[0][s->mb_x]+16)= *(uint64_t*)(src_cb+8*uvlinesize);
  2017. *(uint64_t*)(h->top_borders[0][s->mb_x]+24)= *(uint64_t*)(src_cr+8*uvlinesize);
  2018. }
  2019. }
  2020. static inline void xchg_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize, int xchg, int simple){
  2021. MpegEncContext * const s = &h->s;
  2022. int temp8, i;
  2023. uint64_t temp64;
  2024. int deblock_left;
  2025. int deblock_top;
  2026. int mb_xy;
  2027. if(h->deblocking_filter == 2) {
  2028. mb_xy = h->mb_xy;
  2029. deblock_left = h->slice_table[mb_xy] == h->slice_table[mb_xy - 1];
  2030. deblock_top = h->slice_table[mb_xy] == h->slice_table[h->top_mb_xy];
  2031. } else {
  2032. deblock_left = (s->mb_x > 0);
  2033. deblock_top = (s->mb_y > 0);
  2034. }
  2035. src_y -= linesize + 1;
  2036. src_cb -= uvlinesize + 1;
  2037. src_cr -= uvlinesize + 1;
  2038. #define XCHG(a,b,t,xchg)\
  2039. t= a;\
  2040. if(xchg)\
  2041. a= b;\
  2042. b= t;
  2043. if(deblock_left){
  2044. for(i = !deblock_top; i<17; i++){
  2045. XCHG(h->left_border[i ], src_y [i* linesize], temp8, xchg);
  2046. }
  2047. }
  2048. if(deblock_top){
  2049. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+0), *(uint64_t*)(src_y +1), temp64, xchg);
  2050. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+8), *(uint64_t*)(src_y +9), temp64, 1);
  2051. if(s->mb_x+1 < s->mb_width){
  2052. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x+1]), *(uint64_t*)(src_y +17), temp64, 1);
  2053. }
  2054. }
  2055. if(simple || !ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  2056. if(deblock_left){
  2057. for(i = !deblock_top; i<9; i++){
  2058. XCHG(h->left_border[i+17 ], src_cb[i*uvlinesize], temp8, xchg);
  2059. XCHG(h->left_border[i+17+9], src_cr[i*uvlinesize], temp8, xchg);
  2060. }
  2061. }
  2062. if(deblock_top){
  2063. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+16), *(uint64_t*)(src_cb+1), temp64, 1);
  2064. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+24), *(uint64_t*)(src_cr+1), temp64, 1);
  2065. }
  2066. }
  2067. }
  2068. static inline void backup_pair_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize){
  2069. MpegEncContext * const s = &h->s;
  2070. int i;
  2071. src_y -= 2 * linesize;
  2072. src_cb -= 2 * uvlinesize;
  2073. src_cr -= 2 * uvlinesize;
  2074. // There are two lines saved, the line above the the top macroblock of a pair,
  2075. // and the line above the bottom macroblock
  2076. h->left_border[0]= h->top_borders[0][s->mb_x][15];
  2077. h->left_border[1]= h->top_borders[1][s->mb_x][15];
  2078. for(i=2; i<34; i++){
  2079. h->left_border[i]= src_y[15+i* linesize];
  2080. }
  2081. *(uint64_t*)(h->top_borders[0][s->mb_x]+0)= *(uint64_t*)(src_y + 32*linesize);
  2082. *(uint64_t*)(h->top_borders[0][s->mb_x]+8)= *(uint64_t*)(src_y +8+32*linesize);
  2083. *(uint64_t*)(h->top_borders[1][s->mb_x]+0)= *(uint64_t*)(src_y + 33*linesize);
  2084. *(uint64_t*)(h->top_borders[1][s->mb_x]+8)= *(uint64_t*)(src_y +8+33*linesize);
  2085. if(!ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  2086. h->left_border[34 ]= h->top_borders[0][s->mb_x][16+7];
  2087. h->left_border[34+ 1]= h->top_borders[1][s->mb_x][16+7];
  2088. h->left_border[34+18 ]= h->top_borders[0][s->mb_x][24+7];
  2089. h->left_border[34+18+1]= h->top_borders[1][s->mb_x][24+7];
  2090. for(i=2; i<18; i++){
  2091. h->left_border[i+34 ]= src_cb[7+i*uvlinesize];
  2092. h->left_border[i+34+18]= src_cr[7+i*uvlinesize];
  2093. }
  2094. *(uint64_t*)(h->top_borders[0][s->mb_x]+16)= *(uint64_t*)(src_cb+16*uvlinesize);
  2095. *(uint64_t*)(h->top_borders[0][s->mb_x]+24)= *(uint64_t*)(src_cr+16*uvlinesize);
  2096. *(uint64_t*)(h->top_borders[1][s->mb_x]+16)= *(uint64_t*)(src_cb+17*uvlinesize);
  2097. *(uint64_t*)(h->top_borders[1][s->mb_x]+24)= *(uint64_t*)(src_cr+17*uvlinesize);
  2098. }
  2099. }
  2100. static inline void xchg_pair_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize, int xchg){
  2101. MpegEncContext * const s = &h->s;
  2102. int temp8, i;
  2103. uint64_t temp64;
  2104. int deblock_left = (s->mb_x > 0);
  2105. int deblock_top = (s->mb_y > 1);
  2106. tprintf(s->avctx, "xchg_pair_border: src_y:%p src_cb:%p src_cr:%p ls:%d uvls:%d\n", src_y, src_cb, src_cr, linesize, uvlinesize);
  2107. src_y -= 2 * linesize + 1;
  2108. src_cb -= 2 * uvlinesize + 1;
  2109. src_cr -= 2 * uvlinesize + 1;
  2110. #define XCHG(a,b,t,xchg)\
  2111. t= a;\
  2112. if(xchg)\
  2113. a= b;\
  2114. b= t;
  2115. if(deblock_left){
  2116. for(i = (!deblock_top)<<1; i<34; i++){
  2117. XCHG(h->left_border[i ], src_y [i* linesize], temp8, xchg);
  2118. }
  2119. }
  2120. if(deblock_top){
  2121. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+0), *(uint64_t*)(src_y +1), temp64, xchg);
  2122. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+8), *(uint64_t*)(src_y +9), temp64, 1);
  2123. XCHG(*(uint64_t*)(h->top_borders[1][s->mb_x]+0), *(uint64_t*)(src_y +1 +linesize), temp64, xchg);
  2124. XCHG(*(uint64_t*)(h->top_borders[1][s->mb_x]+8), *(uint64_t*)(src_y +9 +linesize), temp64, 1);
  2125. if(s->mb_x+1 < s->mb_width){
  2126. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x+1]), *(uint64_t*)(src_y +17), temp64, 1);
  2127. XCHG(*(uint64_t*)(h->top_borders[1][s->mb_x+1]), *(uint64_t*)(src_y +17 +linesize), temp64, 1);
  2128. }
  2129. }
  2130. if(!ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  2131. if(deblock_left){
  2132. for(i = (!deblock_top) << 1; i<18; i++){
  2133. XCHG(h->left_border[i+34 ], src_cb[i*uvlinesize], temp8, xchg);
  2134. XCHG(h->left_border[i+34+18], src_cr[i*uvlinesize], temp8, xchg);
  2135. }
  2136. }
  2137. if(deblock_top){
  2138. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+16), *(uint64_t*)(src_cb+1), temp64, 1);
  2139. XCHG(*(uint64_t*)(h->top_borders[0][s->mb_x]+24), *(uint64_t*)(src_cr+1), temp64, 1);
  2140. XCHG(*(uint64_t*)(h->top_borders[1][s->mb_x]+16), *(uint64_t*)(src_cb+1 +uvlinesize), temp64, 1);
  2141. XCHG(*(uint64_t*)(h->top_borders[1][s->mb_x]+24), *(uint64_t*)(src_cr+1 +uvlinesize), temp64, 1);
  2142. }
  2143. }
  2144. }
  2145. static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
  2146. MpegEncContext * const s = &h->s;
  2147. const int mb_x= s->mb_x;
  2148. const int mb_y= s->mb_y;
  2149. const int mb_xy= h->mb_xy;
  2150. const int mb_type= s->current_picture.mb_type[mb_xy];
  2151. uint8_t *dest_y, *dest_cb, *dest_cr;
  2152. int linesize, uvlinesize /*dct_offset*/;
  2153. int i;
  2154. int *block_offset = &h->block_offset[0];
  2155. const unsigned int bottom = mb_y & 1;
  2156. const int transform_bypass = (s->qscale == 0 && h->sps.transform_bypass), is_h264 = (simple || s->codec_id == CODEC_ID_H264);
  2157. void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
  2158. void (*idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
  2159. dest_y = s->current_picture.data[0] + (mb_y * 16* s->linesize ) + mb_x * 16;
  2160. dest_cb = s->current_picture.data[1] + (mb_y * 8 * s->uvlinesize) + mb_x * 8;
  2161. dest_cr = s->current_picture.data[2] + (mb_y * 8 * s->uvlinesize) + mb_x * 8;
  2162. s->dsp.prefetch(dest_y + (s->mb_x&3)*4*s->linesize + 64, s->linesize, 4);
  2163. s->dsp.prefetch(dest_cb + (s->mb_x&7)*s->uvlinesize + 64, dest_cr - dest_cb, 2);
  2164. if (!simple && MB_FIELD) {
  2165. linesize = h->mb_linesize = s->linesize * 2;
  2166. uvlinesize = h->mb_uvlinesize = s->uvlinesize * 2;
  2167. block_offset = &h->block_offset[24];
  2168. if(mb_y&1){ //FIXME move out of this func?
  2169. dest_y -= s->linesize*15;
  2170. dest_cb-= s->uvlinesize*7;
  2171. dest_cr-= s->uvlinesize*7;
  2172. }
  2173. if(FRAME_MBAFF) {
  2174. int list;
  2175. for(list=0; list<h->list_count; list++){
  2176. if(!USES_LIST(mb_type, list))
  2177. continue;
  2178. if(IS_16X16(mb_type)){
  2179. int8_t *ref = &h->ref_cache[list][scan8[0]];
  2180. fill_rectangle(ref, 4, 4, 8, (16+*ref)^(s->mb_y&1), 1);
  2181. }else{
  2182. for(i=0; i<16; i+=4){
  2183. //FIXME can refs be smaller than 8x8 when !direct_8x8_inference ?
  2184. int ref = h->ref_cache[list][scan8[i]];
  2185. if(ref >= 0)
  2186. fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1);
  2187. }
  2188. }
  2189. }
  2190. }
  2191. } else {
  2192. linesize = h->mb_linesize = s->linesize;
  2193. uvlinesize = h->mb_uvlinesize = s->uvlinesize;
  2194. // dct_offset = s->linesize * 16;
  2195. }
  2196. if(transform_bypass){
  2197. idct_dc_add =
  2198. idct_add = IS_8x8DCT(mb_type) ? s->dsp.add_pixels8 : s->dsp.add_pixels4;
  2199. }else if(IS_8x8DCT(mb_type)){
  2200. idct_dc_add = s->dsp.h264_idct8_dc_add;
  2201. idct_add = s->dsp.h264_idct8_add;
  2202. }else{
  2203. idct_dc_add = s->dsp.h264_idct_dc_add;
  2204. idct_add = s->dsp.h264_idct_add;
  2205. }
  2206. if(!simple && FRAME_MBAFF && h->deblocking_filter && IS_INTRA(mb_type)
  2207. && (!bottom || !IS_INTRA(s->current_picture.mb_type[mb_xy-s->mb_stride]))){
  2208. int mbt_y = mb_y&~1;
  2209. uint8_t *top_y = s->current_picture.data[0] + (mbt_y * 16* s->linesize ) + mb_x * 16;
  2210. uint8_t *top_cb = s->current_picture.data[1] + (mbt_y * 8 * s->uvlinesize) + mb_x * 8;
  2211. uint8_t *top_cr = s->current_picture.data[2] + (mbt_y * 8 * s->uvlinesize) + mb_x * 8;
  2212. xchg_pair_border(h, top_y, top_cb, top_cr, s->linesize, s->uvlinesize, 1);
  2213. }
  2214. if (!simple && IS_INTRA_PCM(mb_type)) {
  2215. unsigned int x, y;
  2216. // The pixels are stored in h->mb array in the same order as levels,
  2217. // copy them in output in the correct order.
  2218. for(i=0; i<16; i++) {
  2219. for (y=0; y<4; y++) {
  2220. for (x=0; x<4; x++) {
  2221. *(dest_y + block_offset[i] + y*linesize + x) = h->mb[i*16+y*4+x];
  2222. }
  2223. }
  2224. }
  2225. for(i=16; i<16+4; i++) {
  2226. for (y=0; y<4; y++) {
  2227. for (x=0; x<4; x++) {
  2228. *(dest_cb + block_offset[i] + y*uvlinesize + x) = h->mb[i*16+y*4+x];
  2229. }
  2230. }
  2231. }
  2232. for(i=20; i<20+4; i++) {
  2233. for (y=0; y<4; y++) {
  2234. for (x=0; x<4; x++) {
  2235. *(dest_cr + block_offset[i] + y*uvlinesize + x) = h->mb[i*16+y*4+x];
  2236. }
  2237. }
  2238. }
  2239. } else {
  2240. if(IS_INTRA(mb_type)){
  2241. if(h->deblocking_filter && (simple || !FRAME_MBAFF))
  2242. xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1, simple);
  2243. if(simple || !ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  2244. h->hpc.pred8x8[ h->chroma_pred_mode ](dest_cb, uvlinesize);
  2245. h->hpc.pred8x8[ h->chroma_pred_mode ](dest_cr, uvlinesize);
  2246. }
  2247. if(IS_INTRA4x4(mb_type)){
  2248. if(simple || !s->encoding){
  2249. if(IS_8x8DCT(mb_type)){
  2250. for(i=0; i<16; i+=4){
  2251. uint8_t * const ptr= dest_y + block_offset[i];
  2252. const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ];
  2253. const int nnz = h->non_zero_count_cache[ scan8[i] ];
  2254. h->hpc.pred8x8l[ dir ](ptr, (h->topleft_samples_available<<i)&0x8000,
  2255. (h->topright_samples_available<<i)&0x4000, linesize);
  2256. if(nnz){
  2257. if(nnz == 1 && h->mb[i*16])
  2258. idct_dc_add(ptr, h->mb + i*16, linesize);
  2259. else
  2260. idct_add(ptr, h->mb + i*16, linesize);
  2261. }
  2262. }
  2263. }else
  2264. for(i=0; i<16; i++){
  2265. uint8_t * const ptr= dest_y + block_offset[i];
  2266. uint8_t *topright;
  2267. const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ];
  2268. int nnz, tr;
  2269. if(dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED){
  2270. const int topright_avail= (h->topright_samples_available<<i)&0x8000;
  2271. assert(mb_y || linesize <= block_offset[i]);
  2272. if(!topright_avail){
  2273. tr= ptr[3 - linesize]*0x01010101;
  2274. topright= (uint8_t*) &tr;
  2275. }else
  2276. topright= ptr + 4 - linesize;
  2277. }else
  2278. topright= NULL;
  2279. h->hpc.pred4x4[ dir ](ptr, topright, linesize);
  2280. nnz = h->non_zero_count_cache[ scan8[i] ];
  2281. if(nnz){
  2282. if(is_h264){
  2283. if(nnz == 1 && h->mb[i*16])
  2284. idct_dc_add(ptr, h->mb + i*16, linesize);
  2285. else
  2286. idct_add(ptr, h->mb + i*16, linesize);
  2287. }else
  2288. svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, 0);
  2289. }
  2290. }
  2291. }
  2292. }else{
  2293. h->hpc.pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize);
  2294. if(is_h264){
  2295. if(!transform_bypass)
  2296. h264_luma_dc_dequant_idct_c(h->mb, s->qscale, h->dequant4_coeff[0][s->qscale][0]);
  2297. }else
  2298. svq3_luma_dc_dequant_idct_c(h->mb, s->qscale);
  2299. }
  2300. if(h->deblocking_filter && (simple || !FRAME_MBAFF))
  2301. xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0, simple);
  2302. }else if(is_h264){
  2303. hl_motion(h, dest_y, dest_cb, dest_cr,
  2304. s->me.qpel_put, s->dsp.put_h264_chroma_pixels_tab,
  2305. s->me.qpel_avg, s->dsp.avg_h264_chroma_pixels_tab,
  2306. s->dsp.weight_h264_pixels_tab, s->dsp.biweight_h264_pixels_tab);
  2307. }
  2308. if(!IS_INTRA4x4(mb_type)){
  2309. if(is_h264){
  2310. if(IS_INTRA16x16(mb_type)){
  2311. for(i=0; i<16; i++){
  2312. if(h->non_zero_count_cache[ scan8[i] ])
  2313. idct_add(dest_y + block_offset[i], h->mb + i*16, linesize);
  2314. else if(h->mb[i*16])
  2315. idct_dc_add(dest_y + block_offset[i], h->mb + i*16, linesize);
  2316. }
  2317. }else{
  2318. const int di = IS_8x8DCT(mb_type) ? 4 : 1;
  2319. for(i=0; i<16; i+=di){
  2320. int nnz = h->non_zero_count_cache[ scan8[i] ];
  2321. if(nnz){
  2322. if(nnz==1 && h->mb[i*16])
  2323. idct_dc_add(dest_y + block_offset[i], h->mb + i*16, linesize);
  2324. else
  2325. idct_add(dest_y + block_offset[i], h->mb + i*16, linesize);
  2326. }
  2327. }
  2328. }
  2329. }else{
  2330. for(i=0; i<16; i++){
  2331. if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ //FIXME benchmark weird rule, & below
  2332. uint8_t * const ptr= dest_y + block_offset[i];
  2333. svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, IS_INTRA(mb_type) ? 1 : 0);
  2334. }
  2335. }
  2336. }
  2337. }
  2338. if(simple || !ENABLE_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
  2339. uint8_t *dest[2] = {dest_cb, dest_cr};
  2340. if(transform_bypass){
  2341. idct_add = idct_dc_add = s->dsp.add_pixels4;
  2342. }else{
  2343. idct_add = s->dsp.h264_idct_add;
  2344. idct_dc_add = s->dsp.h264_idct_dc_add;
  2345. chroma_dc_dequant_idct_c(h->mb + 16*16, h->chroma_qp[0], h->dequant4_coeff[IS_INTRA(mb_type) ? 1:4][h->chroma_qp[0]][0]);
  2346. chroma_dc_dequant_idct_c(h->mb + 16*16+4*16, h->chroma_qp[1], h->dequant4_coeff[IS_INTRA(mb_type) ? 2:5][h->chroma_qp[1]][0]);
  2347. }
  2348. if(is_h264){
  2349. for(i=16; i<16+8; i++){
  2350. if(h->non_zero_count_cache[ scan8[i] ])
  2351. idct_add(dest[(i&4)>>2] + block_offset[i], h->mb + i*16, uvlinesize);
  2352. else if(h->mb[i*16])
  2353. idct_dc_add(dest[(i&4)>>2] + block_offset[i], h->mb + i*16, uvlinesize);
  2354. }
  2355. }else{
  2356. for(i=16; i<16+8; i++){
  2357. if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){
  2358. uint8_t * const ptr= dest[(i&4)>>2] + block_offset[i];
  2359. svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, chroma_qp[s->qscale + 12] - 12, 2);
  2360. }
  2361. }
  2362. }
  2363. }
  2364. }
  2365. if(h->deblocking_filter) {
  2366. if (!simple && FRAME_MBAFF) {
  2367. //FIXME try deblocking one mb at a time?
  2368. // the reduction in load/storing mvs and such might outweigh the extra backup/xchg_border
  2369. const int mb_y = s->mb_y - 1;
  2370. uint8_t *pair_dest_y, *pair_dest_cb, *pair_dest_cr;
  2371. const int mb_xy= mb_x + mb_y*s->mb_stride;
  2372. const int mb_type_top = s->current_picture.mb_type[mb_xy];
  2373. const int mb_type_bottom= s->current_picture.mb_type[mb_xy+s->mb_stride];
  2374. if (!bottom) return;
  2375. pair_dest_y = s->current_picture.data[0] + (mb_y * 16* s->linesize ) + mb_x * 16;
  2376. pair_dest_cb = s->current_picture.data[1] + (mb_y * 8 * s->uvlinesize) + mb_x * 8;
  2377. pair_dest_cr = s->current_picture.data[2] + (mb_y * 8 * s->uvlinesize) + mb_x * 8;
  2378. if(IS_INTRA(mb_type_top | mb_type_bottom))
  2379. xchg_pair_border(h, pair_dest_y, pair_dest_cb, pair_dest_cr, s->linesize, s->uvlinesize, 0);
  2380. backup_pair_border(h, pair_dest_y, pair_dest_cb, pair_dest_cr, s->linesize, s->uvlinesize);
  2381. // deblock a pair
  2382. // top
  2383. s->mb_y--; h->mb_xy -= s->mb_stride;
  2384. tprintf(h->s.avctx, "call mbaff filter_mb mb_x:%d mb_y:%d pair_dest_y = %p, dest_y = %p\n", mb_x, mb_y, pair_dest_y, dest_y);
  2385. fill_caches(h, mb_type_top, 1); //FIXME don't fill stuff which isn't used by filter_mb
  2386. h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]);
  2387. h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]);
  2388. filter_mb(h, mb_x, mb_y, pair_dest_y, pair_dest_cb, pair_dest_cr, linesize, uvlinesize);
  2389. // bottom
  2390. s->mb_y++; h->mb_xy += s->mb_stride;
  2391. tprintf(h->s.avctx, "call mbaff filter_mb\n");
  2392. fill_caches(h, mb_type_bottom, 1); //FIXME don't fill stuff which isn't used by filter_mb
  2393. h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy+s->mb_stride]);
  2394. h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy+s->mb_stride]);
  2395. filter_mb(h, mb_x, mb_y+1, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
  2396. } else {
  2397. tprintf(h->s.avctx, "call filter_mb\n");
  2398. backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, simple);
  2399. fill_caches(h, mb_type, 1); //FIXME don't fill stuff which isn't used by filter_mb
  2400. filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
  2401. }
  2402. }
  2403. }
  2404. /**
  2405. * Process a macroblock; this case avoids checks for expensive uncommon cases.
  2406. */
  2407. static void hl_decode_mb_simple(H264Context *h){
  2408. hl_decode_mb_internal(h, 1);
  2409. }
  2410. /**
  2411. * Process a macroblock; this handles edge cases, such as interlacing.
  2412. */
  2413. static void av_noinline hl_decode_mb_complex(H264Context *h){
  2414. hl_decode_mb_internal(h, 0);
  2415. }
  2416. static void hl_decode_mb(H264Context *h){
  2417. MpegEncContext * const s = &h->s;
  2418. const int mb_xy= h->mb_xy;
  2419. const int mb_type= s->current_picture.mb_type[mb_xy];
  2420. int is_complex = FRAME_MBAFF || MB_FIELD || IS_INTRA_PCM(mb_type) || s->codec_id != CODEC_ID_H264 ||
  2421. (ENABLE_GRAY && (s->flags&CODEC_FLAG_GRAY)) || (ENABLE_H264_ENCODER && s->encoding) || ENABLE_SMALL;
  2422. if(ENABLE_H264_ENCODER && !s->decode)
  2423. return;
  2424. if (is_complex)
  2425. hl_decode_mb_complex(h);
  2426. else hl_decode_mb_simple(h);
  2427. }
  2428. static void pic_as_field(Picture *pic, const int parity){
  2429. int i;
  2430. for (i = 0; i < 4; ++i) {
  2431. if (parity == PICT_BOTTOM_FIELD)
  2432. pic->data[i] += pic->linesize[i];
  2433. pic->reference = parity;
  2434. pic->linesize[i] *= 2;
  2435. }
  2436. }
  2437. static int split_field_copy(Picture *dest, Picture *src,
  2438. int parity, int id_add){
  2439. int match = !!(src->reference & parity);
  2440. if (match) {
  2441. *dest = *src;
  2442. pic_as_field(dest, parity);
  2443. dest->pic_id *= 2;
  2444. dest->pic_id += id_add;
  2445. }
  2446. return match;
  2447. }
  2448. /**
  2449. * Split one reference list into field parts, interleaving by parity
  2450. * as per H.264 spec section 8.2.4.2.5. Output fields have their data pointers
  2451. * set to look at the actual start of data for that field.
  2452. *
  2453. * @param dest output list
  2454. * @param dest_len maximum number of fields to put in dest
  2455. * @param src the source reference list containing fields and/or field pairs
  2456. * (aka short_ref/long_ref, or
  2457. * refFrameListXShortTerm/refFrameListLongTerm in spec-speak)
  2458. * @param src_len number of Picture's in source (pairs and unmatched fields)
  2459. * @param parity the parity of the picture being decoded/needing
  2460. * these ref pics (PICT_{TOP,BOTTOM}_FIELD)
  2461. * @return number of fields placed in dest
  2462. */
  2463. static int split_field_half_ref_list(Picture *dest, int dest_len,
  2464. Picture *src, int src_len, int parity){
  2465. int same_parity = 1;
  2466. int same_i = 0;
  2467. int opp_i = 0;
  2468. int out_i;
  2469. int field_output;
  2470. for (out_i = 0; out_i < dest_len; out_i += field_output) {
  2471. if (same_parity && same_i < src_len) {
  2472. field_output = split_field_copy(dest + out_i, src + same_i,
  2473. parity, 1);
  2474. same_parity = !field_output;
  2475. same_i++;
  2476. } else if (opp_i < src_len) {
  2477. field_output = split_field_copy(dest + out_i, src + opp_i,
  2478. PICT_FRAME - parity, 0);
  2479. same_parity = field_output;
  2480. opp_i++;
  2481. } else {
  2482. break;
  2483. }
  2484. }
  2485. return out_i;
  2486. }
  2487. /**
  2488. * Split the reference frame list into a reference field list.
  2489. * This implements H.264 spec 8.2.4.2.5 for a combined input list.
  2490. * The input list contains both reference field pairs and
  2491. * unmatched reference fields; it is ordered as spec describes
  2492. * RefPicListX for frames in 8.2.4.2.1 and 8.2.4.2.3, except that
  2493. * unmatched field pairs are also present. Conceptually this is equivalent
  2494. * to concatenation of refFrameListXShortTerm with refFrameListLongTerm.
  2495. *
  2496. * @param dest output reference list where ordered fields are to be placed
  2497. * @param dest_len max number of fields to place at dest
  2498. * @param src source reference list, as described above
  2499. * @param src_len number of pictures (pairs and unmatched fields) in src
  2500. * @param parity parity of field being currently decoded
  2501. * (one of PICT_{TOP,BOTTOM}_FIELD)
  2502. * @param long_i index into src array that holds first long reference picture,
  2503. * or src_len if no long refs present.
  2504. */
  2505. static int split_field_ref_list(Picture *dest, int dest_len,
  2506. Picture *src, int src_len,
  2507. int parity, int long_i){
  2508. int i = split_field_half_ref_list(dest, dest_len, src, long_i, parity);
  2509. dest += i;
  2510. dest_len -= i;
  2511. i += split_field_half_ref_list(dest, dest_len, src + long_i,
  2512. src_len - long_i, parity);
  2513. return i;
  2514. }
  2515. /**
  2516. * fills the default_ref_list.
  2517. */
  2518. static int fill_default_ref_list(H264Context *h){
  2519. MpegEncContext * const s = &h->s;
  2520. int i;
  2521. int smallest_poc_greater_than_current = -1;
  2522. int structure_sel;
  2523. Picture sorted_short_ref[32];
  2524. Picture field_entry_list[2][32];
  2525. Picture *frame_list[2];
  2526. if (FIELD_PICTURE) {
  2527. structure_sel = PICT_FRAME;
  2528. frame_list[0] = field_entry_list[0];
  2529. frame_list[1] = field_entry_list[1];
  2530. } else {
  2531. structure_sel = 0;
  2532. frame_list[0] = h->default_ref_list[0];
  2533. frame_list[1] = h->default_ref_list[1];
  2534. }
  2535. if(h->slice_type==FF_B_TYPE){
  2536. int list;
  2537. int len[2];
  2538. int short_len[2];
  2539. int out_i;
  2540. int limit= INT_MIN;
  2541. /* sort frame according to poc in B slice */
  2542. for(out_i=0; out_i<h->short_ref_count; out_i++){
  2543. int best_i=INT_MIN;
  2544. int best_poc=INT_MAX;
  2545. for(i=0; i<h->short_ref_count; i++){
  2546. const int poc= h->short_ref[i]->poc;
  2547. if(poc > limit && poc < best_poc){
  2548. best_poc= poc;
  2549. best_i= i;
  2550. }
  2551. }
  2552. assert(best_i != INT_MIN);
  2553. limit= best_poc;
  2554. sorted_short_ref[out_i]= *h->short_ref[best_i];
  2555. tprintf(h->s.avctx, "sorted poc: %d->%d poc:%d fn:%d\n", best_i, out_i, sorted_short_ref[out_i].poc, sorted_short_ref[out_i].frame_num);
  2556. if (-1 == smallest_poc_greater_than_current) {
  2557. if (h->short_ref[best_i]->poc >= s->current_picture_ptr->poc) {
  2558. smallest_poc_greater_than_current = out_i;
  2559. }
  2560. }
  2561. }
  2562. tprintf(h->s.avctx, "current poc: %d, smallest_poc_greater_than_current: %d\n", s->current_picture_ptr->poc, smallest_poc_greater_than_current);
  2563. // find the largest poc
  2564. for(list=0; list<2; list++){
  2565. int index = 0;
  2566. int j= -99;
  2567. int step= list ? -1 : 1;
  2568. for(i=0; i<h->short_ref_count && index < h->ref_count[list]; i++, j+=step) {
  2569. int sel;
  2570. while(j<0 || j>= h->short_ref_count){
  2571. if(j != -99 && step == (list ? -1 : 1))
  2572. return -1;
  2573. step = -step;
  2574. j= smallest_poc_greater_than_current + (step>>1);
  2575. }
  2576. sel = sorted_short_ref[j].reference | structure_sel;
  2577. if(sel != PICT_FRAME) continue;
  2578. frame_list[list][index ]= sorted_short_ref[j];
  2579. frame_list[list][index++].pic_id= sorted_short_ref[j].frame_num;
  2580. }
  2581. short_len[list] = index;
  2582. for(i = 0; i < 16 && index < h->ref_count[ list ]; i++){
  2583. int sel;
  2584. if(h->long_ref[i] == NULL) continue;
  2585. sel = h->long_ref[i]->reference | structure_sel;
  2586. if(sel != PICT_FRAME) continue;
  2587. frame_list[ list ][index ]= *h->long_ref[i];
  2588. frame_list[ list ][index++].pic_id= i;
  2589. }
  2590. len[list] = index;
  2591. }
  2592. for(list=0; list<2; list++){
  2593. if (FIELD_PICTURE)
  2594. len[list] = split_field_ref_list(h->default_ref_list[list],
  2595. h->ref_count[list],
  2596. frame_list[list],
  2597. len[list],
  2598. s->picture_structure,
  2599. short_len[list]);
  2600. // swap the two first elements of L1 when L0 and L1 are identical
  2601. if(list && len[0] > 1 && len[0] == len[1])
  2602. for(i=0; h->default_ref_list[0][i].data[0] == h->default_ref_list[1][i].data[0]; i++)
  2603. if(i == len[0]){
  2604. FFSWAP(Picture, h->default_ref_list[1][0], h->default_ref_list[1][1]);
  2605. break;
  2606. }
  2607. if(len[list] < h->ref_count[ list ])
  2608. memset(&h->default_ref_list[list][len[list]], 0, sizeof(Picture)*(h->ref_count[ list ] - len[list]));
  2609. }
  2610. }else{
  2611. int index=0;
  2612. int short_len;
  2613. for(i=0; i<h->short_ref_count; i++){
  2614. int sel;
  2615. sel = h->short_ref[i]->reference | structure_sel;
  2616. if(sel != PICT_FRAME) continue;
  2617. frame_list[0][index ]= *h->short_ref[i];
  2618. frame_list[0][index++].pic_id= h->short_ref[i]->frame_num;
  2619. }
  2620. short_len = index;
  2621. for(i = 0; i < 16; i++){
  2622. int sel;
  2623. if(h->long_ref[i] == NULL) continue;
  2624. sel = h->long_ref[i]->reference | structure_sel;
  2625. if(sel != PICT_FRAME) continue;
  2626. frame_list[0][index ]= *h->long_ref[i];
  2627. frame_list[0][index++].pic_id= i;
  2628. }
  2629. if (FIELD_PICTURE)
  2630. index = split_field_ref_list(h->default_ref_list[0],
  2631. h->ref_count[0], frame_list[0],
  2632. index, s->picture_structure,
  2633. short_len);
  2634. if(index < h->ref_count[0])
  2635. memset(&h->default_ref_list[0][index], 0, sizeof(Picture)*(h->ref_count[0] - index));
  2636. }
  2637. #ifdef TRACE
  2638. for (i=0; i<h->ref_count[0]; i++) {
  2639. tprintf(h->s.avctx, "List0: %s fn:%d 0x%p\n", (h->default_ref_list[0][i].long_ref ? "LT" : "ST"), h->default_ref_list[0][i].pic_id, h->default_ref_list[0][i].data[0]);
  2640. }
  2641. if(h->slice_type==FF_B_TYPE){
  2642. for (i=0; i<h->ref_count[1]; i++) {
  2643. tprintf(h->s.avctx, "List1: %s fn:%d 0x%p\n", (h->default_ref_list[1][i].long_ref ? "LT" : "ST"), h->default_ref_list[1][i].pic_id, h->default_ref_list[1][i].data[0]);
  2644. }
  2645. }
  2646. #endif
  2647. return 0;
  2648. }
  2649. static void print_short_term(H264Context *h);
  2650. static void print_long_term(H264Context *h);
  2651. /**
  2652. * Extract structure information about the picture described by pic_num in
  2653. * the current decoding context (frame or field). Note that pic_num is
  2654. * picture number without wrapping (so, 0<=pic_num<max_pic_num).
  2655. * @param pic_num picture number for which to extract structure information
  2656. * @param structure one of PICT_XXX describing structure of picture
  2657. * with pic_num
  2658. * @return frame number (short term) or long term index of picture
  2659. * described by pic_num
  2660. */
  2661. static int pic_num_extract(H264Context *h, int pic_num, int *structure){
  2662. MpegEncContext * const s = &h->s;
  2663. *structure = s->picture_structure;
  2664. if(FIELD_PICTURE){
  2665. if (!(pic_num & 1))
  2666. /* opposite field */
  2667. *structure ^= PICT_FRAME;
  2668. pic_num >>= 1;
  2669. }
  2670. return pic_num;
  2671. }
  2672. static int decode_ref_pic_list_reordering(H264Context *h){
  2673. MpegEncContext * const s = &h->s;
  2674. int list, index, pic_structure;
  2675. print_short_term(h);
  2676. print_long_term(h);
  2677. if(h->slice_type==FF_I_TYPE || h->slice_type==FF_SI_TYPE) return 0; //FIXME move before func
  2678. for(list=0; list<h->list_count; list++){
  2679. memcpy(h->ref_list[list], h->default_ref_list[list], sizeof(Picture)*h->ref_count[list]);
  2680. if(get_bits1(&s->gb)){
  2681. int pred= h->curr_pic_num;
  2682. for(index=0; ; index++){
  2683. unsigned int reordering_of_pic_nums_idc= get_ue_golomb(&s->gb);
  2684. unsigned int pic_id;
  2685. int i;
  2686. Picture *ref = NULL;
  2687. if(reordering_of_pic_nums_idc==3)
  2688. break;
  2689. if(index >= h->ref_count[list]){
  2690. av_log(h->s.avctx, AV_LOG_ERROR, "reference count overflow\n");
  2691. return -1;
  2692. }
  2693. if(reordering_of_pic_nums_idc<3){
  2694. if(reordering_of_pic_nums_idc<2){
  2695. const unsigned int abs_diff_pic_num= get_ue_golomb(&s->gb) + 1;
  2696. int frame_num;
  2697. if(abs_diff_pic_num > h->max_pic_num){
  2698. av_log(h->s.avctx, AV_LOG_ERROR, "abs_diff_pic_num overflow\n");
  2699. return -1;
  2700. }
  2701. if(reordering_of_pic_nums_idc == 0) pred-= abs_diff_pic_num;
  2702. else pred+= abs_diff_pic_num;
  2703. pred &= h->max_pic_num - 1;
  2704. frame_num = pic_num_extract(h, pred, &pic_structure);
  2705. for(i= h->short_ref_count-1; i>=0; i--){
  2706. ref = h->short_ref[i];
  2707. assert(ref->reference);
  2708. assert(!ref->long_ref);
  2709. if(ref->data[0] != NULL &&
  2710. ref->frame_num == frame_num &&
  2711. (ref->reference & pic_structure) &&
  2712. ref->long_ref == 0) // ignore non existing pictures by testing data[0] pointer
  2713. break;
  2714. }
  2715. if(i>=0)
  2716. ref->pic_id= pred;
  2717. }else{
  2718. int long_idx;
  2719. pic_id= get_ue_golomb(&s->gb); //long_term_pic_idx
  2720. long_idx= pic_num_extract(h, pic_id, &pic_structure);
  2721. if(long_idx>31){
  2722. av_log(h->s.avctx, AV_LOG_ERROR, "long_term_pic_idx overflow\n");
  2723. return -1;
  2724. }
  2725. ref = h->long_ref[long_idx];
  2726. assert(!(ref && !ref->reference));
  2727. if(ref && (ref->reference & pic_structure)){
  2728. ref->pic_id= pic_id;
  2729. assert(ref->long_ref);
  2730. i=0;
  2731. }else{
  2732. i=-1;
  2733. }
  2734. }
  2735. if (i < 0) {
  2736. av_log(h->s.avctx, AV_LOG_ERROR, "reference picture missing during reorder\n");
  2737. memset(&h->ref_list[list][index], 0, sizeof(Picture)); //FIXME
  2738. } else {
  2739. for(i=index; i+1<h->ref_count[list]; i++){
  2740. if(ref->long_ref == h->ref_list[list][i].long_ref && ref->pic_id == h->ref_list[list][i].pic_id)
  2741. break;
  2742. }
  2743. for(; i > index; i--){
  2744. h->ref_list[list][i]= h->ref_list[list][i-1];
  2745. }
  2746. h->ref_list[list][index]= *ref;
  2747. if (FIELD_PICTURE){
  2748. pic_as_field(&h->ref_list[list][index], pic_structure);
  2749. }
  2750. }
  2751. }else{
  2752. av_log(h->s.avctx, AV_LOG_ERROR, "illegal reordering_of_pic_nums_idc\n");
  2753. return -1;
  2754. }
  2755. }
  2756. }
  2757. }
  2758. for(list=0; list<h->list_count; list++){
  2759. for(index= 0; index < h->ref_count[list]; index++){
  2760. if(!h->ref_list[list][index].data[0])
  2761. h->ref_list[list][index]= s->current_picture;
  2762. }
  2763. }
  2764. if(h->slice_type==FF_B_TYPE && !h->direct_spatial_mv_pred)
  2765. direct_dist_scale_factor(h);
  2766. direct_ref_list_init(h);
  2767. return 0;
  2768. }
  2769. static void fill_mbaff_ref_list(H264Context *h){
  2770. int list, i, j;
  2771. for(list=0; list<2; list++){ //FIXME try list_count
  2772. for(i=0; i<h->ref_count[list]; i++){
  2773. Picture *frame = &h->ref_list[list][i];
  2774. Picture *field = &h->ref_list[list][16+2*i];
  2775. field[0] = *frame;
  2776. for(j=0; j<3; j++)
  2777. field[0].linesize[j] <<= 1;
  2778. field[0].reference = PICT_TOP_FIELD;
  2779. field[1] = field[0];
  2780. for(j=0; j<3; j++)
  2781. field[1].data[j] += frame->linesize[j];
  2782. field[1].reference = PICT_BOTTOM_FIELD;
  2783. h->luma_weight[list][16+2*i] = h->luma_weight[list][16+2*i+1] = h->luma_weight[list][i];
  2784. h->luma_offset[list][16+2*i] = h->luma_offset[list][16+2*i+1] = h->luma_offset[list][i];
  2785. for(j=0; j<2; j++){
  2786. h->chroma_weight[list][16+2*i][j] = h->chroma_weight[list][16+2*i+1][j] = h->chroma_weight[list][i][j];
  2787. h->chroma_offset[list][16+2*i][j] = h->chroma_offset[list][16+2*i+1][j] = h->chroma_offset[list][i][j];
  2788. }
  2789. }
  2790. }
  2791. for(j=0; j<h->ref_count[1]; j++){
  2792. for(i=0; i<h->ref_count[0]; i++)
  2793. h->implicit_weight[j][16+2*i] = h->implicit_weight[j][16+2*i+1] = h->implicit_weight[j][i];
  2794. memcpy(h->implicit_weight[16+2*j], h->implicit_weight[j], sizeof(*h->implicit_weight));
  2795. memcpy(h->implicit_weight[16+2*j+1], h->implicit_weight[j], sizeof(*h->implicit_weight));
  2796. }
  2797. }
  2798. static int pred_weight_table(H264Context *h){
  2799. MpegEncContext * const s = &h->s;
  2800. int list, i;
  2801. int luma_def, chroma_def;
  2802. h->use_weight= 0;
  2803. h->use_weight_chroma= 0;
  2804. h->luma_log2_weight_denom= get_ue_golomb(&s->gb);
  2805. h->chroma_log2_weight_denom= get_ue_golomb(&s->gb);
  2806. luma_def = 1<<h->luma_log2_weight_denom;
  2807. chroma_def = 1<<h->chroma_log2_weight_denom;
  2808. for(list=0; list<2; list++){
  2809. for(i=0; i<h->ref_count[list]; i++){
  2810. int luma_weight_flag, chroma_weight_flag;
  2811. luma_weight_flag= get_bits1(&s->gb);
  2812. if(luma_weight_flag){
  2813. h->luma_weight[list][i]= get_se_golomb(&s->gb);
  2814. h->luma_offset[list][i]= get_se_golomb(&s->gb);
  2815. if( h->luma_weight[list][i] != luma_def
  2816. || h->luma_offset[list][i] != 0)
  2817. h->use_weight= 1;
  2818. }else{
  2819. h->luma_weight[list][i]= luma_def;
  2820. h->luma_offset[list][i]= 0;
  2821. }
  2822. chroma_weight_flag= get_bits1(&s->gb);
  2823. if(chroma_weight_flag){
  2824. int j;
  2825. for(j=0; j<2; j++){
  2826. h->chroma_weight[list][i][j]= get_se_golomb(&s->gb);
  2827. h->chroma_offset[list][i][j]= get_se_golomb(&s->gb);
  2828. if( h->chroma_weight[list][i][j] != chroma_def
  2829. || h->chroma_offset[list][i][j] != 0)
  2830. h->use_weight_chroma= 1;
  2831. }
  2832. }else{
  2833. int j;
  2834. for(j=0; j<2; j++){
  2835. h->chroma_weight[list][i][j]= chroma_def;
  2836. h->chroma_offset[list][i][j]= 0;
  2837. }
  2838. }
  2839. }
  2840. if(h->slice_type != FF_B_TYPE) break;
  2841. }
  2842. h->use_weight= h->use_weight || h->use_weight_chroma;
  2843. return 0;
  2844. }
  2845. static void implicit_weight_table(H264Context *h){
  2846. MpegEncContext * const s = &h->s;
  2847. int ref0, ref1;
  2848. int cur_poc = s->current_picture_ptr->poc;
  2849. if( h->ref_count[0] == 1 && h->ref_count[1] == 1
  2850. && h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2*cur_poc){
  2851. h->use_weight= 0;
  2852. h->use_weight_chroma= 0;
  2853. return;
  2854. }
  2855. h->use_weight= 2;
  2856. h->use_weight_chroma= 2;
  2857. h->luma_log2_weight_denom= 5;
  2858. h->chroma_log2_weight_denom= 5;
  2859. for(ref0=0; ref0 < h->ref_count[0]; ref0++){
  2860. int poc0 = h->ref_list[0][ref0].poc;
  2861. for(ref1=0; ref1 < h->ref_count[1]; ref1++){
  2862. int poc1 = h->ref_list[1][ref1].poc;
  2863. int td = av_clip(poc1 - poc0, -128, 127);
  2864. if(td){
  2865. int tb = av_clip(cur_poc - poc0, -128, 127);
  2866. int tx = (16384 + (FFABS(td) >> 1)) / td;
  2867. int dist_scale_factor = av_clip((tb*tx + 32) >> 6, -1024, 1023) >> 2;
  2868. if(dist_scale_factor < -64 || dist_scale_factor > 128)
  2869. h->implicit_weight[ref0][ref1] = 32;
  2870. else
  2871. h->implicit_weight[ref0][ref1] = 64 - dist_scale_factor;
  2872. }else
  2873. h->implicit_weight[ref0][ref1] = 32;
  2874. }
  2875. }
  2876. }
  2877. /**
  2878. * Mark a picture as no longer needed for reference. The refmask
  2879. * argument allows unreferencing of individual fields or the whole frame.
  2880. * If the picture becomes entirely unreferenced, but is being held for
  2881. * display purposes, it is marked as such.
  2882. * @param refmask mask of fields to unreference; the mask is bitwise
  2883. * anded with the reference marking of pic
  2884. * @return non-zero if pic becomes entirely unreferenced (except possibly
  2885. * for display purposes) zero if one of the fields remains in
  2886. * reference
  2887. */
  2888. static inline int unreference_pic(H264Context *h, Picture *pic, int refmask){
  2889. int i;
  2890. if (pic->reference &= refmask) {
  2891. return 0;
  2892. } else {
  2893. if(pic == h->delayed_output_pic)
  2894. pic->reference=DELAYED_PIC_REF;
  2895. else{
  2896. for(i = 0; h->delayed_pic[i]; i++)
  2897. if(pic == h->delayed_pic[i]){
  2898. pic->reference=DELAYED_PIC_REF;
  2899. break;
  2900. }
  2901. }
  2902. return 1;
  2903. }
  2904. }
  2905. /**
  2906. * instantaneous decoder refresh.
  2907. */
  2908. static void idr(H264Context *h){
  2909. int i;
  2910. for(i=0; i<16; i++){
  2911. if (h->long_ref[i] != NULL) {
  2912. unreference_pic(h, h->long_ref[i], 0);
  2913. h->long_ref[i]= NULL;
  2914. }
  2915. }
  2916. h->long_ref_count=0;
  2917. for(i=0; i<h->short_ref_count; i++){
  2918. unreference_pic(h, h->short_ref[i], 0);
  2919. h->short_ref[i]= NULL;
  2920. }
  2921. h->short_ref_count=0;
  2922. }
  2923. /* forget old pics after a seek */
  2924. static void flush_dpb(AVCodecContext *avctx){
  2925. H264Context *h= avctx->priv_data;
  2926. int i;
  2927. for(i=0; i<16; i++) {
  2928. if(h->delayed_pic[i])
  2929. h->delayed_pic[i]->reference= 0;
  2930. h->delayed_pic[i]= NULL;
  2931. }
  2932. if(h->delayed_output_pic)
  2933. h->delayed_output_pic->reference= 0;
  2934. h->delayed_output_pic= NULL;
  2935. idr(h);
  2936. if(h->s.current_picture_ptr)
  2937. h->s.current_picture_ptr->reference= 0;
  2938. h->s.first_field= 0;
  2939. ff_mpeg_flush(avctx);
  2940. }
  2941. /**
  2942. * Find a Picture in the short term reference list by frame number.
  2943. * @param frame_num frame number to search for
  2944. * @param idx the index into h->short_ref where returned picture is found
  2945. * undefined if no picture found.
  2946. * @return pointer to the found picture, or NULL if no pic with the provided
  2947. * frame number is found
  2948. */
  2949. static Picture * find_short(H264Context *h, int frame_num, int *idx){
  2950. MpegEncContext * const s = &h->s;
  2951. int i;
  2952. for(i=0; i<h->short_ref_count; i++){
  2953. Picture *pic= h->short_ref[i];
  2954. if(s->avctx->debug&FF_DEBUG_MMCO)
  2955. av_log(h->s.avctx, AV_LOG_DEBUG, "%d %d %p\n", i, pic->frame_num, pic);
  2956. if(pic->frame_num == frame_num) {
  2957. *idx = i;
  2958. return pic;
  2959. }
  2960. }
  2961. return NULL;
  2962. }
  2963. /**
  2964. * Remove a picture from the short term reference list by its index in
  2965. * that list. This does no checking on the provided index; it is assumed
  2966. * to be valid. Other list entries are shifted down.
  2967. * @param i index into h->short_ref of picture to remove.
  2968. */
  2969. static void remove_short_at_index(H264Context *h, int i){
  2970. assert(i > 0 && i < h->short_ref_count);
  2971. h->short_ref[i]= NULL;
  2972. if (--h->short_ref_count)
  2973. memmove(&h->short_ref[i], &h->short_ref[i+1], (h->short_ref_count - i)*sizeof(Picture*));
  2974. }
  2975. /**
  2976. *
  2977. * @return the removed picture or NULL if an error occurs
  2978. */
  2979. static Picture * remove_short(H264Context *h, int frame_num){
  2980. MpegEncContext * const s = &h->s;
  2981. Picture *pic;
  2982. int i;
  2983. if(s->avctx->debug&FF_DEBUG_MMCO)
  2984. av_log(h->s.avctx, AV_LOG_DEBUG, "remove short %d count %d\n", frame_num, h->short_ref_count);
  2985. pic = find_short(h, frame_num, &i);
  2986. if (pic)
  2987. remove_short_at_index(h, i);
  2988. return pic;
  2989. }
  2990. /**
  2991. * Remove a picture from the long term reference list by its index in
  2992. * that list. This does no checking on the provided index; it is assumed
  2993. * to be valid. The removed entry is set to NULL. Other entries are unaffected.
  2994. * @param i index into h->long_ref of picture to remove.
  2995. */
  2996. static void remove_long_at_index(H264Context *h, int i){
  2997. h->long_ref[i]= NULL;
  2998. h->long_ref_count--;
  2999. }
  3000. /**
  3001. *
  3002. * @return the removed picture or NULL if an error occurs
  3003. */
  3004. static Picture * remove_long(H264Context *h, int i){
  3005. Picture *pic;
  3006. pic= h->long_ref[i];
  3007. if (pic)
  3008. remove_long_at_index(h, i);
  3009. return pic;
  3010. }
  3011. /**
  3012. * print short term list
  3013. */
  3014. static void print_short_term(H264Context *h) {
  3015. uint32_t i;
  3016. if(h->s.avctx->debug&FF_DEBUG_MMCO) {
  3017. av_log(h->s.avctx, AV_LOG_DEBUG, "short term list:\n");
  3018. for(i=0; i<h->short_ref_count; i++){
  3019. Picture *pic= h->short_ref[i];
  3020. av_log(h->s.avctx, AV_LOG_DEBUG, "%d fn:%d poc:%d %p\n", i, pic->frame_num, pic->poc, pic->data[0]);
  3021. }
  3022. }
  3023. }
  3024. /**
  3025. * print long term list
  3026. */
  3027. static void print_long_term(H264Context *h) {
  3028. uint32_t i;
  3029. if(h->s.avctx->debug&FF_DEBUG_MMCO) {
  3030. av_log(h->s.avctx, AV_LOG_DEBUG, "long term list:\n");
  3031. for(i = 0; i < 16; i++){
  3032. Picture *pic= h->long_ref[i];
  3033. if (pic) {
  3034. av_log(h->s.avctx, AV_LOG_DEBUG, "%d fn:%d poc:%d %p\n", i, pic->frame_num, pic->poc, pic->data[0]);
  3035. }
  3036. }
  3037. }
  3038. }
  3039. /**
  3040. * Executes the reference picture marking (memory management control operations).
  3041. */
  3042. static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
  3043. MpegEncContext * const s = &h->s;
  3044. int i, j;
  3045. int current_ref_assigned=0;
  3046. Picture *pic;
  3047. if((s->avctx->debug&FF_DEBUG_MMCO) && mmco_count==0)
  3048. av_log(h->s.avctx, AV_LOG_DEBUG, "no mmco here\n");
  3049. for(i=0; i<mmco_count; i++){
  3050. int structure, frame_num, unref_pic;
  3051. if(s->avctx->debug&FF_DEBUG_MMCO)
  3052. av_log(h->s.avctx, AV_LOG_DEBUG, "mmco:%d %d %d\n", h->mmco[i].opcode, h->mmco[i].short_pic_num, h->mmco[i].long_arg);
  3053. switch(mmco[i].opcode){
  3054. case MMCO_SHORT2UNUSED:
  3055. if(s->avctx->debug&FF_DEBUG_MMCO)
  3056. av_log(h->s.avctx, AV_LOG_DEBUG, "mmco: unref short %d count %d\n", h->mmco[i].short_pic_num, h->short_ref_count);
  3057. frame_num = pic_num_extract(h, mmco[i].short_pic_num, &structure);
  3058. pic = find_short(h, frame_num, &j);
  3059. if (pic) {
  3060. if (unreference_pic(h, pic, structure ^ PICT_FRAME))
  3061. remove_short_at_index(h, j);
  3062. } else if(s->avctx->debug&FF_DEBUG_MMCO)
  3063. av_log(h->s.avctx, AV_LOG_DEBUG, "mmco: unref short failure\n");
  3064. break;
  3065. case MMCO_SHORT2LONG:
  3066. if (FIELD_PICTURE && mmco[i].long_arg < h->long_ref_count &&
  3067. h->long_ref[mmco[i].long_arg]->frame_num ==
  3068. mmco[i].short_pic_num / 2) {
  3069. /* do nothing, we've already moved this field pair. */
  3070. } else {
  3071. int frame_num = mmco[i].short_pic_num >> FIELD_PICTURE;
  3072. pic= remove_long(h, mmco[i].long_arg);
  3073. if(pic) unreference_pic(h, pic, 0);
  3074. h->long_ref[ mmco[i].long_arg ]= remove_short(h, frame_num);
  3075. if (h->long_ref[ mmco[i].long_arg ]){
  3076. h->long_ref[ mmco[i].long_arg ]->long_ref=1;
  3077. h->long_ref_count++;
  3078. }
  3079. }
  3080. break;
  3081. case MMCO_LONG2UNUSED:
  3082. j = pic_num_extract(h, mmco[i].long_arg, &structure);
  3083. pic = h->long_ref[j];
  3084. if (pic) {
  3085. if (unreference_pic(h, pic, structure ^ PICT_FRAME))
  3086. remove_long_at_index(h, j);
  3087. } else if(s->avctx->debug&FF_DEBUG_MMCO)
  3088. av_log(h->s.avctx, AV_LOG_DEBUG, "mmco: unref long failure\n");
  3089. break;
  3090. case MMCO_LONG:
  3091. unref_pic = 1;
  3092. if (FIELD_PICTURE && !s->first_field) {
  3093. if (h->long_ref[mmco[i].long_arg] == s->current_picture_ptr) {
  3094. /* Just mark second field as referenced */
  3095. unref_pic = 0;
  3096. } else if (s->current_picture_ptr->reference) {
  3097. /* First field in pair is in short term list or
  3098. * at a different long term index.
  3099. * This is not allowed; see 7.4.3, notes 2 and 3.
  3100. * Report the problem and keep the pair where it is,
  3101. * and mark this field valid.
  3102. */
  3103. av_log(h->s.avctx, AV_LOG_ERROR,
  3104. "illegal long term reference assignment for second "
  3105. "field in complementary field pair (first field is "
  3106. "short term or has non-matching long index)\n");
  3107. unref_pic = 0;
  3108. }
  3109. }
  3110. if (unref_pic) {
  3111. pic= remove_long(h, mmco[i].long_arg);
  3112. if(pic) unreference_pic(h, pic, 0);
  3113. h->long_ref[ mmco[i].long_arg ]= s->current_picture_ptr;
  3114. h->long_ref[ mmco[i].long_arg ]->long_ref=1;
  3115. h->long_ref_count++;
  3116. }
  3117. s->current_picture_ptr->reference |= s->picture_structure;
  3118. current_ref_assigned=1;
  3119. break;
  3120. case MMCO_SET_MAX_LONG:
  3121. assert(mmco[i].long_arg <= 16);
  3122. // just remove the long term which index is greater than new max
  3123. for(j = mmco[i].long_arg; j<16; j++){
  3124. pic = remove_long(h, j);
  3125. if (pic) unreference_pic(h, pic, 0);
  3126. }
  3127. break;
  3128. case MMCO_RESET:
  3129. while(h->short_ref_count){
  3130. pic= remove_short(h, h->short_ref[0]->frame_num);
  3131. if(pic) unreference_pic(h, pic, 0);
  3132. }
  3133. for(j = 0; j < 16; j++) {
  3134. pic= remove_long(h, j);
  3135. if(pic) unreference_pic(h, pic, 0);
  3136. }
  3137. break;
  3138. default: assert(0);
  3139. }
  3140. }
  3141. if (!current_ref_assigned && FIELD_PICTURE &&
  3142. !s->first_field && s->current_picture_ptr->reference) {
  3143. /* Second field of complementary field pair; the first field of
  3144. * which is already referenced. If short referenced, it
  3145. * should be first entry in short_ref. If not, it must exist
  3146. * in long_ref; trying to put it on the short list here is an
  3147. * error in the encoded bit stream (ref: 7.4.3, NOTE 2 and 3).
  3148. */
  3149. if (h->short_ref_count && h->short_ref[0] == s->current_picture_ptr) {
  3150. /* Just mark the second field valid */
  3151. s->current_picture_ptr->reference = PICT_FRAME;
  3152. } else if (s->current_picture_ptr->long_ref) {
  3153. av_log(h->s.avctx, AV_LOG_ERROR, "illegal short term reference "
  3154. "assignment for second field "
  3155. "in complementary field pair "
  3156. "(first field is long term)\n");
  3157. } else {
  3158. /*
  3159. * First field in reference, but not in any sensible place on our
  3160. * reference lists. This shouldn't happen unless reference
  3161. * handling somewhere else is wrong.
  3162. */
  3163. assert(0);
  3164. }
  3165. current_ref_assigned = 1;
  3166. }
  3167. if(!current_ref_assigned){
  3168. pic= remove_short(h, s->current_picture_ptr->frame_num);
  3169. if(pic){
  3170. unreference_pic(h, pic, 0);
  3171. av_log(h->s.avctx, AV_LOG_ERROR, "illegal short term buffer state detected\n");
  3172. }
  3173. if(h->short_ref_count)
  3174. memmove(&h->short_ref[1], &h->short_ref[0], h->short_ref_count*sizeof(Picture*));
  3175. h->short_ref[0]= s->current_picture_ptr;
  3176. h->short_ref[0]->long_ref=0;
  3177. h->short_ref_count++;
  3178. s->current_picture_ptr->reference |= s->picture_structure;
  3179. }
  3180. if (h->long_ref_count + h->short_ref_count > h->sps.ref_frame_count){
  3181. /* We have too many reference frames, probably due to corrupted
  3182. * stream. Need to discard one frame. Prevents overrun of the
  3183. * short_ref and long_ref buffers.
  3184. */
  3185. av_log(h->s.avctx, AV_LOG_ERROR,
  3186. "number of reference frames exceeds max (probably "
  3187. "corrupt input), discarding one\n");
  3188. if (h->long_ref_count) {
  3189. for (i = 0; i < 16; ++i)
  3190. if (h->long_ref[i])
  3191. break;
  3192. assert(i < 16);
  3193. pic = h->long_ref[i];
  3194. remove_long_at_index(h, i);
  3195. } else {
  3196. pic = h->short_ref[h->short_ref_count - 1];
  3197. remove_short_at_index(h, h->short_ref_count - 1);
  3198. }
  3199. unreference_pic(h, pic, 0);
  3200. }
  3201. print_short_term(h);
  3202. print_long_term(h);
  3203. return 0;
  3204. }
  3205. static int decode_ref_pic_marking(H264Context *h, GetBitContext *gb){
  3206. MpegEncContext * const s = &h->s;
  3207. int i;
  3208. if(h->nal_unit_type == NAL_IDR_SLICE){ //FIXME fields
  3209. s->broken_link= get_bits1(gb) -1;
  3210. h->mmco[0].long_arg= get_bits1(gb) - 1; // current_long_term_idx
  3211. if(h->mmco[0].long_arg == -1)
  3212. h->mmco_index= 0;
  3213. else{
  3214. h->mmco[0].opcode= MMCO_LONG;
  3215. h->mmco_index= 1;
  3216. }
  3217. }else{
  3218. if(get_bits1(gb)){ // adaptive_ref_pic_marking_mode_flag
  3219. for(i= 0; i<MAX_MMCO_COUNT; i++) {
  3220. MMCOOpcode opcode= get_ue_golomb(gb);
  3221. h->mmco[i].opcode= opcode;
  3222. if(opcode==MMCO_SHORT2UNUSED || opcode==MMCO_SHORT2LONG){
  3223. h->mmco[i].short_pic_num= (h->curr_pic_num - get_ue_golomb(gb) - 1) & (h->max_pic_num - 1);
  3224. /* if(h->mmco[i].short_pic_num >= h->short_ref_count || h->short_ref[ h->mmco[i].short_pic_num ] == NULL){
  3225. av_log(s->avctx, AV_LOG_ERROR, "illegal short ref in memory management control operation %d\n", mmco);
  3226. return -1;
  3227. }*/
  3228. }
  3229. if(opcode==MMCO_SHORT2LONG || opcode==MMCO_LONG2UNUSED || opcode==MMCO_LONG || opcode==MMCO_SET_MAX_LONG){
  3230. unsigned int long_arg= get_ue_golomb(gb);
  3231. if(long_arg >= 32 || (long_arg >= 16 && !(opcode == MMCO_LONG2UNUSED && FIELD_PICTURE))){
  3232. av_log(h->s.avctx, AV_LOG_ERROR, "illegal long ref in memory management control operation %d\n", opcode);
  3233. return -1;
  3234. }
  3235. h->mmco[i].long_arg= long_arg;
  3236. }
  3237. if(opcode > (unsigned)MMCO_LONG){
  3238. av_log(h->s.avctx, AV_LOG_ERROR, "illegal memory management control operation %d\n", opcode);
  3239. return -1;
  3240. }
  3241. if(opcode == MMCO_END)
  3242. break;
  3243. }
  3244. h->mmco_index= i;
  3245. }else{
  3246. assert(h->long_ref_count + h->short_ref_count <= h->sps.ref_frame_count);
  3247. if(h->short_ref_count && h->long_ref_count + h->short_ref_count == h->sps.ref_frame_count &&
  3248. !(FIELD_PICTURE && !s->first_field && s->current_picture_ptr->reference)) {
  3249. h->mmco[0].opcode= MMCO_SHORT2UNUSED;
  3250. h->mmco[0].short_pic_num= h->short_ref[ h->short_ref_count - 1 ]->frame_num;
  3251. h->mmco_index= 1;
  3252. if (FIELD_PICTURE) {
  3253. h->mmco[0].short_pic_num *= 2;
  3254. h->mmco[1].opcode= MMCO_SHORT2UNUSED;
  3255. h->mmco[1].short_pic_num= h->mmco[0].short_pic_num + 1;
  3256. h->mmco_index= 2;
  3257. }
  3258. }else
  3259. h->mmco_index= 0;
  3260. }
  3261. }
  3262. return 0;
  3263. }
  3264. static int init_poc(H264Context *h){
  3265. MpegEncContext * const s = &h->s;
  3266. const int max_frame_num= 1<<h->sps.log2_max_frame_num;
  3267. int field_poc[2];
  3268. if(h->nal_unit_type == NAL_IDR_SLICE){
  3269. h->frame_num_offset= 0;
  3270. }else{
  3271. if(h->frame_num < h->prev_frame_num)
  3272. h->frame_num_offset= h->prev_frame_num_offset + max_frame_num;
  3273. else
  3274. h->frame_num_offset= h->prev_frame_num_offset;
  3275. }
  3276. if(h->sps.poc_type==0){
  3277. const int max_poc_lsb= 1<<h->sps.log2_max_poc_lsb;
  3278. if(h->nal_unit_type == NAL_IDR_SLICE){
  3279. h->prev_poc_msb=
  3280. h->prev_poc_lsb= 0;
  3281. }
  3282. if (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb/2)
  3283. h->poc_msb = h->prev_poc_msb + max_poc_lsb;
  3284. else if(h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb/2)
  3285. h->poc_msb = h->prev_poc_msb - max_poc_lsb;
  3286. else
  3287. h->poc_msb = h->prev_poc_msb;
  3288. //printf("poc: %d %d\n", h->poc_msb, h->poc_lsb);
  3289. field_poc[0] =
  3290. field_poc[1] = h->poc_msb + h->poc_lsb;
  3291. if(s->picture_structure == PICT_FRAME)
  3292. field_poc[1] += h->delta_poc_bottom;
  3293. }else if(h->sps.poc_type==1){
  3294. int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
  3295. int i;
  3296. if(h->sps.poc_cycle_length != 0)
  3297. abs_frame_num = h->frame_num_offset + h->frame_num;
  3298. else
  3299. abs_frame_num = 0;
  3300. if(h->nal_ref_idc==0 && abs_frame_num > 0)
  3301. abs_frame_num--;
  3302. expected_delta_per_poc_cycle = 0;
  3303. for(i=0; i < h->sps.poc_cycle_length; i++)
  3304. expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[ i ]; //FIXME integrate during sps parse
  3305. if(abs_frame_num > 0){
  3306. int poc_cycle_cnt = (abs_frame_num - 1) / h->sps.poc_cycle_length;
  3307. int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
  3308. expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
  3309. for(i = 0; i <= frame_num_in_poc_cycle; i++)
  3310. expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[ i ];
  3311. } else
  3312. expectedpoc = 0;
  3313. if(h->nal_ref_idc == 0)
  3314. expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
  3315. field_poc[0] = expectedpoc + h->delta_poc[0];
  3316. field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
  3317. if(s->picture_structure == PICT_FRAME)
  3318. field_poc[1] += h->delta_poc[1];
  3319. }else{
  3320. int poc;
  3321. if(h->nal_unit_type == NAL_IDR_SLICE){
  3322. poc= 0;
  3323. }else{
  3324. if(h->nal_ref_idc) poc= 2*(h->frame_num_offset + h->frame_num);
  3325. else poc= 2*(h->frame_num_offset + h->frame_num) - 1;
  3326. }
  3327. field_poc[0]= poc;
  3328. field_poc[1]= poc;
  3329. }
  3330. if(s->picture_structure != PICT_BOTTOM_FIELD) {
  3331. s->current_picture_ptr->field_poc[0]= field_poc[0];
  3332. s->current_picture_ptr->poc = field_poc[0];
  3333. }
  3334. if(s->picture_structure != PICT_TOP_FIELD) {
  3335. s->current_picture_ptr->field_poc[1]= field_poc[1];
  3336. s->current_picture_ptr->poc = field_poc[1];
  3337. }
  3338. if(!FIELD_PICTURE || !s->first_field) {
  3339. Picture *cur = s->current_picture_ptr;
  3340. cur->poc= FFMIN(cur->field_poc[0], cur->field_poc[1]);
  3341. }
  3342. return 0;
  3343. }
  3344. /**
  3345. * initialize scan tables
  3346. */
  3347. static void init_scan_tables(H264Context *h){
  3348. MpegEncContext * const s = &h->s;
  3349. int i;
  3350. if(s->dsp.h264_idct_add == ff_h264_idct_add_c){ //FIXME little ugly
  3351. memcpy(h->zigzag_scan, zigzag_scan, 16*sizeof(uint8_t));
  3352. memcpy(h-> field_scan, field_scan, 16*sizeof(uint8_t));
  3353. }else{
  3354. for(i=0; i<16; i++){
  3355. #define T(x) (x>>2) | ((x<<2) & 0xF)
  3356. h->zigzag_scan[i] = T(zigzag_scan[i]);
  3357. h-> field_scan[i] = T( field_scan[i]);
  3358. #undef T
  3359. }
  3360. }
  3361. if(s->dsp.h264_idct8_add == ff_h264_idct8_add_c){
  3362. memcpy(h->zigzag_scan8x8, zigzag_scan8x8, 64*sizeof(uint8_t));
  3363. memcpy(h->zigzag_scan8x8_cavlc, zigzag_scan8x8_cavlc, 64*sizeof(uint8_t));
  3364. memcpy(h->field_scan8x8, field_scan8x8, 64*sizeof(uint8_t));
  3365. memcpy(h->field_scan8x8_cavlc, field_scan8x8_cavlc, 64*sizeof(uint8_t));
  3366. }else{
  3367. for(i=0; i<64; i++){
  3368. #define T(x) (x>>3) | ((x&7)<<3)
  3369. h->zigzag_scan8x8[i] = T(zigzag_scan8x8[i]);
  3370. h->zigzag_scan8x8_cavlc[i] = T(zigzag_scan8x8_cavlc[i]);
  3371. h->field_scan8x8[i] = T(field_scan8x8[i]);
  3372. h->field_scan8x8_cavlc[i] = T(field_scan8x8_cavlc[i]);
  3373. #undef T
  3374. }
  3375. }
  3376. if(h->sps.transform_bypass){ //FIXME same ugly
  3377. h->zigzag_scan_q0 = zigzag_scan;
  3378. h->zigzag_scan8x8_q0 = zigzag_scan8x8;
  3379. h->zigzag_scan8x8_cavlc_q0 = zigzag_scan8x8_cavlc;
  3380. h->field_scan_q0 = field_scan;
  3381. h->field_scan8x8_q0 = field_scan8x8;
  3382. h->field_scan8x8_cavlc_q0 = field_scan8x8_cavlc;
  3383. }else{
  3384. h->zigzag_scan_q0 = h->zigzag_scan;
  3385. h->zigzag_scan8x8_q0 = h->zigzag_scan8x8;
  3386. h->zigzag_scan8x8_cavlc_q0 = h->zigzag_scan8x8_cavlc;
  3387. h->field_scan_q0 = h->field_scan;
  3388. h->field_scan8x8_q0 = h->field_scan8x8;
  3389. h->field_scan8x8_cavlc_q0 = h->field_scan8x8_cavlc;
  3390. }
  3391. }
  3392. /**
  3393. * Replicates H264 "master" context to thread contexts.
  3394. */
  3395. static void clone_slice(H264Context *dst, H264Context *src)
  3396. {
  3397. memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
  3398. dst->s.current_picture_ptr = src->s.current_picture_ptr;
  3399. dst->s.current_picture = src->s.current_picture;
  3400. dst->s.linesize = src->s.linesize;
  3401. dst->s.uvlinesize = src->s.uvlinesize;
  3402. dst->s.first_field = src->s.first_field;
  3403. dst->prev_poc_msb = src->prev_poc_msb;
  3404. dst->prev_poc_lsb = src->prev_poc_lsb;
  3405. dst->prev_frame_num_offset = src->prev_frame_num_offset;
  3406. dst->prev_frame_num = src->prev_frame_num;
  3407. dst->short_ref_count = src->short_ref_count;
  3408. memcpy(dst->short_ref, src->short_ref, sizeof(dst->short_ref));
  3409. memcpy(dst->long_ref, src->long_ref, sizeof(dst->long_ref));
  3410. memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
  3411. memcpy(dst->ref_list, src->ref_list, sizeof(dst->ref_list));
  3412. memcpy(dst->dequant4_coeff, src->dequant4_coeff, sizeof(src->dequant4_coeff));
  3413. memcpy(dst->dequant8_coeff, src->dequant8_coeff, sizeof(src->dequant8_coeff));
  3414. }
  3415. /**
  3416. * decodes a slice header.
  3417. * This will also call MPV_common_init() and frame_start() as needed.
  3418. *
  3419. * @param h h264context
  3420. * @param h0 h264 master context (differs from 'h' when doing sliced based parallel decoding)
  3421. *
  3422. * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
  3423. */
  3424. static int decode_slice_header(H264Context *h, H264Context *h0){
  3425. MpegEncContext * const s = &h->s;
  3426. MpegEncContext * const s0 = &h0->s;
  3427. unsigned int first_mb_in_slice;
  3428. unsigned int pps_id;
  3429. int num_ref_idx_active_override_flag;
  3430. static const uint8_t slice_type_map[5]= {FF_P_TYPE, FF_B_TYPE, FF_I_TYPE, FF_SP_TYPE, FF_SI_TYPE};
  3431. unsigned int slice_type, tmp, i;
  3432. int default_ref_list_done = 0;
  3433. int last_pic_structure;
  3434. s->dropable= h->nal_ref_idc == 0;
  3435. if((s->avctx->flags2 & CODEC_FLAG2_FAST) && !h->nal_ref_idc){
  3436. s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab;
  3437. s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab;
  3438. }else{
  3439. s->me.qpel_put= s->dsp.put_h264_qpel_pixels_tab;
  3440. s->me.qpel_avg= s->dsp.avg_h264_qpel_pixels_tab;
  3441. }
  3442. first_mb_in_slice= get_ue_golomb(&s->gb);
  3443. if((s->flags2 & CODEC_FLAG2_CHUNKS) && first_mb_in_slice == 0){
  3444. h0->current_slice = 0;
  3445. if (!s0->first_field)
  3446. s->current_picture_ptr= NULL;
  3447. }
  3448. slice_type= get_ue_golomb(&s->gb);
  3449. if(slice_type > 9){
  3450. 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);
  3451. return -1;
  3452. }
  3453. if(slice_type > 4){
  3454. slice_type -= 5;
  3455. h->slice_type_fixed=1;
  3456. }else
  3457. h->slice_type_fixed=0;
  3458. slice_type= slice_type_map[ slice_type ];
  3459. if (slice_type == FF_I_TYPE
  3460. || (h0->current_slice != 0 && slice_type == h0->last_slice_type) ) {
  3461. default_ref_list_done = 1;
  3462. }
  3463. h->slice_type= slice_type;
  3464. s->pict_type= h->slice_type; // to make a few old func happy, it's wrong though
  3465. if (s->pict_type == FF_B_TYPE && s0->last_picture_ptr == NULL) {
  3466. av_log(h->s.avctx, AV_LOG_ERROR,
  3467. "B picture before any references, skipping\n");
  3468. return -1;
  3469. }
  3470. pps_id= get_ue_golomb(&s->gb);
  3471. if(pps_id>=MAX_PPS_COUNT){
  3472. av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
  3473. return -1;
  3474. }
  3475. if(!h0->pps_buffers[pps_id]) {
  3476. av_log(h->s.avctx, AV_LOG_ERROR, "non existing PPS referenced\n");
  3477. return -1;
  3478. }
  3479. h->pps= *h0->pps_buffers[pps_id];
  3480. if(!h0->sps_buffers[h->pps.sps_id]) {
  3481. av_log(h->s.avctx, AV_LOG_ERROR, "non existing SPS referenced\n");
  3482. return -1;
  3483. }
  3484. h->sps = *h0->sps_buffers[h->pps.sps_id];
  3485. if(h == h0 && h->dequant_coeff_pps != pps_id){
  3486. h->dequant_coeff_pps = pps_id;
  3487. init_dequant_tables(h);
  3488. }
  3489. s->mb_width= h->sps.mb_width;
  3490. s->mb_height= h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
  3491. h->b_stride= s->mb_width*4;
  3492. h->b8_stride= s->mb_width*2;
  3493. s->width = 16*s->mb_width - 2*FFMIN(h->sps.crop_right, 7);
  3494. if(h->sps.frame_mbs_only_flag)
  3495. s->height= 16*s->mb_height - 2*FFMIN(h->sps.crop_bottom, 7);
  3496. else
  3497. s->height= 16*s->mb_height - 4*FFMIN(h->sps.crop_bottom, 3);
  3498. if (s->context_initialized
  3499. && ( s->width != s->avctx->width || s->height != s->avctx->height)) {
  3500. if(h != h0)
  3501. return -1; // width / height changed during parallelized decoding
  3502. free_tables(h);
  3503. MPV_common_end(s);
  3504. }
  3505. if (!s->context_initialized) {
  3506. if(h != h0)
  3507. return -1; // we cant (re-)initialize context during parallel decoding
  3508. if (MPV_common_init(s) < 0)
  3509. return -1;
  3510. s->first_field = 0;
  3511. init_scan_tables(h);
  3512. alloc_tables(h);
  3513. for(i = 1; i < s->avctx->thread_count; i++) {
  3514. H264Context *c;
  3515. c = h->thread_context[i] = av_malloc(sizeof(H264Context));
  3516. memcpy(c, h->s.thread_context[i], sizeof(MpegEncContext));
  3517. memset(&c->s + 1, 0, sizeof(H264Context) - sizeof(MpegEncContext));
  3518. c->sps = h->sps;
  3519. c->pps = h->pps;
  3520. init_scan_tables(c);
  3521. clone_tables(c, h);
  3522. }
  3523. for(i = 0; i < s->avctx->thread_count; i++)
  3524. if(context_init(h->thread_context[i]) < 0)
  3525. return -1;
  3526. s->avctx->width = s->width;
  3527. s->avctx->height = s->height;
  3528. s->avctx->sample_aspect_ratio= h->sps.sar;
  3529. if(!s->avctx->sample_aspect_ratio.den)
  3530. s->avctx->sample_aspect_ratio.den = 1;
  3531. if(h->sps.timing_info_present_flag){
  3532. s->avctx->time_base= (AVRational){h->sps.num_units_in_tick * 2, h->sps.time_scale};
  3533. if(h->x264_build > 0 && h->x264_build < 44)
  3534. s->avctx->time_base.den *= 2;
  3535. av_reduce(&s->avctx->time_base.num, &s->avctx->time_base.den,
  3536. s->avctx->time_base.num, s->avctx->time_base.den, 1<<30);
  3537. }
  3538. }
  3539. h->frame_num= get_bits(&s->gb, h->sps.log2_max_frame_num);
  3540. h->mb_mbaff = 0;
  3541. h->mb_aff_frame = 0;
  3542. last_pic_structure = s0->picture_structure;
  3543. if(h->sps.frame_mbs_only_flag){
  3544. s->picture_structure= PICT_FRAME;
  3545. }else{
  3546. if(get_bits1(&s->gb)) { //field_pic_flag
  3547. s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag
  3548. } else {
  3549. s->picture_structure= PICT_FRAME;
  3550. h->mb_aff_frame = h->sps.mb_aff;
  3551. }
  3552. }
  3553. if(h0->current_slice == 0){
  3554. /* See if we have a decoded first field looking for a pair... */
  3555. if (s0->first_field) {
  3556. assert(s0->current_picture_ptr);
  3557. assert(s0->current_picture_ptr->data[0]);
  3558. assert(s0->current_picture_ptr->reference != DELAYED_PIC_REF);
  3559. /* figure out if we have a complementary field pair */
  3560. if (!FIELD_PICTURE || s->picture_structure == last_pic_structure) {
  3561. /*
  3562. * Previous field is unmatched. Don't display it, but let it
  3563. * remain for reference if marked as such.
  3564. */
  3565. s0->current_picture_ptr = NULL;
  3566. s0->first_field = FIELD_PICTURE;
  3567. } else {
  3568. if (h->nal_ref_idc &&
  3569. s0->current_picture_ptr->reference &&
  3570. s0->current_picture_ptr->frame_num != h->frame_num) {
  3571. /*
  3572. * This and previous field were reference, but had
  3573. * different frame_nums. Consider this field first in
  3574. * pair. Throw away previous field except for reference
  3575. * purposes.
  3576. */
  3577. s0->first_field = 1;
  3578. s0->current_picture_ptr = NULL;
  3579. } else {
  3580. /* Second field in complementary pair */
  3581. s0->first_field = 0;
  3582. }
  3583. }
  3584. } else {
  3585. /* Frame or first field in a potentially complementary pair */
  3586. assert(!s0->current_picture_ptr);
  3587. s0->first_field = FIELD_PICTURE;
  3588. }
  3589. if((!FIELD_PICTURE || s0->first_field) && frame_start(h) < 0) {
  3590. s0->first_field = 0;
  3591. return -1;
  3592. }
  3593. }
  3594. if(h != h0)
  3595. clone_slice(h, h0);
  3596. s->current_picture_ptr->frame_num= h->frame_num; //FIXME frame_num cleanup
  3597. assert(s->mb_num == s->mb_width * s->mb_height);
  3598. if(first_mb_in_slice << FIELD_OR_MBAFF_PICTURE >= s->mb_num ||
  3599. first_mb_in_slice >= s->mb_num){
  3600. av_log(h->s.avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
  3601. return -1;
  3602. }
  3603. s->resync_mb_x = s->mb_x = first_mb_in_slice % s->mb_width;
  3604. s->resync_mb_y = s->mb_y = (first_mb_in_slice / s->mb_width) << FIELD_OR_MBAFF_PICTURE;
  3605. if (s->picture_structure == PICT_BOTTOM_FIELD)
  3606. s->resync_mb_y = s->mb_y = s->mb_y + 1;
  3607. assert(s->mb_y < s->mb_height);
  3608. if(s->picture_structure==PICT_FRAME){
  3609. h->curr_pic_num= h->frame_num;
  3610. h->max_pic_num= 1<< h->sps.log2_max_frame_num;
  3611. }else{
  3612. h->curr_pic_num= 2*h->frame_num + 1;
  3613. h->max_pic_num= 1<<(h->sps.log2_max_frame_num + 1);
  3614. }
  3615. if(h->nal_unit_type == NAL_IDR_SLICE){
  3616. get_ue_golomb(&s->gb); /* idr_pic_id */
  3617. }
  3618. if(h->sps.poc_type==0){
  3619. h->poc_lsb= get_bits(&s->gb, h->sps.log2_max_poc_lsb);
  3620. if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME){
  3621. h->delta_poc_bottom= get_se_golomb(&s->gb);
  3622. }
  3623. }
  3624. if(h->sps.poc_type==1 && !h->sps.delta_pic_order_always_zero_flag){
  3625. h->delta_poc[0]= get_se_golomb(&s->gb);
  3626. if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME)
  3627. h->delta_poc[1]= get_se_golomb(&s->gb);
  3628. }
  3629. init_poc(h);
  3630. if(h->pps.redundant_pic_cnt_present){
  3631. h->redundant_pic_count= get_ue_golomb(&s->gb);
  3632. }
  3633. //set defaults, might be overriden a few line later
  3634. h->ref_count[0]= h->pps.ref_count[0];
  3635. h->ref_count[1]= h->pps.ref_count[1];
  3636. if(h->slice_type == FF_P_TYPE || h->slice_type == FF_SP_TYPE || h->slice_type == FF_B_TYPE){
  3637. if(h->slice_type == FF_B_TYPE){
  3638. h->direct_spatial_mv_pred= get_bits1(&s->gb);
  3639. if(FIELD_PICTURE && h->direct_spatial_mv_pred)
  3640. av_log(h->s.avctx, AV_LOG_ERROR, "PAFF + spatial direct mode is not implemented\n");
  3641. }
  3642. num_ref_idx_active_override_flag= get_bits1(&s->gb);
  3643. if(num_ref_idx_active_override_flag){
  3644. h->ref_count[0]= get_ue_golomb(&s->gb) + 1;
  3645. if(h->slice_type==FF_B_TYPE)
  3646. h->ref_count[1]= get_ue_golomb(&s->gb) + 1;
  3647. if(h->ref_count[0]-1 > 32-1 || h->ref_count[1]-1 > 32-1){
  3648. av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n");
  3649. h->ref_count[0]= h->ref_count[1]= 1;
  3650. return -1;
  3651. }
  3652. }
  3653. if(h->slice_type == FF_B_TYPE)
  3654. h->list_count= 2;
  3655. else
  3656. h->list_count= 1;
  3657. }else
  3658. h->list_count= 0;
  3659. if(!default_ref_list_done){
  3660. fill_default_ref_list(h);
  3661. }
  3662. if(decode_ref_pic_list_reordering(h) < 0)
  3663. return -1;
  3664. if( (h->pps.weighted_pred && (h->slice_type == FF_P_TYPE || h->slice_type == FF_SP_TYPE ))
  3665. || (h->pps.weighted_bipred_idc==1 && h->slice_type==FF_B_TYPE ) )
  3666. pred_weight_table(h);
  3667. else if(h->pps.weighted_bipred_idc==2 && h->slice_type==FF_B_TYPE)
  3668. implicit_weight_table(h);
  3669. else
  3670. h->use_weight = 0;
  3671. if(h->nal_ref_idc)
  3672. decode_ref_pic_marking(h0, &s->gb);
  3673. if(FRAME_MBAFF)
  3674. fill_mbaff_ref_list(h);
  3675. if( h->slice_type != FF_I_TYPE && h->slice_type != FF_SI_TYPE && h->pps.cabac ){
  3676. tmp = get_ue_golomb(&s->gb);
  3677. if(tmp > 2){
  3678. av_log(s->avctx, AV_LOG_ERROR, "cabac_init_idc overflow\n");
  3679. return -1;
  3680. }
  3681. h->cabac_init_idc= tmp;
  3682. }
  3683. h->last_qscale_diff = 0;
  3684. tmp = h->pps.init_qp + get_se_golomb(&s->gb);
  3685. if(tmp>51){
  3686. av_log(s->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
  3687. return -1;
  3688. }
  3689. s->qscale= tmp;
  3690. h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
  3691. h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
  3692. //FIXME qscale / qp ... stuff
  3693. if(h->slice_type == FF_SP_TYPE){
  3694. get_bits1(&s->gb); /* sp_for_switch_flag */
  3695. }
  3696. if(h->slice_type==FF_SP_TYPE || h->slice_type == FF_SI_TYPE){
  3697. get_se_golomb(&s->gb); /* slice_qs_delta */
  3698. }
  3699. h->deblocking_filter = 1;
  3700. h->slice_alpha_c0_offset = 0;
  3701. h->slice_beta_offset = 0;
  3702. if( h->pps.deblocking_filter_parameters_present ) {
  3703. tmp= get_ue_golomb(&s->gb);
  3704. if(tmp > 2){
  3705. av_log(s->avctx, AV_LOG_ERROR, "deblocking_filter_idc %u out of range\n", tmp);
  3706. return -1;
  3707. }
  3708. h->deblocking_filter= tmp;
  3709. if(h->deblocking_filter < 2)
  3710. h->deblocking_filter^= 1; // 1<->0
  3711. if( h->deblocking_filter ) {
  3712. h->slice_alpha_c0_offset = get_se_golomb(&s->gb) << 1;
  3713. h->slice_beta_offset = get_se_golomb(&s->gb) << 1;
  3714. }
  3715. }
  3716. if( s->avctx->skip_loop_filter >= AVDISCARD_ALL
  3717. ||(s->avctx->skip_loop_filter >= AVDISCARD_NONKEY && h->slice_type != FF_I_TYPE)
  3718. ||(s->avctx->skip_loop_filter >= AVDISCARD_BIDIR && h->slice_type == FF_B_TYPE)
  3719. ||(s->avctx->skip_loop_filter >= AVDISCARD_NONREF && h->nal_ref_idc == 0))
  3720. h->deblocking_filter= 0;
  3721. if(h->deblocking_filter == 1 && h0->max_contexts > 1) {
  3722. if(s->avctx->flags2 & CODEC_FLAG2_FAST) {
  3723. /* Cheat slightly for speed:
  3724. Do not bother to deblock across slices. */
  3725. h->deblocking_filter = 2;
  3726. } else {
  3727. h0->max_contexts = 1;
  3728. if(!h0->single_decode_warning) {
  3729. av_log(s->avctx, AV_LOG_INFO, "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
  3730. h0->single_decode_warning = 1;
  3731. }
  3732. if(h != h0)
  3733. return 1; // deblocking switched inside frame
  3734. }
  3735. }
  3736. #if 0 //FMO
  3737. if( h->pps.num_slice_groups > 1 && h->pps.mb_slice_group_map_type >= 3 && h->pps.mb_slice_group_map_type <= 5)
  3738. slice_group_change_cycle= get_bits(&s->gb, ?);
  3739. #endif
  3740. h0->last_slice_type = slice_type;
  3741. h->slice_num = ++h0->current_slice;
  3742. h->emu_edge_width= (s->flags&CODEC_FLAG_EMU_EDGE) ? 0 : 16;
  3743. h->emu_edge_height= (FRAME_MBAFF || FIELD_PICTURE) ? 0 : h->emu_edge_width;
  3744. if(s->avctx->debug&FF_DEBUG_PICT_INFO){
  3745. av_log(h->s.avctx, AV_LOG_DEBUG, "slice:%d %s mb:%d %c pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n",
  3746. h->slice_num,
  3747. (s->picture_structure==PICT_FRAME ? "F" : s->picture_structure==PICT_TOP_FIELD ? "T" : "B"),
  3748. first_mb_in_slice,
  3749. av_get_pict_type_char(h->slice_type),
  3750. pps_id, h->frame_num,
  3751. s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1],
  3752. h->ref_count[0], h->ref_count[1],
  3753. s->qscale,
  3754. h->deblocking_filter, h->slice_alpha_c0_offset/2, h->slice_beta_offset/2,
  3755. h->use_weight,
  3756. h->use_weight==1 && h->use_weight_chroma ? "c" : "",
  3757. h->slice_type == FF_B_TYPE ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : ""
  3758. );
  3759. }
  3760. return 0;
  3761. }
  3762. /**
  3763. *
  3764. */
  3765. static inline int get_level_prefix(GetBitContext *gb){
  3766. unsigned int buf;
  3767. int log;
  3768. OPEN_READER(re, gb);
  3769. UPDATE_CACHE(re, gb);
  3770. buf=GET_CACHE(re, gb);
  3771. log= 32 - av_log2(buf);
  3772. #ifdef TRACE
  3773. print_bin(buf>>(32-log), log);
  3774. av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d lpr @%5d in %s get_level_prefix\n", buf>>(32-log), log, log-1, get_bits_count(gb), __FILE__);
  3775. #endif
  3776. LAST_SKIP_BITS(re, gb, log);
  3777. CLOSE_READER(re, gb);
  3778. return log-1;
  3779. }
  3780. static inline int get_dct8x8_allowed(H264Context *h){
  3781. int i;
  3782. for(i=0; i<4; i++){
  3783. if(!IS_SUB_8X8(h->sub_mb_type[i])
  3784. || (!h->sps.direct_8x8_inference_flag && IS_DIRECT(h->sub_mb_type[i])))
  3785. return 0;
  3786. }
  3787. return 1;
  3788. }
  3789. /**
  3790. * decodes a residual block.
  3791. * @param n block index
  3792. * @param scantable scantable
  3793. * @param max_coeff number of coefficients in the block
  3794. * @return <0 if an error occurred
  3795. */
  3796. static int decode_residual(H264Context *h, GetBitContext *gb, DCTELEM *block, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff){
  3797. MpegEncContext * const s = &h->s;
  3798. static const int coeff_token_table_index[17]= {0, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3};
  3799. int level[16];
  3800. int zeros_left, coeff_num, coeff_token, total_coeff, i, j, trailing_ones, run_before;
  3801. //FIXME put trailing_onex into the context
  3802. if(n == CHROMA_DC_BLOCK_INDEX){
  3803. coeff_token= get_vlc2(gb, chroma_dc_coeff_token_vlc.table, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 1);
  3804. total_coeff= coeff_token>>2;
  3805. }else{
  3806. if(n == LUMA_DC_BLOCK_INDEX){
  3807. total_coeff= pred_non_zero_count(h, 0);
  3808. coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2);
  3809. total_coeff= coeff_token>>2;
  3810. }else{
  3811. total_coeff= pred_non_zero_count(h, n);
  3812. coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2);
  3813. total_coeff= coeff_token>>2;
  3814. h->non_zero_count_cache[ scan8[n] ]= total_coeff;
  3815. }
  3816. }
  3817. //FIXME set last_non_zero?
  3818. if(total_coeff==0)
  3819. return 0;
  3820. if(total_coeff > (unsigned)max_coeff) {
  3821. av_log(h->s.avctx, AV_LOG_ERROR, "corrupted macroblock %d %d (total_coeff=%d)\n", s->mb_x, s->mb_y, total_coeff);
  3822. return -1;
  3823. }
  3824. trailing_ones= coeff_token&3;
  3825. tprintf(h->s.avctx, "trailing:%d, total:%d\n", trailing_ones, total_coeff);
  3826. assert(total_coeff<=16);
  3827. for(i=0; i<trailing_ones; i++){
  3828. level[i]= 1 - 2*get_bits1(gb);
  3829. }
  3830. if(i<total_coeff) {
  3831. int level_code, mask;
  3832. int suffix_length = total_coeff > 10 && trailing_ones < 3;
  3833. int prefix= get_level_prefix(gb);
  3834. //first coefficient has suffix_length equal to 0 or 1
  3835. if(prefix<14){ //FIXME try to build a large unified VLC table for all this
  3836. if(suffix_length)
  3837. level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part
  3838. else
  3839. level_code= (prefix<<suffix_length); //part
  3840. }else if(prefix==14){
  3841. if(suffix_length)
  3842. level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part
  3843. else
  3844. level_code= prefix + get_bits(gb, 4); //part
  3845. }else if(prefix==15){
  3846. level_code= (prefix<<suffix_length) + get_bits(gb, 12); //part
  3847. if(suffix_length==0) level_code+=15; //FIXME doesn't make (much)sense
  3848. }else{
  3849. av_log(h->s.avctx, AV_LOG_ERROR, "prefix too large at %d %d\n", s->mb_x, s->mb_y);
  3850. return -1;
  3851. }
  3852. if(trailing_ones < 3) level_code += 2;
  3853. suffix_length = 1;
  3854. if(level_code > 5)
  3855. suffix_length++;
  3856. mask= -(level_code&1);
  3857. level[i]= (((2+level_code)>>1) ^ mask) - mask;
  3858. i++;
  3859. //remaining coefficients have suffix_length > 0
  3860. for(;i<total_coeff;i++) {
  3861. static const int suffix_limit[7] = {0,5,11,23,47,95,INT_MAX };
  3862. prefix = get_level_prefix(gb);
  3863. if(prefix<15){
  3864. level_code = (prefix<<suffix_length) + get_bits(gb, suffix_length);
  3865. }else if(prefix==15){
  3866. level_code = (prefix<<suffix_length) + get_bits(gb, 12);
  3867. }else{
  3868. av_log(h->s.avctx, AV_LOG_ERROR, "prefix too large at %d %d\n", s->mb_x, s->mb_y);
  3869. return -1;
  3870. }
  3871. mask= -(level_code&1);
  3872. level[i]= (((2+level_code)>>1) ^ mask) - mask;
  3873. if(level_code > suffix_limit[suffix_length])
  3874. suffix_length++;
  3875. }
  3876. }
  3877. if(total_coeff == max_coeff)
  3878. zeros_left=0;
  3879. else{
  3880. if(n == CHROMA_DC_BLOCK_INDEX)
  3881. zeros_left= get_vlc2(gb, chroma_dc_total_zeros_vlc[ total_coeff-1 ].table, CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 1);
  3882. else
  3883. zeros_left= get_vlc2(gb, total_zeros_vlc[ total_coeff-1 ].table, TOTAL_ZEROS_VLC_BITS, 1);
  3884. }
  3885. coeff_num = zeros_left + total_coeff - 1;
  3886. j = scantable[coeff_num];
  3887. if(n > 24){
  3888. block[j] = level[0];
  3889. for(i=1;i<total_coeff;i++) {
  3890. if(zeros_left <= 0)
  3891. run_before = 0;
  3892. else if(zeros_left < 7){
  3893. run_before= get_vlc2(gb, run_vlc[zeros_left-1].table, RUN_VLC_BITS, 1);
  3894. }else{
  3895. run_before= get_vlc2(gb, run7_vlc.table, RUN7_VLC_BITS, 2);
  3896. }
  3897. zeros_left -= run_before;
  3898. coeff_num -= 1 + run_before;
  3899. j= scantable[ coeff_num ];
  3900. block[j]= level[i];
  3901. }
  3902. }else{
  3903. block[j] = (level[0] * qmul[j] + 32)>>6;
  3904. for(i=1;i<total_coeff;i++) {
  3905. if(zeros_left <= 0)
  3906. run_before = 0;
  3907. else if(zeros_left < 7){
  3908. run_before= get_vlc2(gb, run_vlc[zeros_left-1].table, RUN_VLC_BITS, 1);
  3909. }else{
  3910. run_before= get_vlc2(gb, run7_vlc.table, RUN7_VLC_BITS, 2);
  3911. }
  3912. zeros_left -= run_before;
  3913. coeff_num -= 1 + run_before;
  3914. j= scantable[ coeff_num ];
  3915. block[j]= (level[i] * qmul[j] + 32)>>6;
  3916. }
  3917. }
  3918. if(zeros_left<0){
  3919. av_log(h->s.avctx, AV_LOG_ERROR, "negative number of zero coeffs at %d %d\n", s->mb_x, s->mb_y);
  3920. return -1;
  3921. }
  3922. return 0;
  3923. }
  3924. static void predict_field_decoding_flag(H264Context *h){
  3925. MpegEncContext * const s = &h->s;
  3926. const int mb_xy= h->mb_xy;
  3927. int mb_type = (h->slice_table[mb_xy-1] == h->slice_num)
  3928. ? s->current_picture.mb_type[mb_xy-1]
  3929. : (h->slice_table[mb_xy-s->mb_stride] == h->slice_num)
  3930. ? s->current_picture.mb_type[mb_xy-s->mb_stride]
  3931. : 0;
  3932. h->mb_mbaff = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
  3933. }
  3934. /**
  3935. * decodes a P_SKIP or B_SKIP macroblock
  3936. */
  3937. static void decode_mb_skip(H264Context *h){
  3938. MpegEncContext * const s = &h->s;
  3939. const int mb_xy= h->mb_xy;
  3940. int mb_type=0;
  3941. memset(h->non_zero_count[mb_xy], 0, 16);
  3942. memset(h->non_zero_count_cache + 8, 0, 8*5); //FIXME ugly, remove pfui
  3943. if(MB_FIELD)
  3944. mb_type|= MB_TYPE_INTERLACED;
  3945. if( h->slice_type == FF_B_TYPE )
  3946. {
  3947. // just for fill_caches. pred_direct_motion will set the real mb_type
  3948. mb_type|= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2|MB_TYPE_SKIP;
  3949. fill_caches(h, mb_type, 0); //FIXME check what is needed and what not ...
  3950. pred_direct_motion(h, &mb_type);
  3951. mb_type|= MB_TYPE_SKIP;
  3952. }
  3953. else
  3954. {
  3955. int mx, my;
  3956. mb_type|= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P1L0|MB_TYPE_SKIP;
  3957. fill_caches(h, mb_type, 0); //FIXME check what is needed and what not ...
  3958. pred_pskip_motion(h, &mx, &my);
  3959. fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, 0, 1);
  3960. fill_rectangle( h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mx,my), 4);
  3961. }
  3962. write_back_motion(h, mb_type);
  3963. s->current_picture.mb_type[mb_xy]= mb_type;
  3964. s->current_picture.qscale_table[mb_xy]= s->qscale;
  3965. h->slice_table[ mb_xy ]= h->slice_num;
  3966. h->prev_mb_skipped= 1;
  3967. }
  3968. /**
  3969. * decodes a macroblock
  3970. * @returns 0 if ok, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed
  3971. */
  3972. static int decode_mb_cavlc(H264Context *h){
  3973. MpegEncContext * const s = &h->s;
  3974. int mb_xy;
  3975. int partition_count;
  3976. unsigned int mb_type, cbp;
  3977. int dct8x8_allowed= h->pps.transform_8x8_mode;
  3978. mb_xy = h->mb_xy = s->mb_x + s->mb_y*s->mb_stride;
  3979. s->dsp.clear_blocks(h->mb); //FIXME avoid if already clear (move after skip handlong?
  3980. tprintf(s->avctx, "pic:%d mb:%d/%d\n", h->frame_num, s->mb_x, s->mb_y);
  3981. cbp = 0; /* avoid warning. FIXME: find a solution without slowing
  3982. down the code */
  3983. if(h->slice_type != FF_I_TYPE && h->slice_type != FF_SI_TYPE){
  3984. if(s->mb_skip_run==-1)
  3985. s->mb_skip_run= get_ue_golomb(&s->gb);
  3986. if (s->mb_skip_run--) {
  3987. if(FRAME_MBAFF && (s->mb_y&1) == 0){
  3988. if(s->mb_skip_run==0)
  3989. h->mb_mbaff = h->mb_field_decoding_flag = get_bits1(&s->gb);
  3990. else
  3991. predict_field_decoding_flag(h);
  3992. }
  3993. decode_mb_skip(h);
  3994. return 0;
  3995. }
  3996. }
  3997. if(FRAME_MBAFF){
  3998. if( (s->mb_y&1) == 0 )
  3999. h->mb_mbaff = h->mb_field_decoding_flag = get_bits1(&s->gb);
  4000. }else
  4001. h->mb_field_decoding_flag= (s->picture_structure!=PICT_FRAME);
  4002. h->prev_mb_skipped= 0;
  4003. mb_type= get_ue_golomb(&s->gb);
  4004. if(h->slice_type == FF_B_TYPE){
  4005. if(mb_type < 23){
  4006. partition_count= b_mb_type_info[mb_type].partition_count;
  4007. mb_type= b_mb_type_info[mb_type].type;
  4008. }else{
  4009. mb_type -= 23;
  4010. goto decode_intra_mb;
  4011. }
  4012. }else if(h->slice_type == FF_P_TYPE /*|| h->slice_type == FF_SP_TYPE */){
  4013. if(mb_type < 5){
  4014. partition_count= p_mb_type_info[mb_type].partition_count;
  4015. mb_type= p_mb_type_info[mb_type].type;
  4016. }else{
  4017. mb_type -= 5;
  4018. goto decode_intra_mb;
  4019. }
  4020. }else{
  4021. assert(h->slice_type == FF_I_TYPE);
  4022. decode_intra_mb:
  4023. if(mb_type > 25){
  4024. av_log(h->s.avctx, AV_LOG_ERROR, "mb_type %d in %c slice too large at %d %d\n", mb_type, av_get_pict_type_char(h->slice_type), s->mb_x, s->mb_y);
  4025. return -1;
  4026. }
  4027. partition_count=0;
  4028. cbp= i_mb_type_info[mb_type].cbp;
  4029. h->intra16x16_pred_mode= i_mb_type_info[mb_type].pred_mode;
  4030. mb_type= i_mb_type_info[mb_type].type;
  4031. }
  4032. if(MB_FIELD)
  4033. mb_type |= MB_TYPE_INTERLACED;
  4034. h->slice_table[ mb_xy ]= h->slice_num;
  4035. if(IS_INTRA_PCM(mb_type)){
  4036. unsigned int x, y;
  4037. // We assume these blocks are very rare so we do not optimize it.
  4038. align_get_bits(&s->gb);
  4039. // The pixels are stored in the same order as levels in h->mb array.
  4040. for(y=0; y<16; y++){
  4041. const int index= 4*(y&3) + 32*((y>>2)&1) + 128*(y>>3);
  4042. for(x=0; x<16; x++){
  4043. tprintf(s->avctx, "LUMA ICPM LEVEL (%3d)\n", show_bits(&s->gb, 8));
  4044. h->mb[index + (x&3) + 16*((x>>2)&1) + 64*(x>>3)]= get_bits(&s->gb, 8);
  4045. }
  4046. }
  4047. for(y=0; y<8; y++){
  4048. const int index= 256 + 4*(y&3) + 32*(y>>2);
  4049. for(x=0; x<8; x++){
  4050. tprintf(s->avctx, "CHROMA U ICPM LEVEL (%3d)\n", show_bits(&s->gb, 8));
  4051. h->mb[index + (x&3) + 16*(x>>2)]= get_bits(&s->gb, 8);
  4052. }
  4053. }
  4054. for(y=0; y<8; y++){
  4055. const int index= 256 + 64 + 4*(y&3) + 32*(y>>2);
  4056. for(x=0; x<8; x++){
  4057. tprintf(s->avctx, "CHROMA V ICPM LEVEL (%3d)\n", show_bits(&s->gb, 8));
  4058. h->mb[index + (x&3) + 16*(x>>2)]= get_bits(&s->gb, 8);
  4059. }
  4060. }
  4061. // In deblocking, the quantizer is 0
  4062. s->current_picture.qscale_table[mb_xy]= 0;
  4063. h->chroma_qp[0] = get_chroma_qp(h, 0, 0);
  4064. h->chroma_qp[1] = get_chroma_qp(h, 1, 0);
  4065. // All coeffs are present
  4066. memset(h->non_zero_count[mb_xy], 16, 16);
  4067. s->current_picture.mb_type[mb_xy]= mb_type;
  4068. return 0;
  4069. }
  4070. if(MB_MBAFF){
  4071. h->ref_count[0] <<= 1;
  4072. h->ref_count[1] <<= 1;
  4073. }
  4074. fill_caches(h, mb_type, 0);
  4075. //mb_pred
  4076. if(IS_INTRA(mb_type)){
  4077. int pred_mode;
  4078. // init_top_left_availability(h);
  4079. if(IS_INTRA4x4(mb_type)){
  4080. int i;
  4081. int di = 1;
  4082. if(dct8x8_allowed && get_bits1(&s->gb)){
  4083. mb_type |= MB_TYPE_8x8DCT;
  4084. di = 4;
  4085. }
  4086. // fill_intra4x4_pred_table(h);
  4087. for(i=0; i<16; i+=di){
  4088. int mode= pred_intra_mode(h, i);
  4089. if(!get_bits1(&s->gb)){
  4090. const int rem_mode= get_bits(&s->gb, 3);
  4091. mode = rem_mode + (rem_mode >= mode);
  4092. }
  4093. if(di==4)
  4094. fill_rectangle( &h->intra4x4_pred_mode_cache[ scan8[i] ], 2, 2, 8, mode, 1 );
  4095. else
  4096. h->intra4x4_pred_mode_cache[ scan8[i] ] = mode;
  4097. }
  4098. write_back_intra_pred_mode(h);
  4099. if( check_intra4x4_pred_mode(h) < 0)
  4100. return -1;
  4101. }else{
  4102. h->intra16x16_pred_mode= check_intra_pred_mode(h, h->intra16x16_pred_mode);
  4103. if(h->intra16x16_pred_mode < 0)
  4104. return -1;
  4105. }
  4106. pred_mode= check_intra_pred_mode(h, get_ue_golomb(&s->gb));
  4107. if(pred_mode < 0)
  4108. return -1;
  4109. h->chroma_pred_mode= pred_mode;
  4110. }else if(partition_count==4){
  4111. int i, j, sub_partition_count[4], list, ref[2][4];
  4112. if(h->slice_type == FF_B_TYPE){
  4113. for(i=0; i<4; i++){
  4114. h->sub_mb_type[i]= get_ue_golomb(&s->gb);
  4115. if(h->sub_mb_type[i] >=13){
  4116. av_log(h->s.avctx, AV_LOG_ERROR, "B sub_mb_type %u out of range at %d %d\n", h->sub_mb_type[i], s->mb_x, s->mb_y);
  4117. return -1;
  4118. }
  4119. sub_partition_count[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
  4120. h->sub_mb_type[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].type;
  4121. }
  4122. if( IS_DIRECT(h->sub_mb_type[0]) || IS_DIRECT(h->sub_mb_type[1])
  4123. || IS_DIRECT(h->sub_mb_type[2]) || IS_DIRECT(h->sub_mb_type[3])) {
  4124. pred_direct_motion(h, &mb_type);
  4125. h->ref_cache[0][scan8[4]] =
  4126. h->ref_cache[1][scan8[4]] =
  4127. h->ref_cache[0][scan8[12]] =
  4128. h->ref_cache[1][scan8[12]] = PART_NOT_AVAILABLE;
  4129. }
  4130. }else{
  4131. assert(h->slice_type == FF_P_TYPE || h->slice_type == FF_SP_TYPE); //FIXME SP correct ?
  4132. for(i=0; i<4; i++){
  4133. h->sub_mb_type[i]= get_ue_golomb(&s->gb);
  4134. if(h->sub_mb_type[i] >=4){
  4135. av_log(h->s.avctx, AV_LOG_ERROR, "P sub_mb_type %u out of range at %d %d\n", h->sub_mb_type[i], s->mb_x, s->mb_y);
  4136. return -1;
  4137. }
  4138. sub_partition_count[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
  4139. h->sub_mb_type[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].type;
  4140. }
  4141. }
  4142. for(list=0; list<h->list_count; list++){
  4143. int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list];
  4144. for(i=0; i<4; i++){
  4145. if(IS_DIRECT(h->sub_mb_type[i])) continue;
  4146. if(IS_DIR(h->sub_mb_type[i], 0, list)){
  4147. unsigned int tmp = get_te0_golomb(&s->gb, ref_count); //FIXME init to 0 before and skip?
  4148. if(tmp>=ref_count){
  4149. av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", tmp);
  4150. return -1;
  4151. }
  4152. ref[list][i]= tmp;
  4153. }else{
  4154. //FIXME
  4155. ref[list][i] = -1;
  4156. }
  4157. }
  4158. }
  4159. if(dct8x8_allowed)
  4160. dct8x8_allowed = get_dct8x8_allowed(h);
  4161. for(list=0; list<h->list_count; list++){
  4162. for(i=0; i<4; i++){
  4163. if(IS_DIRECT(h->sub_mb_type[i])) {
  4164. h->ref_cache[list][ scan8[4*i] ] = h->ref_cache[list][ scan8[4*i]+1 ];
  4165. continue;
  4166. }
  4167. h->ref_cache[list][ scan8[4*i] ]=h->ref_cache[list][ scan8[4*i]+1 ]=
  4168. h->ref_cache[list][ scan8[4*i]+8 ]=h->ref_cache[list][ scan8[4*i]+9 ]= ref[list][i];
  4169. if(IS_DIR(h->sub_mb_type[i], 0, list)){
  4170. const int sub_mb_type= h->sub_mb_type[i];
  4171. const int block_width= (sub_mb_type & (MB_TYPE_16x16|MB_TYPE_16x8)) ? 2 : 1;
  4172. for(j=0; j<sub_partition_count[i]; j++){
  4173. int mx, my;
  4174. const int index= 4*i + block_width*j;
  4175. int16_t (* mv_cache)[2]= &h->mv_cache[list][ scan8[index] ];
  4176. pred_motion(h, index, block_width, list, h->ref_cache[list][ scan8[index] ], &mx, &my);
  4177. mx += get_se_golomb(&s->gb);
  4178. my += get_se_golomb(&s->gb);
  4179. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  4180. if(IS_SUB_8X8(sub_mb_type)){
  4181. mv_cache[ 1 ][0]=
  4182. mv_cache[ 8 ][0]= mv_cache[ 9 ][0]= mx;
  4183. mv_cache[ 1 ][1]=
  4184. mv_cache[ 8 ][1]= mv_cache[ 9 ][1]= my;
  4185. }else if(IS_SUB_8X4(sub_mb_type)){
  4186. mv_cache[ 1 ][0]= mx;
  4187. mv_cache[ 1 ][1]= my;
  4188. }else if(IS_SUB_4X8(sub_mb_type)){
  4189. mv_cache[ 8 ][0]= mx;
  4190. mv_cache[ 8 ][1]= my;
  4191. }
  4192. mv_cache[ 0 ][0]= mx;
  4193. mv_cache[ 0 ][1]= my;
  4194. }
  4195. }else{
  4196. uint32_t *p= (uint32_t *)&h->mv_cache[list][ scan8[4*i] ][0];
  4197. p[0] = p[1]=
  4198. p[8] = p[9]= 0;
  4199. }
  4200. }
  4201. }
  4202. }else if(IS_DIRECT(mb_type)){
  4203. pred_direct_motion(h, &mb_type);
  4204. dct8x8_allowed &= h->sps.direct_8x8_inference_flag;
  4205. }else{
  4206. int list, mx, my, i;
  4207. //FIXME we should set ref_idx_l? to 0 if we use that later ...
  4208. if(IS_16X16(mb_type)){
  4209. for(list=0; list<h->list_count; list++){
  4210. unsigned int val;
  4211. if(IS_DIR(mb_type, 0, list)){
  4212. val= get_te0_golomb(&s->gb, h->ref_count[list]);
  4213. if(val >= h->ref_count[list]){
  4214. av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val);
  4215. return -1;
  4216. }
  4217. }else
  4218. val= LIST_NOT_USED&0xFF;
  4219. fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, val, 1);
  4220. }
  4221. for(list=0; list<h->list_count; list++){
  4222. unsigned int val;
  4223. if(IS_DIR(mb_type, 0, list)){
  4224. pred_motion(h, 0, 4, list, h->ref_cache[list][ scan8[0] ], &mx, &my);
  4225. mx += get_se_golomb(&s->gb);
  4226. my += get_se_golomb(&s->gb);
  4227. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  4228. val= pack16to32(mx,my);
  4229. }else
  4230. val=0;
  4231. fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, val, 4);
  4232. }
  4233. }
  4234. else if(IS_16X8(mb_type)){
  4235. for(list=0; list<h->list_count; list++){
  4236. for(i=0; i<2; i++){
  4237. unsigned int val;
  4238. if(IS_DIR(mb_type, i, list)){
  4239. val= get_te0_golomb(&s->gb, h->ref_count[list]);
  4240. if(val >= h->ref_count[list]){
  4241. av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val);
  4242. return -1;
  4243. }
  4244. }else
  4245. val= LIST_NOT_USED&0xFF;
  4246. fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, val, 1);
  4247. }
  4248. }
  4249. for(list=0; list<h->list_count; list++){
  4250. for(i=0; i<2; i++){
  4251. unsigned int val;
  4252. if(IS_DIR(mb_type, i, list)){
  4253. pred_16x8_motion(h, 8*i, list, h->ref_cache[list][scan8[0] + 16*i], &mx, &my);
  4254. mx += get_se_golomb(&s->gb);
  4255. my += get_se_golomb(&s->gb);
  4256. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  4257. val= pack16to32(mx,my);
  4258. }else
  4259. val=0;
  4260. fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, val, 4);
  4261. }
  4262. }
  4263. }else{
  4264. assert(IS_8X16(mb_type));
  4265. for(list=0; list<h->list_count; list++){
  4266. for(i=0; i<2; i++){
  4267. unsigned int val;
  4268. if(IS_DIR(mb_type, i, list)){ //FIXME optimize
  4269. val= get_te0_golomb(&s->gb, h->ref_count[list]);
  4270. if(val >= h->ref_count[list]){
  4271. av_log(h->s.avctx, AV_LOG_ERROR, "ref %u overflow\n", val);
  4272. return -1;
  4273. }
  4274. }else
  4275. val= LIST_NOT_USED&0xFF;
  4276. fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, val, 1);
  4277. }
  4278. }
  4279. for(list=0; list<h->list_count; list++){
  4280. for(i=0; i<2; i++){
  4281. unsigned int val;
  4282. if(IS_DIR(mb_type, i, list)){
  4283. pred_8x16_motion(h, i*4, list, h->ref_cache[list][ scan8[0] + 2*i ], &mx, &my);
  4284. mx += get_se_golomb(&s->gb);
  4285. my += get_se_golomb(&s->gb);
  4286. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  4287. val= pack16to32(mx,my);
  4288. }else
  4289. val=0;
  4290. fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, val, 4);
  4291. }
  4292. }
  4293. }
  4294. }
  4295. if(IS_INTER(mb_type))
  4296. write_back_motion(h, mb_type);
  4297. if(!IS_INTRA16x16(mb_type)){
  4298. cbp= get_ue_golomb(&s->gb);
  4299. if(cbp > 47){
  4300. av_log(h->s.avctx, AV_LOG_ERROR, "cbp too large (%u) at %d %d\n", cbp, s->mb_x, s->mb_y);
  4301. return -1;
  4302. }
  4303. if(IS_INTRA4x4(mb_type))
  4304. cbp= golomb_to_intra4x4_cbp[cbp];
  4305. else
  4306. cbp= golomb_to_inter_cbp[cbp];
  4307. }
  4308. h->cbp = cbp;
  4309. if(dct8x8_allowed && (cbp&15) && !IS_INTRA(mb_type)){
  4310. if(get_bits1(&s->gb))
  4311. mb_type |= MB_TYPE_8x8DCT;
  4312. }
  4313. s->current_picture.mb_type[mb_xy]= mb_type;
  4314. if(cbp || IS_INTRA16x16(mb_type)){
  4315. int i8x8, i4x4, chroma_idx;
  4316. int dquant;
  4317. GetBitContext *gb= IS_INTRA(mb_type) ? h->intra_gb_ptr : h->inter_gb_ptr;
  4318. const uint8_t *scan, *scan8x8, *dc_scan;
  4319. // fill_non_zero_count_cache(h);
  4320. if(IS_INTERLACED(mb_type)){
  4321. scan8x8= s->qscale ? h->field_scan8x8_cavlc : h->field_scan8x8_cavlc_q0;
  4322. scan= s->qscale ? h->field_scan : h->field_scan_q0;
  4323. dc_scan= luma_dc_field_scan;
  4324. }else{
  4325. scan8x8= s->qscale ? h->zigzag_scan8x8_cavlc : h->zigzag_scan8x8_cavlc_q0;
  4326. scan= s->qscale ? h->zigzag_scan : h->zigzag_scan_q0;
  4327. dc_scan= luma_dc_zigzag_scan;
  4328. }
  4329. dquant= get_se_golomb(&s->gb);
  4330. if( dquant > 25 || dquant < -26 ){
  4331. av_log(h->s.avctx, AV_LOG_ERROR, "dquant out of range (%d) at %d %d\n", dquant, s->mb_x, s->mb_y);
  4332. return -1;
  4333. }
  4334. s->qscale += dquant;
  4335. if(((unsigned)s->qscale) > 51){
  4336. if(s->qscale<0) s->qscale+= 52;
  4337. else s->qscale-= 52;
  4338. }
  4339. h->chroma_qp[0]= get_chroma_qp(h, 0, s->qscale);
  4340. h->chroma_qp[1]= get_chroma_qp(h, 1, s->qscale);
  4341. if(IS_INTRA16x16(mb_type)){
  4342. if( decode_residual(h, h->intra_gb_ptr, h->mb, LUMA_DC_BLOCK_INDEX, dc_scan, h->dequant4_coeff[0][s->qscale], 16) < 0){
  4343. return -1; //FIXME continue if partitioned and other return -1 too
  4344. }
  4345. assert((cbp&15) == 0 || (cbp&15) == 15);
  4346. if(cbp&15){
  4347. for(i8x8=0; i8x8<4; i8x8++){
  4348. for(i4x4=0; i4x4<4; i4x4++){
  4349. const int index= i4x4 + 4*i8x8;
  4350. if( decode_residual(h, h->intra_gb_ptr, h->mb + 16*index, index, scan + 1, h->dequant4_coeff[0][s->qscale], 15) < 0 ){
  4351. return -1;
  4352. }
  4353. }
  4354. }
  4355. }else{
  4356. fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1);
  4357. }
  4358. }else{
  4359. for(i8x8=0; i8x8<4; i8x8++){
  4360. if(cbp & (1<<i8x8)){
  4361. if(IS_8x8DCT(mb_type)){
  4362. DCTELEM *buf = &h->mb[64*i8x8];
  4363. uint8_t *nnz;
  4364. for(i4x4=0; i4x4<4; i4x4++){
  4365. if( decode_residual(h, gb, buf, i4x4+4*i8x8, scan8x8+16*i4x4,
  4366. h->dequant8_coeff[IS_INTRA( mb_type ) ? 0:1][s->qscale], 16) <0 )
  4367. return -1;
  4368. }
  4369. nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ];
  4370. nnz[0] += nnz[1] + nnz[8] + nnz[9];
  4371. }else{
  4372. for(i4x4=0; i4x4<4; i4x4++){
  4373. const int index= i4x4 + 4*i8x8;
  4374. if( decode_residual(h, gb, h->mb + 16*index, index, scan, h->dequant4_coeff[IS_INTRA( mb_type ) ? 0:3][s->qscale], 16) <0 ){
  4375. return -1;
  4376. }
  4377. }
  4378. }
  4379. }else{
  4380. uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ];
  4381. nnz[0] = nnz[1] = nnz[8] = nnz[9] = 0;
  4382. }
  4383. }
  4384. }
  4385. if(cbp&0x30){
  4386. for(chroma_idx=0; chroma_idx<2; chroma_idx++)
  4387. if( decode_residual(h, gb, h->mb + 256 + 16*4*chroma_idx, CHROMA_DC_BLOCK_INDEX, chroma_dc_scan, NULL, 4) < 0){
  4388. return -1;
  4389. }
  4390. }
  4391. if(cbp&0x20){
  4392. for(chroma_idx=0; chroma_idx<2; chroma_idx++){
  4393. const uint32_t *qmul = h->dequant4_coeff[chroma_idx+1+(IS_INTRA( mb_type ) ? 0:3)][h->chroma_qp[chroma_idx]];
  4394. for(i4x4=0; i4x4<4; i4x4++){
  4395. const int index= 16 + 4*chroma_idx + i4x4;
  4396. if( decode_residual(h, gb, h->mb + 16*index, index, scan + 1, qmul, 15) < 0){
  4397. return -1;
  4398. }
  4399. }
  4400. }
  4401. }else{
  4402. uint8_t * const nnz= &h->non_zero_count_cache[0];
  4403. nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
  4404. nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
  4405. }
  4406. }else{
  4407. uint8_t * const nnz= &h->non_zero_count_cache[0];
  4408. fill_rectangle(&nnz[scan8[0]], 4, 4, 8, 0, 1);
  4409. nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
  4410. nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
  4411. }
  4412. s->current_picture.qscale_table[mb_xy]= s->qscale;
  4413. write_back_non_zero_count(h);
  4414. if(MB_MBAFF){
  4415. h->ref_count[0] >>= 1;
  4416. h->ref_count[1] >>= 1;
  4417. }
  4418. return 0;
  4419. }
  4420. static int decode_cabac_field_decoding_flag(H264Context *h) {
  4421. MpegEncContext * const s = &h->s;
  4422. const int mb_x = s->mb_x;
  4423. const int mb_y = s->mb_y & ~1;
  4424. const int mba_xy = mb_x - 1 + mb_y *s->mb_stride;
  4425. const int mbb_xy = mb_x + (mb_y-2)*s->mb_stride;
  4426. unsigned int ctx = 0;
  4427. if( h->slice_table[mba_xy] == h->slice_num && IS_INTERLACED( s->current_picture.mb_type[mba_xy] ) ) {
  4428. ctx += 1;
  4429. }
  4430. if( h->slice_table[mbb_xy] == h->slice_num && IS_INTERLACED( s->current_picture.mb_type[mbb_xy] ) ) {
  4431. ctx += 1;
  4432. }
  4433. return get_cabac_noinline( &h->cabac, &h->cabac_state[70 + ctx] );
  4434. }
  4435. static int decode_cabac_intra_mb_type(H264Context *h, int ctx_base, int intra_slice) {
  4436. uint8_t *state= &h->cabac_state[ctx_base];
  4437. int mb_type;
  4438. if(intra_slice){
  4439. MpegEncContext * const s = &h->s;
  4440. const int mba_xy = h->left_mb_xy[0];
  4441. const int mbb_xy = h->top_mb_xy;
  4442. int ctx=0;
  4443. if( h->slice_table[mba_xy] == h->slice_num && !IS_INTRA4x4( s->current_picture.mb_type[mba_xy] ) )
  4444. ctx++;
  4445. if( h->slice_table[mbb_xy] == h->slice_num && !IS_INTRA4x4( s->current_picture.mb_type[mbb_xy] ) )
  4446. ctx++;
  4447. if( get_cabac_noinline( &h->cabac, &state[ctx] ) == 0 )
  4448. return 0; /* I4x4 */
  4449. state += 2;
  4450. }else{
  4451. if( get_cabac_noinline( &h->cabac, &state[0] ) == 0 )
  4452. return 0; /* I4x4 */
  4453. }
  4454. if( get_cabac_terminate( &h->cabac ) )
  4455. return 25; /* PCM */
  4456. mb_type = 1; /* I16x16 */
  4457. mb_type += 12 * get_cabac_noinline( &h->cabac, &state[1] ); /* cbp_luma != 0 */
  4458. if( get_cabac_noinline( &h->cabac, &state[2] ) ) /* cbp_chroma */
  4459. mb_type += 4 + 4 * get_cabac_noinline( &h->cabac, &state[2+intra_slice] );
  4460. mb_type += 2 * get_cabac_noinline( &h->cabac, &state[3+intra_slice] );
  4461. mb_type += 1 * get_cabac_noinline( &h->cabac, &state[3+2*intra_slice] );
  4462. return mb_type;
  4463. }
  4464. static int decode_cabac_mb_type( H264Context *h ) {
  4465. MpegEncContext * const s = &h->s;
  4466. if( h->slice_type == FF_I_TYPE ) {
  4467. return decode_cabac_intra_mb_type(h, 3, 1);
  4468. } else if( h->slice_type == FF_P_TYPE ) {
  4469. if( get_cabac_noinline( &h->cabac, &h->cabac_state[14] ) == 0 ) {
  4470. /* P-type */
  4471. if( get_cabac_noinline( &h->cabac, &h->cabac_state[15] ) == 0 ) {
  4472. /* P_L0_D16x16, P_8x8 */
  4473. return 3 * get_cabac_noinline( &h->cabac, &h->cabac_state[16] );
  4474. } else {
  4475. /* P_L0_D8x16, P_L0_D16x8 */
  4476. return 2 - get_cabac_noinline( &h->cabac, &h->cabac_state[17] );
  4477. }
  4478. } else {
  4479. return decode_cabac_intra_mb_type(h, 17, 0) + 5;
  4480. }
  4481. } else if( h->slice_type == FF_B_TYPE ) {
  4482. const int mba_xy = h->left_mb_xy[0];
  4483. const int mbb_xy = h->top_mb_xy;
  4484. int ctx = 0;
  4485. int bits;
  4486. if( h->slice_table[mba_xy] == h->slice_num && !IS_DIRECT( s->current_picture.mb_type[mba_xy] ) )
  4487. ctx++;
  4488. if( h->slice_table[mbb_xy] == h->slice_num && !IS_DIRECT( s->current_picture.mb_type[mbb_xy] ) )
  4489. ctx++;
  4490. if( !get_cabac_noinline( &h->cabac, &h->cabac_state[27+ctx] ) )
  4491. return 0; /* B_Direct_16x16 */
  4492. if( !get_cabac_noinline( &h->cabac, &h->cabac_state[27+3] ) ) {
  4493. return 1 + get_cabac_noinline( &h->cabac, &h->cabac_state[27+5] ); /* B_L[01]_16x16 */
  4494. }
  4495. bits = get_cabac_noinline( &h->cabac, &h->cabac_state[27+4] ) << 3;
  4496. bits|= get_cabac_noinline( &h->cabac, &h->cabac_state[27+5] ) << 2;
  4497. bits|= get_cabac_noinline( &h->cabac, &h->cabac_state[27+5] ) << 1;
  4498. bits|= get_cabac_noinline( &h->cabac, &h->cabac_state[27+5] );
  4499. if( bits < 8 )
  4500. return bits + 3; /* B_Bi_16x16 through B_L1_L0_16x8 */
  4501. else if( bits == 13 ) {
  4502. return decode_cabac_intra_mb_type(h, 32, 0) + 23;
  4503. } else if( bits == 14 )
  4504. return 11; /* B_L1_L0_8x16 */
  4505. else if( bits == 15 )
  4506. return 22; /* B_8x8 */
  4507. bits= ( bits<<1 ) | get_cabac_noinline( &h->cabac, &h->cabac_state[27+5] );
  4508. return bits - 4; /* B_L0_Bi_* through B_Bi_Bi_* */
  4509. } else {
  4510. /* TODO SI/SP frames? */
  4511. return -1;
  4512. }
  4513. }
  4514. static int decode_cabac_mb_skip( H264Context *h, int mb_x, int mb_y ) {
  4515. MpegEncContext * const s = &h->s;
  4516. int mba_xy, mbb_xy;
  4517. int ctx = 0;
  4518. if(FRAME_MBAFF){ //FIXME merge with the stuff in fill_caches?
  4519. int mb_xy = mb_x + (mb_y&~1)*s->mb_stride;
  4520. mba_xy = mb_xy - 1;
  4521. if( (mb_y&1)
  4522. && h->slice_table[mba_xy] == h->slice_num
  4523. && MB_FIELD == !!IS_INTERLACED( s->current_picture.mb_type[mba_xy] ) )
  4524. mba_xy += s->mb_stride;
  4525. if( MB_FIELD ){
  4526. mbb_xy = mb_xy - s->mb_stride;
  4527. if( !(mb_y&1)
  4528. && h->slice_table[mbb_xy] == h->slice_num
  4529. && IS_INTERLACED( s->current_picture.mb_type[mbb_xy] ) )
  4530. mbb_xy -= s->mb_stride;
  4531. }else
  4532. mbb_xy = mb_x + (mb_y-1)*s->mb_stride;
  4533. }else{
  4534. int mb_xy = h->mb_xy;
  4535. mba_xy = mb_xy - 1;
  4536. mbb_xy = mb_xy - (s->mb_stride << FIELD_PICTURE);
  4537. }
  4538. if( h->slice_table[mba_xy] == h->slice_num && !IS_SKIP( s->current_picture.mb_type[mba_xy] ))
  4539. ctx++;
  4540. if( h->slice_table[mbb_xy] == h->slice_num && !IS_SKIP( s->current_picture.mb_type[mbb_xy] ))
  4541. ctx++;
  4542. if( h->slice_type == FF_B_TYPE )
  4543. ctx += 13;
  4544. return get_cabac_noinline( &h->cabac, &h->cabac_state[11+ctx] );
  4545. }
  4546. static int decode_cabac_mb_intra4x4_pred_mode( H264Context *h, int pred_mode ) {
  4547. int mode = 0;
  4548. if( get_cabac( &h->cabac, &h->cabac_state[68] ) )
  4549. return pred_mode;
  4550. mode += 1 * get_cabac( &h->cabac, &h->cabac_state[69] );
  4551. mode += 2 * get_cabac( &h->cabac, &h->cabac_state[69] );
  4552. mode += 4 * get_cabac( &h->cabac, &h->cabac_state[69] );
  4553. if( mode >= pred_mode )
  4554. return mode + 1;
  4555. else
  4556. return mode;
  4557. }
  4558. static int decode_cabac_mb_chroma_pre_mode( H264Context *h) {
  4559. const int mba_xy = h->left_mb_xy[0];
  4560. const int mbb_xy = h->top_mb_xy;
  4561. int ctx = 0;
  4562. /* No need to test for IS_INTRA4x4 and IS_INTRA16x16, as we set chroma_pred_mode_table to 0 */
  4563. if( h->slice_table[mba_xy] == h->slice_num && h->chroma_pred_mode_table[mba_xy] != 0 )
  4564. ctx++;
  4565. if( h->slice_table[mbb_xy] == h->slice_num && h->chroma_pred_mode_table[mbb_xy] != 0 )
  4566. ctx++;
  4567. if( get_cabac_noinline( &h->cabac, &h->cabac_state[64+ctx] ) == 0 )
  4568. return 0;
  4569. if( get_cabac_noinline( &h->cabac, &h->cabac_state[64+3] ) == 0 )
  4570. return 1;
  4571. if( get_cabac_noinline( &h->cabac, &h->cabac_state[64+3] ) == 0 )
  4572. return 2;
  4573. else
  4574. return 3;
  4575. }
  4576. static int decode_cabac_mb_cbp_luma( H264Context *h) {
  4577. int cbp_b, cbp_a, ctx, cbp = 0;
  4578. cbp_a = h->slice_table[h->left_mb_xy[0]] == h->slice_num ? h->left_cbp : -1;
  4579. cbp_b = h->slice_table[h->top_mb_xy] == h->slice_num ? h->top_cbp : -1;
  4580. ctx = !(cbp_a & 0x02) + 2 * !(cbp_b & 0x04);
  4581. cbp |= get_cabac_noinline(&h->cabac, &h->cabac_state[73 + ctx]);
  4582. ctx = !(cbp & 0x01) + 2 * !(cbp_b & 0x08);
  4583. cbp |= get_cabac_noinline(&h->cabac, &h->cabac_state[73 + ctx]) << 1;
  4584. ctx = !(cbp_a & 0x08) + 2 * !(cbp & 0x01);
  4585. cbp |= get_cabac_noinline(&h->cabac, &h->cabac_state[73 + ctx]) << 2;
  4586. ctx = !(cbp & 0x04) + 2 * !(cbp & 0x02);
  4587. cbp |= get_cabac_noinline(&h->cabac, &h->cabac_state[73 + ctx]) << 3;
  4588. return cbp;
  4589. }
  4590. static int decode_cabac_mb_cbp_chroma( H264Context *h) {
  4591. int ctx;
  4592. int cbp_a, cbp_b;
  4593. cbp_a = (h->left_cbp>>4)&0x03;
  4594. cbp_b = (h-> top_cbp>>4)&0x03;
  4595. ctx = 0;
  4596. if( cbp_a > 0 ) ctx++;
  4597. if( cbp_b > 0 ) ctx += 2;
  4598. if( get_cabac_noinline( &h->cabac, &h->cabac_state[77 + ctx] ) == 0 )
  4599. return 0;
  4600. ctx = 4;
  4601. if( cbp_a == 2 ) ctx++;
  4602. if( cbp_b == 2 ) ctx += 2;
  4603. return 1 + get_cabac_noinline( &h->cabac, &h->cabac_state[77 + ctx] );
  4604. }
  4605. static int decode_cabac_mb_dqp( H264Context *h) {
  4606. int ctx = 0;
  4607. int val = 0;
  4608. if( h->last_qscale_diff != 0 )
  4609. ctx++;
  4610. while( get_cabac_noinline( &h->cabac, &h->cabac_state[60 + ctx] ) ) {
  4611. if( ctx < 2 )
  4612. ctx = 2;
  4613. else
  4614. ctx = 3;
  4615. val++;
  4616. if(val > 102) //prevent infinite loop
  4617. return INT_MIN;
  4618. }
  4619. if( val&0x01 )
  4620. return (val + 1)/2;
  4621. else
  4622. return -(val + 1)/2;
  4623. }
  4624. static int decode_cabac_p_mb_sub_type( H264Context *h ) {
  4625. if( get_cabac( &h->cabac, &h->cabac_state[21] ) )
  4626. return 0; /* 8x8 */
  4627. if( !get_cabac( &h->cabac, &h->cabac_state[22] ) )
  4628. return 1; /* 8x4 */
  4629. if( get_cabac( &h->cabac, &h->cabac_state[23] ) )
  4630. return 2; /* 4x8 */
  4631. return 3; /* 4x4 */
  4632. }
  4633. static int decode_cabac_b_mb_sub_type( H264Context *h ) {
  4634. int type;
  4635. if( !get_cabac( &h->cabac, &h->cabac_state[36] ) )
  4636. return 0; /* B_Direct_8x8 */
  4637. if( !get_cabac( &h->cabac, &h->cabac_state[37] ) )
  4638. return 1 + get_cabac( &h->cabac, &h->cabac_state[39] ); /* B_L0_8x8, B_L1_8x8 */
  4639. type = 3;
  4640. if( get_cabac( &h->cabac, &h->cabac_state[38] ) ) {
  4641. if( get_cabac( &h->cabac, &h->cabac_state[39] ) )
  4642. return 11 + get_cabac( &h->cabac, &h->cabac_state[39] ); /* B_L1_4x4, B_Bi_4x4 */
  4643. type += 4;
  4644. }
  4645. type += 2*get_cabac( &h->cabac, &h->cabac_state[39] );
  4646. type += get_cabac( &h->cabac, &h->cabac_state[39] );
  4647. return type;
  4648. }
  4649. static inline int decode_cabac_mb_transform_size( H264Context *h ) {
  4650. return get_cabac_noinline( &h->cabac, &h->cabac_state[399 + h->neighbor_transform_size] );
  4651. }
  4652. static int decode_cabac_mb_ref( H264Context *h, int list, int n ) {
  4653. int refa = h->ref_cache[list][scan8[n] - 1];
  4654. int refb = h->ref_cache[list][scan8[n] - 8];
  4655. int ref = 0;
  4656. int ctx = 0;
  4657. if( h->slice_type == FF_B_TYPE) {
  4658. if( refa > 0 && !h->direct_cache[scan8[n] - 1] )
  4659. ctx++;
  4660. if( refb > 0 && !h->direct_cache[scan8[n] - 8] )
  4661. ctx += 2;
  4662. } else {
  4663. if( refa > 0 )
  4664. ctx++;
  4665. if( refb > 0 )
  4666. ctx += 2;
  4667. }
  4668. while( get_cabac( &h->cabac, &h->cabac_state[54+ctx] ) ) {
  4669. ref++;
  4670. if( ctx < 4 )
  4671. ctx = 4;
  4672. else
  4673. ctx = 5;
  4674. if(ref >= 32 /*h->ref_list[list]*/){
  4675. av_log(h->s.avctx, AV_LOG_ERROR, "overflow in decode_cabac_mb_ref\n");
  4676. return 0; //FIXME we should return -1 and check the return everywhere
  4677. }
  4678. }
  4679. return ref;
  4680. }
  4681. static int decode_cabac_mb_mvd( H264Context *h, int list, int n, int l ) {
  4682. int amvd = abs( h->mvd_cache[list][scan8[n] - 1][l] ) +
  4683. abs( h->mvd_cache[list][scan8[n] - 8][l] );
  4684. int ctxbase = (l == 0) ? 40 : 47;
  4685. int ctx, mvd;
  4686. if( amvd < 3 )
  4687. ctx = 0;
  4688. else if( amvd > 32 )
  4689. ctx = 2;
  4690. else
  4691. ctx = 1;
  4692. if(!get_cabac(&h->cabac, &h->cabac_state[ctxbase+ctx]))
  4693. return 0;
  4694. mvd= 1;
  4695. ctx= 3;
  4696. while( mvd < 9 && get_cabac( &h->cabac, &h->cabac_state[ctxbase+ctx] ) ) {
  4697. mvd++;
  4698. if( ctx < 6 )
  4699. ctx++;
  4700. }
  4701. if( mvd >= 9 ) {
  4702. int k = 3;
  4703. while( get_cabac_bypass( &h->cabac ) ) {
  4704. mvd += 1 << k;
  4705. k++;
  4706. if(k>24){
  4707. av_log(h->s.avctx, AV_LOG_ERROR, "overflow in decode_cabac_mb_mvd\n");
  4708. return INT_MIN;
  4709. }
  4710. }
  4711. while( k-- ) {
  4712. if( get_cabac_bypass( &h->cabac ) )
  4713. mvd += 1 << k;
  4714. }
  4715. }
  4716. return get_cabac_bypass_sign( &h->cabac, -mvd );
  4717. }
  4718. static av_always_inline int get_cabac_cbf_ctx( H264Context *h, int cat, int idx, int is_dc ) {
  4719. int nza, nzb;
  4720. int ctx = 0;
  4721. if( is_dc ) {
  4722. if( cat == 0 ) {
  4723. nza = h->left_cbp&0x100;
  4724. nzb = h-> top_cbp&0x100;
  4725. } else {
  4726. nza = (h->left_cbp>>(6+idx))&0x01;
  4727. nzb = (h-> top_cbp>>(6+idx))&0x01;
  4728. }
  4729. } else {
  4730. if( cat == 4 ) {
  4731. nza = h->non_zero_count_cache[scan8[16+idx] - 1];
  4732. nzb = h->non_zero_count_cache[scan8[16+idx] - 8];
  4733. } else {
  4734. assert(cat == 1 || cat == 2);
  4735. nza = h->non_zero_count_cache[scan8[idx] - 1];
  4736. nzb = h->non_zero_count_cache[scan8[idx] - 8];
  4737. }
  4738. }
  4739. if( nza > 0 )
  4740. ctx++;
  4741. if( nzb > 0 )
  4742. ctx += 2;
  4743. return ctx + 4 * cat;
  4744. }
  4745. DECLARE_ASM_CONST(1, uint8_t, last_coeff_flag_offset_8x8[63]) = {
  4746. 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  4747. 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  4748. 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,
  4749. 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8
  4750. };
  4751. static av_always_inline void decode_cabac_residual_internal( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff, int is_dc ) {
  4752. static const int significant_coeff_flag_offset[2][6] = {
  4753. { 105+0, 105+15, 105+29, 105+44, 105+47, 402 },
  4754. { 277+0, 277+15, 277+29, 277+44, 277+47, 436 }
  4755. };
  4756. static const int last_coeff_flag_offset[2][6] = {
  4757. { 166+0, 166+15, 166+29, 166+44, 166+47, 417 },
  4758. { 338+0, 338+15, 338+29, 338+44, 338+47, 451 }
  4759. };
  4760. static const int coeff_abs_level_m1_offset[6] = {
  4761. 227+0, 227+10, 227+20, 227+30, 227+39, 426
  4762. };
  4763. static const uint8_t significant_coeff_flag_offset_8x8[2][63] = {
  4764. { 0, 1, 2, 3, 4, 5, 5, 4, 4, 3, 3, 4, 4, 4, 5, 5,
  4765. 4, 4, 4, 4, 3, 3, 6, 7, 7, 7, 8, 9,10, 9, 8, 7,
  4766. 7, 6,11,12,13,11, 6, 7, 8, 9,14,10, 9, 8, 6,11,
  4767. 12,13,11, 6, 9,14,10, 9,11,12,13,11,14,10,12 },
  4768. { 0, 1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 7, 7, 8, 4, 5,
  4769. 6, 9,10,10, 8,11,12,11, 9, 9,10,10, 8,11,12,11,
  4770. 9, 9,10,10, 8,11,12,11, 9, 9,10,10, 8,13,13, 9,
  4771. 9,10,10, 8,13,13, 9, 9,10,10,14,14,14,14,14 }
  4772. };
  4773. /* node ctx: 0..3: abslevel1 (with abslevelgt1 == 0).
  4774. * 4..7: abslevelgt1 + 3 (and abslevel1 doesn't matter).
  4775. * map node ctx => cabac ctx for level=1 */
  4776. static const uint8_t coeff_abs_level1_ctx[8] = { 1, 2, 3, 4, 0, 0, 0, 0 };
  4777. /* map node ctx => cabac ctx for level>1 */
  4778. static const uint8_t coeff_abs_levelgt1_ctx[8] = { 5, 5, 5, 5, 6, 7, 8, 9 };
  4779. static const uint8_t coeff_abs_level_transition[2][8] = {
  4780. /* update node ctx after decoding a level=1 */
  4781. { 1, 2, 3, 3, 4, 5, 6, 7 },
  4782. /* update node ctx after decoding a level>1 */
  4783. { 4, 4, 4, 4, 5, 6, 7, 7 }
  4784. };
  4785. int index[64];
  4786. int av_unused last;
  4787. int coeff_count = 0;
  4788. int node_ctx = 0;
  4789. uint8_t *significant_coeff_ctx_base;
  4790. uint8_t *last_coeff_ctx_base;
  4791. uint8_t *abs_level_m1_ctx_base;
  4792. #ifndef ARCH_X86
  4793. #define CABAC_ON_STACK
  4794. #endif
  4795. #ifdef CABAC_ON_STACK
  4796. #define CC &cc
  4797. CABACContext cc;
  4798. cc.range = h->cabac.range;
  4799. cc.low = h->cabac.low;
  4800. cc.bytestream= h->cabac.bytestream;
  4801. #else
  4802. #define CC &h->cabac
  4803. #endif
  4804. /* cat: 0-> DC 16x16 n = 0
  4805. * 1-> AC 16x16 n = luma4x4idx
  4806. * 2-> Luma4x4 n = luma4x4idx
  4807. * 3-> DC Chroma n = iCbCr
  4808. * 4-> AC Chroma n = 4 * iCbCr + chroma4x4idx
  4809. * 5-> Luma8x8 n = 4 * luma8x8idx
  4810. */
  4811. /* read coded block flag */
  4812. if( is_dc || cat != 5 ) {
  4813. if( get_cabac( CC, &h->cabac_state[85 + get_cabac_cbf_ctx( h, cat, n, is_dc ) ] ) == 0 ) {
  4814. if( !is_dc ) {
  4815. if( cat == 4 )
  4816. h->non_zero_count_cache[scan8[16+n]] = 0;
  4817. else
  4818. h->non_zero_count_cache[scan8[n]] = 0;
  4819. }
  4820. #ifdef CABAC_ON_STACK
  4821. h->cabac.range = cc.range ;
  4822. h->cabac.low = cc.low ;
  4823. h->cabac.bytestream= cc.bytestream;
  4824. #endif
  4825. return;
  4826. }
  4827. }
  4828. significant_coeff_ctx_base = h->cabac_state
  4829. + significant_coeff_flag_offset[MB_FIELD][cat];
  4830. last_coeff_ctx_base = h->cabac_state
  4831. + last_coeff_flag_offset[MB_FIELD][cat];
  4832. abs_level_m1_ctx_base = h->cabac_state
  4833. + coeff_abs_level_m1_offset[cat];
  4834. if( !is_dc && cat == 5 ) {
  4835. #define DECODE_SIGNIFICANCE( coefs, sig_off, last_off ) \
  4836. for(last= 0; last < coefs; last++) { \
  4837. uint8_t *sig_ctx = significant_coeff_ctx_base + sig_off; \
  4838. if( get_cabac( CC, sig_ctx )) { \
  4839. uint8_t *last_ctx = last_coeff_ctx_base + last_off; \
  4840. index[coeff_count++] = last; \
  4841. if( get_cabac( CC, last_ctx ) ) { \
  4842. last= max_coeff; \
  4843. break; \
  4844. } \
  4845. } \
  4846. }\
  4847. if( last == max_coeff -1 ) {\
  4848. index[coeff_count++] = last;\
  4849. }
  4850. const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD];
  4851. #if defined(ARCH_X86) && defined(HAVE_7REGS) && defined(HAVE_EBX_AVAILABLE) && !defined(BROKEN_RELOCATIONS)
  4852. coeff_count= decode_significance_8x8_x86(CC, significant_coeff_ctx_base, index, sig_off);
  4853. } else {
  4854. coeff_count= decode_significance_x86(CC, max_coeff, significant_coeff_ctx_base, index);
  4855. #else
  4856. DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] );
  4857. } else {
  4858. DECODE_SIGNIFICANCE( max_coeff - 1, last, last );
  4859. #endif
  4860. }
  4861. assert(coeff_count > 0);
  4862. if( is_dc ) {
  4863. if( cat == 0 )
  4864. h->cbp_table[h->mb_xy] |= 0x100;
  4865. else
  4866. h->cbp_table[h->mb_xy] |= 0x40 << n;
  4867. } else {
  4868. if( cat == 5 )
  4869. fill_rectangle(&h->non_zero_count_cache[scan8[n]], 2, 2, 8, coeff_count, 1);
  4870. else if( cat == 4 )
  4871. h->non_zero_count_cache[scan8[16+n]] = coeff_count;
  4872. else {
  4873. assert( cat == 1 || cat == 2 );
  4874. h->non_zero_count_cache[scan8[n]] = coeff_count;
  4875. }
  4876. }
  4877. while( coeff_count-- ) {
  4878. uint8_t *ctx = coeff_abs_level1_ctx[node_ctx] + abs_level_m1_ctx_base;
  4879. int j= scantable[index[coeff_count]];
  4880. if( get_cabac( CC, ctx ) == 0 ) {
  4881. node_ctx = coeff_abs_level_transition[0][node_ctx];
  4882. if( is_dc ) {
  4883. block[j] = get_cabac_bypass_sign( CC, -1);
  4884. }else{
  4885. block[j] = (get_cabac_bypass_sign( CC, -qmul[j]) + 32) >> 6;
  4886. }
  4887. } else {
  4888. int coeff_abs = 2;
  4889. ctx = coeff_abs_levelgt1_ctx[node_ctx] + abs_level_m1_ctx_base;
  4890. node_ctx = coeff_abs_level_transition[1][node_ctx];
  4891. while( coeff_abs < 15 && get_cabac( CC, ctx ) ) {
  4892. coeff_abs++;
  4893. }
  4894. if( coeff_abs >= 15 ) {
  4895. int j = 0;
  4896. while( get_cabac_bypass( CC ) ) {
  4897. j++;
  4898. }
  4899. coeff_abs=1;
  4900. while( j-- ) {
  4901. coeff_abs += coeff_abs + get_cabac_bypass( CC );
  4902. }
  4903. coeff_abs+= 14;
  4904. }
  4905. if( is_dc ) {
  4906. block[j] = get_cabac_bypass_sign( CC, -coeff_abs );
  4907. }else{
  4908. block[j] = (get_cabac_bypass_sign( CC, -coeff_abs ) * qmul[j] + 32) >> 6;
  4909. }
  4910. }
  4911. }
  4912. #ifdef CABAC_ON_STACK
  4913. h->cabac.range = cc.range ;
  4914. h->cabac.low = cc.low ;
  4915. h->cabac.bytestream= cc.bytestream;
  4916. #endif
  4917. }
  4918. #ifndef CONFIG_SMALL
  4919. static void decode_cabac_residual_dc( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) {
  4920. decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, 1);
  4921. }
  4922. static void decode_cabac_residual_nondc( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) {
  4923. decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, 0);
  4924. }
  4925. #endif
  4926. static void decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) {
  4927. #ifdef CONFIG_SMALL
  4928. decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, cat == 0 || cat == 3);
  4929. #else
  4930. if( cat == 0 || cat == 3 ) decode_cabac_residual_dc(h, block, cat, n, scantable, qmul, max_coeff);
  4931. else decode_cabac_residual_nondc(h, block, cat, n, scantable, qmul, max_coeff);
  4932. #endif
  4933. }
  4934. static inline void compute_mb_neighbors(H264Context *h)
  4935. {
  4936. MpegEncContext * const s = &h->s;
  4937. const int mb_xy = h->mb_xy;
  4938. h->top_mb_xy = mb_xy - s->mb_stride;
  4939. h->left_mb_xy[0] = mb_xy - 1;
  4940. if(FRAME_MBAFF){
  4941. const int pair_xy = s->mb_x + (s->mb_y & ~1)*s->mb_stride;
  4942. const int top_pair_xy = pair_xy - s->mb_stride;
  4943. const int top_mb_frame_flag = !IS_INTERLACED(s->current_picture.mb_type[top_pair_xy]);
  4944. const int left_mb_frame_flag = !IS_INTERLACED(s->current_picture.mb_type[pair_xy-1]);
  4945. const int curr_mb_frame_flag = !MB_FIELD;
  4946. const int bottom = (s->mb_y & 1);
  4947. if (bottom
  4948. ? !curr_mb_frame_flag // bottom macroblock
  4949. : (!curr_mb_frame_flag && !top_mb_frame_flag) // top macroblock
  4950. ) {
  4951. h->top_mb_xy -= s->mb_stride;
  4952. }
  4953. if (left_mb_frame_flag != curr_mb_frame_flag) {
  4954. h->left_mb_xy[0] = pair_xy - 1;
  4955. }
  4956. } else if (FIELD_PICTURE) {
  4957. h->top_mb_xy -= s->mb_stride;
  4958. }
  4959. return;
  4960. }
  4961. /**
  4962. * decodes a macroblock
  4963. * @returns 0 if ok, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed
  4964. */
  4965. static int decode_mb_cabac(H264Context *h) {
  4966. MpegEncContext * const s = &h->s;
  4967. int mb_xy;
  4968. int mb_type, partition_count, cbp = 0;
  4969. int dct8x8_allowed= h->pps.transform_8x8_mode;
  4970. mb_xy = h->mb_xy = s->mb_x + s->mb_y*s->mb_stride;
  4971. s->dsp.clear_blocks(h->mb); //FIXME avoid if already clear (move after skip handlong?)
  4972. tprintf(s->avctx, "pic:%d mb:%d/%d\n", h->frame_num, s->mb_x, s->mb_y);
  4973. if( h->slice_type != FF_I_TYPE && h->slice_type != FF_SI_TYPE ) {
  4974. int skip;
  4975. /* a skipped mb needs the aff flag from the following mb */
  4976. if( FRAME_MBAFF && s->mb_x==0 && (s->mb_y&1)==0 )
  4977. predict_field_decoding_flag(h);
  4978. if( FRAME_MBAFF && (s->mb_y&1)==1 && h->prev_mb_skipped )
  4979. skip = h->next_mb_skipped;
  4980. else
  4981. skip = decode_cabac_mb_skip( h, s->mb_x, s->mb_y );
  4982. /* read skip flags */
  4983. if( skip ) {
  4984. if( FRAME_MBAFF && (s->mb_y&1)==0 ){
  4985. s->current_picture.mb_type[mb_xy] = MB_TYPE_SKIP;
  4986. h->next_mb_skipped = decode_cabac_mb_skip( h, s->mb_x, s->mb_y+1 );
  4987. if(h->next_mb_skipped)
  4988. predict_field_decoding_flag(h);
  4989. else
  4990. h->mb_mbaff = h->mb_field_decoding_flag = decode_cabac_field_decoding_flag(h);
  4991. }
  4992. decode_mb_skip(h);
  4993. h->cbp_table[mb_xy] = 0;
  4994. h->chroma_pred_mode_table[mb_xy] = 0;
  4995. h->last_qscale_diff = 0;
  4996. return 0;
  4997. }
  4998. }
  4999. if(FRAME_MBAFF){
  5000. if( (s->mb_y&1) == 0 )
  5001. h->mb_mbaff =
  5002. h->mb_field_decoding_flag = decode_cabac_field_decoding_flag(h);
  5003. }else
  5004. h->mb_field_decoding_flag= (s->picture_structure!=PICT_FRAME);
  5005. h->prev_mb_skipped = 0;
  5006. compute_mb_neighbors(h);
  5007. if( ( mb_type = decode_cabac_mb_type( h ) ) < 0 ) {
  5008. av_log( h->s.avctx, AV_LOG_ERROR, "decode_cabac_mb_type failed\n" );
  5009. return -1;
  5010. }
  5011. if( h->slice_type == FF_B_TYPE ) {
  5012. if( mb_type < 23 ){
  5013. partition_count= b_mb_type_info[mb_type].partition_count;
  5014. mb_type= b_mb_type_info[mb_type].type;
  5015. }else{
  5016. mb_type -= 23;
  5017. goto decode_intra_mb;
  5018. }
  5019. } else if( h->slice_type == FF_P_TYPE ) {
  5020. if( mb_type < 5) {
  5021. partition_count= p_mb_type_info[mb_type].partition_count;
  5022. mb_type= p_mb_type_info[mb_type].type;
  5023. } else {
  5024. mb_type -= 5;
  5025. goto decode_intra_mb;
  5026. }
  5027. } else {
  5028. assert(h->slice_type == FF_I_TYPE);
  5029. decode_intra_mb:
  5030. partition_count = 0;
  5031. cbp= i_mb_type_info[mb_type].cbp;
  5032. h->intra16x16_pred_mode= i_mb_type_info[mb_type].pred_mode;
  5033. mb_type= i_mb_type_info[mb_type].type;
  5034. }
  5035. if(MB_FIELD)
  5036. mb_type |= MB_TYPE_INTERLACED;
  5037. h->slice_table[ mb_xy ]= h->slice_num;
  5038. if(IS_INTRA_PCM(mb_type)) {
  5039. const uint8_t *ptr;
  5040. unsigned int x, y;
  5041. // We assume these blocks are very rare so we do not optimize it.
  5042. // FIXME The two following lines get the bitstream position in the cabac
  5043. // decode, I think it should be done by a function in cabac.h (or cabac.c).
  5044. ptr= h->cabac.bytestream;
  5045. if(h->cabac.low&0x1) ptr--;
  5046. if(CABAC_BITS==16){
  5047. if(h->cabac.low&0x1FF) ptr--;
  5048. }
  5049. // The pixels are stored in the same order as levels in h->mb array.
  5050. for(y=0; y<16; y++){
  5051. const int index= 4*(y&3) + 32*((y>>2)&1) + 128*(y>>3);
  5052. for(x=0; x<16; x++){
  5053. tprintf(s->avctx, "LUMA ICPM LEVEL (%3d)\n", *ptr);
  5054. h->mb[index + (x&3) + 16*((x>>2)&1) + 64*(x>>3)]= *ptr++;
  5055. }
  5056. }
  5057. for(y=0; y<8; y++){
  5058. const int index= 256 + 4*(y&3) + 32*(y>>2);
  5059. for(x=0; x<8; x++){
  5060. tprintf(s->avctx, "CHROMA U ICPM LEVEL (%3d)\n", *ptr);
  5061. h->mb[index + (x&3) + 16*(x>>2)]= *ptr++;
  5062. }
  5063. }
  5064. for(y=0; y<8; y++){
  5065. const int index= 256 + 64 + 4*(y&3) + 32*(y>>2);
  5066. for(x=0; x<8; x++){
  5067. tprintf(s->avctx, "CHROMA V ICPM LEVEL (%3d)\n", *ptr);
  5068. h->mb[index + (x&3) + 16*(x>>2)]= *ptr++;
  5069. }
  5070. }
  5071. ff_init_cabac_decoder(&h->cabac, ptr, h->cabac.bytestream_end - ptr);
  5072. // All blocks are present
  5073. h->cbp_table[mb_xy] = 0x1ef;
  5074. h->chroma_pred_mode_table[mb_xy] = 0;
  5075. // In deblocking, the quantizer is 0
  5076. s->current_picture.qscale_table[mb_xy]= 0;
  5077. h->chroma_qp[0] = get_chroma_qp(h, 0, 0);
  5078. h->chroma_qp[1] = get_chroma_qp(h, 1, 0);
  5079. // All coeffs are present
  5080. memset(h->non_zero_count[mb_xy], 16, 16);
  5081. s->current_picture.mb_type[mb_xy]= mb_type;
  5082. return 0;
  5083. }
  5084. if(MB_MBAFF){
  5085. h->ref_count[0] <<= 1;
  5086. h->ref_count[1] <<= 1;
  5087. }
  5088. fill_caches(h, mb_type, 0);
  5089. if( IS_INTRA( mb_type ) ) {
  5090. int i, pred_mode;
  5091. if( IS_INTRA4x4( mb_type ) ) {
  5092. if( dct8x8_allowed && decode_cabac_mb_transform_size( h ) ) {
  5093. mb_type |= MB_TYPE_8x8DCT;
  5094. for( i = 0; i < 16; i+=4 ) {
  5095. int pred = pred_intra_mode( h, i );
  5096. int mode = decode_cabac_mb_intra4x4_pred_mode( h, pred );
  5097. fill_rectangle( &h->intra4x4_pred_mode_cache[ scan8[i] ], 2, 2, 8, mode, 1 );
  5098. }
  5099. } else {
  5100. for( i = 0; i < 16; i++ ) {
  5101. int pred = pred_intra_mode( h, i );
  5102. h->intra4x4_pred_mode_cache[ scan8[i] ] = decode_cabac_mb_intra4x4_pred_mode( h, pred );
  5103. //av_log( s->avctx, AV_LOG_ERROR, "i4x4 pred=%d mode=%d\n", pred, h->intra4x4_pred_mode_cache[ scan8[i] ] );
  5104. }
  5105. }
  5106. write_back_intra_pred_mode(h);
  5107. if( check_intra4x4_pred_mode(h) < 0 ) return -1;
  5108. } else {
  5109. h->intra16x16_pred_mode= check_intra_pred_mode( h, h->intra16x16_pred_mode );
  5110. if( h->intra16x16_pred_mode < 0 ) return -1;
  5111. }
  5112. h->chroma_pred_mode_table[mb_xy] =
  5113. pred_mode = decode_cabac_mb_chroma_pre_mode( h );
  5114. pred_mode= check_intra_pred_mode( h, pred_mode );
  5115. if( pred_mode < 0 ) return -1;
  5116. h->chroma_pred_mode= pred_mode;
  5117. } else if( partition_count == 4 ) {
  5118. int i, j, sub_partition_count[4], list, ref[2][4];
  5119. if( h->slice_type == FF_B_TYPE ) {
  5120. for( i = 0; i < 4; i++ ) {
  5121. h->sub_mb_type[i] = decode_cabac_b_mb_sub_type( h );
  5122. sub_partition_count[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
  5123. h->sub_mb_type[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].type;
  5124. }
  5125. if( IS_DIRECT(h->sub_mb_type[0] | h->sub_mb_type[1] |
  5126. h->sub_mb_type[2] | h->sub_mb_type[3]) ) {
  5127. pred_direct_motion(h, &mb_type);
  5128. h->ref_cache[0][scan8[4]] =
  5129. h->ref_cache[1][scan8[4]] =
  5130. h->ref_cache[0][scan8[12]] =
  5131. h->ref_cache[1][scan8[12]] = PART_NOT_AVAILABLE;
  5132. if( h->ref_count[0] > 1 || h->ref_count[1] > 1 ) {
  5133. for( i = 0; i < 4; i++ )
  5134. if( IS_DIRECT(h->sub_mb_type[i]) )
  5135. fill_rectangle( &h->direct_cache[scan8[4*i]], 2, 2, 8, 1, 1 );
  5136. }
  5137. }
  5138. } else {
  5139. for( i = 0; i < 4; i++ ) {
  5140. h->sub_mb_type[i] = decode_cabac_p_mb_sub_type( h );
  5141. sub_partition_count[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
  5142. h->sub_mb_type[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].type;
  5143. }
  5144. }
  5145. for( list = 0; list < h->list_count; list++ ) {
  5146. for( i = 0; i < 4; i++ ) {
  5147. if(IS_DIRECT(h->sub_mb_type[i])) continue;
  5148. if(IS_DIR(h->sub_mb_type[i], 0, list)){
  5149. if( h->ref_count[list] > 1 )
  5150. ref[list][i] = decode_cabac_mb_ref( h, list, 4*i );
  5151. else
  5152. ref[list][i] = 0;
  5153. } else {
  5154. ref[list][i] = -1;
  5155. }
  5156. h->ref_cache[list][ scan8[4*i]+1 ]=
  5157. h->ref_cache[list][ scan8[4*i]+8 ]=h->ref_cache[list][ scan8[4*i]+9 ]= ref[list][i];
  5158. }
  5159. }
  5160. if(dct8x8_allowed)
  5161. dct8x8_allowed = get_dct8x8_allowed(h);
  5162. for(list=0; list<h->list_count; list++){
  5163. for(i=0; i<4; i++){
  5164. h->ref_cache[list][ scan8[4*i] ]=h->ref_cache[list][ scan8[4*i]+1 ];
  5165. if(IS_DIRECT(h->sub_mb_type[i])){
  5166. fill_rectangle(h->mvd_cache[list][scan8[4*i]], 2, 2, 8, 0, 4);
  5167. continue;
  5168. }
  5169. if(IS_DIR(h->sub_mb_type[i], 0, list) && !IS_DIRECT(h->sub_mb_type[i])){
  5170. const int sub_mb_type= h->sub_mb_type[i];
  5171. const int block_width= (sub_mb_type & (MB_TYPE_16x16|MB_TYPE_16x8)) ? 2 : 1;
  5172. for(j=0; j<sub_partition_count[i]; j++){
  5173. int mpx, mpy;
  5174. int mx, my;
  5175. const int index= 4*i + block_width*j;
  5176. int16_t (* mv_cache)[2]= &h->mv_cache[list][ scan8[index] ];
  5177. int16_t (* mvd_cache)[2]= &h->mvd_cache[list][ scan8[index] ];
  5178. pred_motion(h, index, block_width, list, h->ref_cache[list][ scan8[index] ], &mpx, &mpy);
  5179. mx = mpx + decode_cabac_mb_mvd( h, list, index, 0 );
  5180. my = mpy + decode_cabac_mb_mvd( h, list, index, 1 );
  5181. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  5182. if(IS_SUB_8X8(sub_mb_type)){
  5183. mv_cache[ 1 ][0]=
  5184. mv_cache[ 8 ][0]= mv_cache[ 9 ][0]= mx;
  5185. mv_cache[ 1 ][1]=
  5186. mv_cache[ 8 ][1]= mv_cache[ 9 ][1]= my;
  5187. mvd_cache[ 1 ][0]=
  5188. mvd_cache[ 8 ][0]= mvd_cache[ 9 ][0]= mx - mpx;
  5189. mvd_cache[ 1 ][1]=
  5190. mvd_cache[ 8 ][1]= mvd_cache[ 9 ][1]= my - mpy;
  5191. }else if(IS_SUB_8X4(sub_mb_type)){
  5192. mv_cache[ 1 ][0]= mx;
  5193. mv_cache[ 1 ][1]= my;
  5194. mvd_cache[ 1 ][0]= mx - mpx;
  5195. mvd_cache[ 1 ][1]= my - mpy;
  5196. }else if(IS_SUB_4X8(sub_mb_type)){
  5197. mv_cache[ 8 ][0]= mx;
  5198. mv_cache[ 8 ][1]= my;
  5199. mvd_cache[ 8 ][0]= mx - mpx;
  5200. mvd_cache[ 8 ][1]= my - mpy;
  5201. }
  5202. mv_cache[ 0 ][0]= mx;
  5203. mv_cache[ 0 ][1]= my;
  5204. mvd_cache[ 0 ][0]= mx - mpx;
  5205. mvd_cache[ 0 ][1]= my - mpy;
  5206. }
  5207. }else{
  5208. uint32_t *p= (uint32_t *)&h->mv_cache[list][ scan8[4*i] ][0];
  5209. uint32_t *pd= (uint32_t *)&h->mvd_cache[list][ scan8[4*i] ][0];
  5210. p[0] = p[1] = p[8] = p[9] = 0;
  5211. pd[0]= pd[1]= pd[8]= pd[9]= 0;
  5212. }
  5213. }
  5214. }
  5215. } else if( IS_DIRECT(mb_type) ) {
  5216. pred_direct_motion(h, &mb_type);
  5217. fill_rectangle(h->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 4);
  5218. fill_rectangle(h->mvd_cache[1][scan8[0]], 4, 4, 8, 0, 4);
  5219. dct8x8_allowed &= h->sps.direct_8x8_inference_flag;
  5220. } else {
  5221. int list, mx, my, i, mpx, mpy;
  5222. if(IS_16X16(mb_type)){
  5223. for(list=0; list<h->list_count; list++){
  5224. if(IS_DIR(mb_type, 0, list)){
  5225. const int ref = h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 0 ) : 0;
  5226. fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, ref, 1);
  5227. }else
  5228. fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, (uint8_t)LIST_NOT_USED, 1); //FIXME factorize and the other fill_rect below too
  5229. }
  5230. for(list=0; list<h->list_count; list++){
  5231. if(IS_DIR(mb_type, 0, list)){
  5232. pred_motion(h, 0, 4, list, h->ref_cache[list][ scan8[0] ], &mpx, &mpy);
  5233. mx = mpx + decode_cabac_mb_mvd( h, list, 0, 0 );
  5234. my = mpy + decode_cabac_mb_mvd( h, list, 0, 1 );
  5235. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  5236. fill_rectangle(h->mvd_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx-mpx,my-mpy), 4);
  5237. fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx,my), 4);
  5238. }else
  5239. fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, 0, 4);
  5240. }
  5241. }
  5242. else if(IS_16X8(mb_type)){
  5243. for(list=0; list<h->list_count; list++){
  5244. for(i=0; i<2; i++){
  5245. if(IS_DIR(mb_type, i, list)){
  5246. const int ref= h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 8*i ) : 0;
  5247. fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, ref, 1);
  5248. }else
  5249. fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, (LIST_NOT_USED&0xFF), 1);
  5250. }
  5251. }
  5252. for(list=0; list<h->list_count; list++){
  5253. for(i=0; i<2; i++){
  5254. if(IS_DIR(mb_type, i, list)){
  5255. pred_16x8_motion(h, 8*i, list, h->ref_cache[list][scan8[0] + 16*i], &mpx, &mpy);
  5256. mx = mpx + decode_cabac_mb_mvd( h, list, 8*i, 0 );
  5257. my = mpy + decode_cabac_mb_mvd( h, list, 8*i, 1 );
  5258. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  5259. fill_rectangle(h->mvd_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx-mpx,my-mpy), 4);
  5260. fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx,my), 4);
  5261. }else{
  5262. fill_rectangle(h->mvd_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4);
  5263. fill_rectangle(h-> mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4);
  5264. }
  5265. }
  5266. }
  5267. }else{
  5268. assert(IS_8X16(mb_type));
  5269. for(list=0; list<h->list_count; list++){
  5270. for(i=0; i<2; i++){
  5271. if(IS_DIR(mb_type, i, list)){ //FIXME optimize
  5272. const int ref= h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 4*i ) : 0;
  5273. fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, ref, 1);
  5274. }else
  5275. fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, (LIST_NOT_USED&0xFF), 1);
  5276. }
  5277. }
  5278. for(list=0; list<h->list_count; list++){
  5279. for(i=0; i<2; i++){
  5280. if(IS_DIR(mb_type, i, list)){
  5281. pred_8x16_motion(h, i*4, list, h->ref_cache[list][ scan8[0] + 2*i ], &mpx, &mpy);
  5282. mx = mpx + decode_cabac_mb_mvd( h, list, 4*i, 0 );
  5283. my = mpy + decode_cabac_mb_mvd( h, list, 4*i, 1 );
  5284. tprintf(s->avctx, "final mv:%d %d\n", mx, my);
  5285. fill_rectangle(h->mvd_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx-mpx,my-mpy), 4);
  5286. fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx,my), 4);
  5287. }else{
  5288. fill_rectangle(h->mvd_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4);
  5289. fill_rectangle(h-> mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4);
  5290. }
  5291. }
  5292. }
  5293. }
  5294. }
  5295. if( IS_INTER( mb_type ) ) {
  5296. h->chroma_pred_mode_table[mb_xy] = 0;
  5297. write_back_motion( h, mb_type );
  5298. }
  5299. if( !IS_INTRA16x16( mb_type ) ) {
  5300. cbp = decode_cabac_mb_cbp_luma( h );
  5301. cbp |= decode_cabac_mb_cbp_chroma( h ) << 4;
  5302. }
  5303. h->cbp_table[mb_xy] = h->cbp = cbp;
  5304. if( dct8x8_allowed && (cbp&15) && !IS_INTRA( mb_type ) ) {
  5305. if( decode_cabac_mb_transform_size( h ) )
  5306. mb_type |= MB_TYPE_8x8DCT;
  5307. }
  5308. s->current_picture.mb_type[mb_xy]= mb_type;
  5309. if( cbp || IS_INTRA16x16( mb_type ) ) {
  5310. const uint8_t *scan, *scan8x8, *dc_scan;
  5311. const uint32_t *qmul;
  5312. int dqp;
  5313. if(IS_INTERLACED(mb_type)){
  5314. scan8x8= s->qscale ? h->field_scan8x8 : h->field_scan8x8_q0;
  5315. scan= s->qscale ? h->field_scan : h->field_scan_q0;
  5316. dc_scan= luma_dc_field_scan;
  5317. }else{
  5318. scan8x8= s->qscale ? h->zigzag_scan8x8 : h->zigzag_scan8x8_q0;
  5319. scan= s->qscale ? h->zigzag_scan : h->zigzag_scan_q0;
  5320. dc_scan= luma_dc_zigzag_scan;
  5321. }
  5322. h->last_qscale_diff = dqp = decode_cabac_mb_dqp( h );
  5323. if( dqp == INT_MIN ){
  5324. av_log(h->s.avctx, AV_LOG_ERROR, "cabac decode of qscale diff failed at %d %d\n", s->mb_x, s->mb_y);
  5325. return -1;
  5326. }
  5327. s->qscale += dqp;
  5328. if(((unsigned)s->qscale) > 51){
  5329. if(s->qscale<0) s->qscale+= 52;
  5330. else s->qscale-= 52;
  5331. }
  5332. h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
  5333. h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
  5334. if( IS_INTRA16x16( mb_type ) ) {
  5335. int i;
  5336. //av_log( s->avctx, AV_LOG_ERROR, "INTRA16x16 DC\n" );
  5337. decode_cabac_residual( h, h->mb, 0, 0, dc_scan, NULL, 16);
  5338. if( cbp&15 ) {
  5339. qmul = h->dequant4_coeff[0][s->qscale];
  5340. for( i = 0; i < 16; i++ ) {
  5341. //av_log( s->avctx, AV_LOG_ERROR, "INTRA16x16 AC:%d\n", i );
  5342. decode_cabac_residual(h, h->mb + 16*i, 1, i, scan + 1, qmul, 15);
  5343. }
  5344. } else {
  5345. fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1);
  5346. }
  5347. } else {
  5348. int i8x8, i4x4;
  5349. for( i8x8 = 0; i8x8 < 4; i8x8++ ) {
  5350. if( cbp & (1<<i8x8) ) {
  5351. if( IS_8x8DCT(mb_type) ) {
  5352. decode_cabac_residual(h, h->mb + 64*i8x8, 5, 4*i8x8,
  5353. scan8x8, h->dequant8_coeff[IS_INTRA( mb_type ) ? 0:1][s->qscale], 64);
  5354. } else {
  5355. qmul = h->dequant4_coeff[IS_INTRA( mb_type ) ? 0:3][s->qscale];
  5356. for( i4x4 = 0; i4x4 < 4; i4x4++ ) {
  5357. const int index = 4*i8x8 + i4x4;
  5358. //av_log( s->avctx, AV_LOG_ERROR, "Luma4x4: %d\n", index );
  5359. //START_TIMER
  5360. decode_cabac_residual(h, h->mb + 16*index, 2, index, scan, qmul, 16);
  5361. //STOP_TIMER("decode_residual")
  5362. }
  5363. }
  5364. } else {
  5365. uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ];
  5366. nnz[0] = nnz[1] = nnz[8] = nnz[9] = 0;
  5367. }
  5368. }
  5369. }
  5370. if( cbp&0x30 ){
  5371. int c;
  5372. for( c = 0; c < 2; c++ ) {
  5373. //av_log( s->avctx, AV_LOG_ERROR, "INTRA C%d-DC\n",c );
  5374. decode_cabac_residual(h, h->mb + 256 + 16*4*c, 3, c, chroma_dc_scan, NULL, 4);
  5375. }
  5376. }
  5377. if( cbp&0x20 ) {
  5378. int c, i;
  5379. for( c = 0; c < 2; c++ ) {
  5380. qmul = h->dequant4_coeff[c+1+(IS_INTRA( mb_type ) ? 0:3)][h->chroma_qp[c]];
  5381. for( i = 0; i < 4; i++ ) {
  5382. const int index = 16 + 4 * c + i;
  5383. //av_log( s->avctx, AV_LOG_ERROR, "INTRA C%d-AC %d\n",c, index - 16 );
  5384. decode_cabac_residual(h, h->mb + 16*index, 4, index - 16, scan + 1, qmul, 15);
  5385. }
  5386. }
  5387. } else {
  5388. uint8_t * const nnz= &h->non_zero_count_cache[0];
  5389. nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
  5390. nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
  5391. }
  5392. } else {
  5393. uint8_t * const nnz= &h->non_zero_count_cache[0];
  5394. fill_rectangle(&nnz[scan8[0]], 4, 4, 8, 0, 1);
  5395. nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
  5396. nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
  5397. h->last_qscale_diff = 0;
  5398. }
  5399. s->current_picture.qscale_table[mb_xy]= s->qscale;
  5400. write_back_non_zero_count(h);
  5401. if(MB_MBAFF){
  5402. h->ref_count[0] >>= 1;
  5403. h->ref_count[1] >>= 1;
  5404. }
  5405. return 0;
  5406. }
  5407. static void filter_mb_edgev( H264Context *h, uint8_t *pix, int stride, int16_t bS[4], int qp ) {
  5408. int i, d;
  5409. const int index_a = qp + h->slice_alpha_c0_offset;
  5410. const int alpha = (alpha_table+52)[index_a];
  5411. const int beta = (beta_table+52)[qp + h->slice_beta_offset];
  5412. if( bS[0] < 4 ) {
  5413. int8_t tc[4];
  5414. for(i=0; i<4; i++)
  5415. tc[i] = bS[i] ? (tc0_table+52)[index_a][bS[i] - 1] : -1;
  5416. h->s.dsp.h264_h_loop_filter_luma(pix, stride, alpha, beta, tc);
  5417. } else {
  5418. /* 16px edge length, because bS=4 is triggered by being at
  5419. * the edge of an intra MB, so all 4 bS are the same */
  5420. for( d = 0; d < 16; d++ ) {
  5421. const int p0 = pix[-1];
  5422. const int p1 = pix[-2];
  5423. const int p2 = pix[-3];
  5424. const int q0 = pix[0];
  5425. const int q1 = pix[1];
  5426. const int q2 = pix[2];
  5427. if( FFABS( p0 - q0 ) < alpha &&
  5428. FFABS( p1 - p0 ) < beta &&
  5429. FFABS( q1 - q0 ) < beta ) {
  5430. if(FFABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){
  5431. if( FFABS( p2 - p0 ) < beta)
  5432. {
  5433. const int p3 = pix[-4];
  5434. /* p0', p1', p2' */
  5435. pix[-1] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3;
  5436. pix[-2] = ( p2 + p1 + p0 + q0 + 2 ) >> 2;
  5437. pix[-3] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3;
  5438. } else {
  5439. /* p0' */
  5440. pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
  5441. }
  5442. if( FFABS( q2 - q0 ) < beta)
  5443. {
  5444. const int q3 = pix[3];
  5445. /* q0', q1', q2' */
  5446. pix[0] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3;
  5447. pix[1] = ( p0 + q0 + q1 + q2 + 2 ) >> 2;
  5448. pix[2] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3;
  5449. } else {
  5450. /* q0' */
  5451. pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
  5452. }
  5453. }else{
  5454. /* p0', q0' */
  5455. pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
  5456. pix[ 0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
  5457. }
  5458. tprintf(h->s.avctx, "filter_mb_edgev i:%d d:%d\n# bS:4 -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x]\n", i, d, p2, p1, p0, q0, q1, q2, pix[-2], pix[-1], pix[0], pix[1]);
  5459. }
  5460. pix += stride;
  5461. }
  5462. }
  5463. }
  5464. static void filter_mb_edgecv( H264Context *h, uint8_t *pix, int stride, int16_t bS[4], int qp ) {
  5465. int i;
  5466. const int index_a = qp + h->slice_alpha_c0_offset;
  5467. const int alpha = (alpha_table+52)[index_a];
  5468. const int beta = (beta_table+52)[qp + h->slice_beta_offset];
  5469. if( bS[0] < 4 ) {
  5470. int8_t tc[4];
  5471. for(i=0; i<4; i++)
  5472. tc[i] = bS[i] ? (tc0_table+52)[index_a][bS[i] - 1] + 1 : 0;
  5473. h->s.dsp.h264_h_loop_filter_chroma(pix, stride, alpha, beta, tc);
  5474. } else {
  5475. h->s.dsp.h264_h_loop_filter_chroma_intra(pix, stride, alpha, beta);
  5476. }
  5477. }
  5478. static void filter_mb_mbaff_edgev( H264Context *h, uint8_t *pix, int stride, int16_t bS[8], int qp[2] ) {
  5479. int i;
  5480. for( i = 0; i < 16; i++, pix += stride) {
  5481. int index_a;
  5482. int alpha;
  5483. int beta;
  5484. int qp_index;
  5485. int bS_index = (i >> 1);
  5486. if (!MB_FIELD) {
  5487. bS_index &= ~1;
  5488. bS_index |= (i & 1);
  5489. }
  5490. if( bS[bS_index] == 0 ) {
  5491. continue;
  5492. }
  5493. qp_index = MB_FIELD ? (i >> 3) : (i & 1);
  5494. index_a = qp[qp_index] + h->slice_alpha_c0_offset;
  5495. alpha = (alpha_table+52)[index_a];
  5496. beta = (beta_table+52)[qp[qp_index] + h->slice_beta_offset];
  5497. if( bS[bS_index] < 4 ) {
  5498. const int tc0 = (tc0_table+52)[index_a][bS[bS_index] - 1];
  5499. const int p0 = pix[-1];
  5500. const int p1 = pix[-2];
  5501. const int p2 = pix[-3];
  5502. const int q0 = pix[0];
  5503. const int q1 = pix[1];
  5504. const int q2 = pix[2];
  5505. if( FFABS( p0 - q0 ) < alpha &&
  5506. FFABS( p1 - p0 ) < beta &&
  5507. FFABS( q1 - q0 ) < beta ) {
  5508. int tc = tc0;
  5509. int i_delta;
  5510. if( FFABS( p2 - p0 ) < beta ) {
  5511. pix[-2] = p1 + av_clip( ( p2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( p1 << 1 ) ) >> 1, -tc0, tc0 );
  5512. tc++;
  5513. }
  5514. if( FFABS( q2 - q0 ) < beta ) {
  5515. pix[1] = q1 + av_clip( ( q2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( q1 << 1 ) ) >> 1, -tc0, tc0 );
  5516. tc++;
  5517. }
  5518. i_delta = av_clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
  5519. pix[-1] = av_clip_uint8( p0 + i_delta ); /* p0' */
  5520. pix[0] = av_clip_uint8( q0 - i_delta ); /* q0' */
  5521. tprintf(h->s.avctx, "filter_mb_mbaff_edgev i:%d, qp:%d, indexA:%d, alpha:%d, beta:%d, tc:%d\n# bS:%d -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x]\n", i, qp[qp_index], index_a, alpha, beta, tc, bS[bS_index], pix[-3], p1, p0, q0, q1, pix[2], p1, pix[-1], pix[0], q1);
  5522. }
  5523. }else{
  5524. const int p0 = pix[-1];
  5525. const int p1 = pix[-2];
  5526. const int p2 = pix[-3];
  5527. const int q0 = pix[0];
  5528. const int q1 = pix[1];
  5529. const int q2 = pix[2];
  5530. if( FFABS( p0 - q0 ) < alpha &&
  5531. FFABS( p1 - p0 ) < beta &&
  5532. FFABS( q1 - q0 ) < beta ) {
  5533. if(FFABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){
  5534. if( FFABS( p2 - p0 ) < beta)
  5535. {
  5536. const int p3 = pix[-4];
  5537. /* p0', p1', p2' */
  5538. pix[-1] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3;
  5539. pix[-2] = ( p2 + p1 + p0 + q0 + 2 ) >> 2;
  5540. pix[-3] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3;
  5541. } else {
  5542. /* p0' */
  5543. pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
  5544. }
  5545. if( FFABS( q2 - q0 ) < beta)
  5546. {
  5547. const int q3 = pix[3];
  5548. /* q0', q1', q2' */
  5549. pix[0] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3;
  5550. pix[1] = ( p0 + q0 + q1 + q2 + 2 ) >> 2;
  5551. pix[2] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3;
  5552. } else {
  5553. /* q0' */
  5554. pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
  5555. }
  5556. }else{
  5557. /* p0', q0' */
  5558. pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
  5559. pix[ 0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
  5560. }
  5561. tprintf(h->s.avctx, "filter_mb_mbaff_edgev i:%d, qp:%d, indexA:%d, alpha:%d, beta:%d\n# bS:4 -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x, %02x, %02x]\n", i, qp[qp_index], index_a, alpha, beta, p2, p1, p0, q0, q1, q2, pix[-3], pix[-2], pix[-1], pix[0], pix[1], pix[2]);
  5562. }
  5563. }
  5564. }
  5565. }
  5566. static void filter_mb_mbaff_edgecv( H264Context *h, uint8_t *pix, int stride, int16_t bS[8], int qp[2] ) {
  5567. int i;
  5568. for( i = 0; i < 8; i++, pix += stride) {
  5569. int index_a;
  5570. int alpha;
  5571. int beta;
  5572. int qp_index;
  5573. int bS_index = i;
  5574. if( bS[bS_index] == 0 ) {
  5575. continue;
  5576. }
  5577. qp_index = MB_FIELD ? (i >> 2) : (i & 1);
  5578. index_a = qp[qp_index] + h->slice_alpha_c0_offset;
  5579. alpha = (alpha_table+52)[index_a];
  5580. beta = (beta_table+52)[qp[qp_index] + h->slice_beta_offset];
  5581. if( bS[bS_index] < 4 ) {
  5582. const int tc = (tc0_table+52)[index_a][bS[bS_index] - 1] + 1;
  5583. const int p0 = pix[-1];
  5584. const int p1 = pix[-2];
  5585. const int q0 = pix[0];
  5586. const int q1 = pix[1];
  5587. if( FFABS( p0 - q0 ) < alpha &&
  5588. FFABS( p1 - p0 ) < beta &&
  5589. FFABS( q1 - q0 ) < beta ) {
  5590. const int i_delta = av_clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
  5591. pix[-1] = av_clip_uint8( p0 + i_delta ); /* p0' */
  5592. pix[0] = av_clip_uint8( q0 - i_delta ); /* q0' */
  5593. tprintf(h->s.avctx, "filter_mb_mbaff_edgecv i:%d, qp:%d, indexA:%d, alpha:%d, beta:%d, tc:%d\n# bS:%d -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x]\n", i, qp[qp_index], index_a, alpha, beta, tc, bS[bS_index], pix[-3], p1, p0, q0, q1, pix[2], p1, pix[-1], pix[0], q1);
  5594. }
  5595. }else{
  5596. const int p0 = pix[-1];
  5597. const int p1 = pix[-2];
  5598. const int q0 = pix[0];
  5599. const int q1 = pix[1];
  5600. if( FFABS( p0 - q0 ) < alpha &&
  5601. FFABS( p1 - p0 ) < beta &&
  5602. FFABS( q1 - q0 ) < beta ) {
  5603. pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2; /* p0' */
  5604. pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2; /* q0' */
  5605. tprintf(h->s.avctx, "filter_mb_mbaff_edgecv i:%d\n# bS:4 -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x, %02x, %02x]\n", i, pix[-3], p1, p0, q0, q1, pix[2], pix[-3], pix[-2], pix[-1], pix[0], pix[1], pix[2]);
  5606. }
  5607. }
  5608. }
  5609. }
  5610. static void filter_mb_edgeh( H264Context *h, uint8_t *pix, int stride, int16_t bS[4], int qp ) {
  5611. int i, d;
  5612. const int index_a = qp + h->slice_alpha_c0_offset;
  5613. const int alpha = (alpha_table+52)[index_a];
  5614. const int beta = (beta_table+52)[qp + h->slice_beta_offset];
  5615. const int pix_next = stride;
  5616. if( bS[0] < 4 ) {
  5617. int8_t tc[4];
  5618. for(i=0; i<4; i++)
  5619. tc[i] = bS[i] ? (tc0_table+52)[index_a][bS[i] - 1] : -1;
  5620. h->s.dsp.h264_v_loop_filter_luma(pix, stride, alpha, beta, tc);
  5621. } else {
  5622. /* 16px edge length, see filter_mb_edgev */
  5623. for( d = 0; d < 16; d++ ) {
  5624. const int p0 = pix[-1*pix_next];
  5625. const int p1 = pix[-2*pix_next];
  5626. const int p2 = pix[-3*pix_next];
  5627. const int q0 = pix[0];
  5628. const int q1 = pix[1*pix_next];
  5629. const int q2 = pix[2*pix_next];
  5630. if( FFABS( p0 - q0 ) < alpha &&
  5631. FFABS( p1 - p0 ) < beta &&
  5632. FFABS( q1 - q0 ) < beta ) {
  5633. const int p3 = pix[-4*pix_next];
  5634. const int q3 = pix[ 3*pix_next];
  5635. if(FFABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){
  5636. if( FFABS( p2 - p0 ) < beta) {
  5637. /* p0', p1', p2' */
  5638. pix[-1*pix_next] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3;
  5639. pix[-2*pix_next] = ( p2 + p1 + p0 + q0 + 2 ) >> 2;
  5640. pix[-3*pix_next] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3;
  5641. } else {
  5642. /* p0' */
  5643. pix[-1*pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
  5644. }
  5645. if( FFABS( q2 - q0 ) < beta) {
  5646. /* q0', q1', q2' */
  5647. pix[0*pix_next] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3;
  5648. pix[1*pix_next] = ( p0 + q0 + q1 + q2 + 2 ) >> 2;
  5649. pix[2*pix_next] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3;
  5650. } else {
  5651. /* q0' */
  5652. pix[0*pix_next] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
  5653. }
  5654. }else{
  5655. /* p0', q0' */
  5656. pix[-1*pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
  5657. pix[ 0*pix_next] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
  5658. }
  5659. tprintf(h->s.avctx, "filter_mb_edgeh i:%d d:%d, qp:%d, indexA:%d, alpha:%d, beta:%d\n# bS:%d -> [%02x, %02x, %02x, %02x, %02x, %02x] =>[%02x, %02x, %02x, %02x]\n", i, d, qp, index_a, alpha, beta, bS[i], p2, p1, p0, q0, q1, q2, pix[-2*pix_next], pix[-pix_next], pix[0], pix[pix_next]);
  5660. }
  5661. pix++;
  5662. }
  5663. }
  5664. }
  5665. static void filter_mb_edgech( H264Context *h, uint8_t *pix, int stride, int16_t bS[4], int qp ) {
  5666. int i;
  5667. const int index_a = qp + h->slice_alpha_c0_offset;
  5668. const int alpha = (alpha_table+52)[index_a];
  5669. const int beta = (beta_table+52)[qp + h->slice_beta_offset];
  5670. if( bS[0] < 4 ) {
  5671. int8_t tc[4];
  5672. for(i=0; i<4; i++)
  5673. tc[i] = bS[i] ? (tc0_table+52)[index_a][bS[i] - 1] + 1 : 0;
  5674. h->s.dsp.h264_v_loop_filter_chroma(pix, stride, alpha, beta, tc);
  5675. } else {
  5676. h->s.dsp.h264_v_loop_filter_chroma_intra(pix, stride, alpha, beta);
  5677. }
  5678. }
  5679. static void filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize) {
  5680. MpegEncContext * const s = &h->s;
  5681. int mb_y_firstrow = s->picture_structure == PICT_BOTTOM_FIELD;
  5682. int mb_xy, mb_type;
  5683. int qp, qp0, qp1, qpc, qpc0, qpc1, qp_thresh;
  5684. mb_xy = h->mb_xy;
  5685. if(mb_x==0 || mb_y==mb_y_firstrow || !s->dsp.h264_loop_filter_strength || h->pps.chroma_qp_diff ||
  5686. (h->deblocking_filter == 2 && (h->slice_table[mb_xy] != h->slice_table[h->top_mb_xy] ||
  5687. h->slice_table[mb_xy] != h->slice_table[mb_xy - 1]))) {
  5688. filter_mb(h, mb_x, mb_y, img_y, img_cb, img_cr, linesize, uvlinesize);
  5689. return;
  5690. }
  5691. assert(!FRAME_MBAFF);
  5692. mb_type = s->current_picture.mb_type[mb_xy];
  5693. qp = s->current_picture.qscale_table[mb_xy];
  5694. qp0 = s->current_picture.qscale_table[mb_xy-1];
  5695. qp1 = s->current_picture.qscale_table[h->top_mb_xy];
  5696. qpc = get_chroma_qp( h, 0, qp );
  5697. qpc0 = get_chroma_qp( h, 0, qp0 );
  5698. qpc1 = get_chroma_qp( h, 0, qp1 );
  5699. qp0 = (qp + qp0 + 1) >> 1;
  5700. qp1 = (qp + qp1 + 1) >> 1;
  5701. qpc0 = (qpc + qpc0 + 1) >> 1;
  5702. qpc1 = (qpc + qpc1 + 1) >> 1;
  5703. qp_thresh = 15 - h->slice_alpha_c0_offset;
  5704. if(qp <= qp_thresh && qp0 <= qp_thresh && qp1 <= qp_thresh &&
  5705. qpc <= qp_thresh && qpc0 <= qp_thresh && qpc1 <= qp_thresh)
  5706. return;
  5707. if( IS_INTRA(mb_type) ) {
  5708. int16_t bS4[4] = {4,4,4,4};
  5709. int16_t bS3[4] = {3,3,3,3};
  5710. int16_t *bSH = FIELD_PICTURE ? bS3 : bS4;
  5711. if( IS_8x8DCT(mb_type) ) {
  5712. filter_mb_edgev( h, &img_y[4*0], linesize, bS4, qp0 );
  5713. filter_mb_edgev( h, &img_y[4*2], linesize, bS3, qp );
  5714. filter_mb_edgeh( h, &img_y[4*0*linesize], linesize, bSH, qp1 );
  5715. filter_mb_edgeh( h, &img_y[4*2*linesize], linesize, bS3, qp );
  5716. } else {
  5717. filter_mb_edgev( h, &img_y[4*0], linesize, bS4, qp0 );
  5718. filter_mb_edgev( h, &img_y[4*1], linesize, bS3, qp );
  5719. filter_mb_edgev( h, &img_y[4*2], linesize, bS3, qp );
  5720. filter_mb_edgev( h, &img_y[4*3], linesize, bS3, qp );
  5721. filter_mb_edgeh( h, &img_y[4*0*linesize], linesize, bSH, qp1 );
  5722. filter_mb_edgeh( h, &img_y[4*1*linesize], linesize, bS3, qp );
  5723. filter_mb_edgeh( h, &img_y[4*2*linesize], linesize, bS3, qp );
  5724. filter_mb_edgeh( h, &img_y[4*3*linesize], linesize, bS3, qp );
  5725. }
  5726. filter_mb_edgecv( h, &img_cb[2*0], uvlinesize, bS4, qpc0 );
  5727. filter_mb_edgecv( h, &img_cb[2*2], uvlinesize, bS3, qpc );
  5728. filter_mb_edgecv( h, &img_cr[2*0], uvlinesize, bS4, qpc0 );
  5729. filter_mb_edgecv( h, &img_cr[2*2], uvlinesize, bS3, qpc );
  5730. filter_mb_edgech( h, &img_cb[2*0*uvlinesize], uvlinesize, bSH, qpc1 );
  5731. filter_mb_edgech( h, &img_cb[2*2*uvlinesize], uvlinesize, bS3, qpc );
  5732. filter_mb_edgech( h, &img_cr[2*0*uvlinesize], uvlinesize, bSH, qpc1 );
  5733. filter_mb_edgech( h, &img_cr[2*2*uvlinesize], uvlinesize, bS3, qpc );
  5734. return;
  5735. } else {
  5736. DECLARE_ALIGNED_8(int16_t, bS[2][4][4]);
  5737. uint64_t (*bSv)[4] = (uint64_t(*)[4])bS;
  5738. int edges;
  5739. if( IS_8x8DCT(mb_type) && (h->cbp&7) == 7 ) {
  5740. edges = 4;
  5741. bSv[0][0] = bSv[0][2] = bSv[1][0] = bSv[1][2] = 0x0002000200020002ULL;
  5742. } else {
  5743. int mask_edge1 = (mb_type & (MB_TYPE_16x16 | MB_TYPE_8x16)) ? 3 :
  5744. (mb_type & MB_TYPE_16x8) ? 1 : 0;
  5745. int mask_edge0 = (mb_type & (MB_TYPE_16x16 | MB_TYPE_8x16))
  5746. && (s->current_picture.mb_type[mb_xy-1] & (MB_TYPE_16x16 | MB_TYPE_8x16))
  5747. ? 3 : 0;
  5748. int step = IS_8x8DCT(mb_type) ? 2 : 1;
  5749. edges = (mb_type & MB_TYPE_16x16) && !(h->cbp & 15) ? 1 : 4;
  5750. s->dsp.h264_loop_filter_strength( bS, h->non_zero_count_cache, h->ref_cache, h->mv_cache,
  5751. (h->slice_type == FF_B_TYPE), edges, step, mask_edge0, mask_edge1 );
  5752. }
  5753. if( IS_INTRA(s->current_picture.mb_type[mb_xy-1]) )
  5754. bSv[0][0] = 0x0004000400040004ULL;
  5755. if( IS_INTRA(s->current_picture.mb_type[h->top_mb_xy]) )
  5756. bSv[1][0] = FIELD_PICTURE ? 0x0003000300030003ULL : 0x0004000400040004ULL;
  5757. #define FILTER(hv,dir,edge)\
  5758. if(bSv[dir][edge]) {\
  5759. filter_mb_edge##hv( h, &img_y[4*edge*(dir?linesize:1)], linesize, bS[dir][edge], edge ? qp : qp##dir );\
  5760. if(!(edge&1)) {\
  5761. filter_mb_edgec##hv( h, &img_cb[2*edge*(dir?uvlinesize:1)], uvlinesize, bS[dir][edge], edge ? qpc : qpc##dir );\
  5762. filter_mb_edgec##hv( h, &img_cr[2*edge*(dir?uvlinesize:1)], uvlinesize, bS[dir][edge], edge ? qpc : qpc##dir );\
  5763. }\
  5764. }
  5765. if( edges == 1 ) {
  5766. FILTER(v,0,0);
  5767. FILTER(h,1,0);
  5768. } else if( IS_8x8DCT(mb_type) ) {
  5769. FILTER(v,0,0);
  5770. FILTER(v,0,2);
  5771. FILTER(h,1,0);
  5772. FILTER(h,1,2);
  5773. } else {
  5774. FILTER(v,0,0);
  5775. FILTER(v,0,1);
  5776. FILTER(v,0,2);
  5777. FILTER(v,0,3);
  5778. FILTER(h,1,0);
  5779. FILTER(h,1,1);
  5780. FILTER(h,1,2);
  5781. FILTER(h,1,3);
  5782. }
  5783. #undef FILTER
  5784. }
  5785. }
  5786. static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize) {
  5787. MpegEncContext * const s = &h->s;
  5788. const int mb_xy= mb_x + mb_y*s->mb_stride;
  5789. const int mb_type = s->current_picture.mb_type[mb_xy];
  5790. const int mvy_limit = IS_INTERLACED(mb_type) ? 2 : 4;
  5791. int first_vertical_edge_done = 0;
  5792. int dir;
  5793. /* FIXME: A given frame may occupy more than one position in
  5794. * the reference list. So ref2frm should be populated with
  5795. * frame numbers, not indexes. */
  5796. static const int ref2frm[34] = {-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
  5797. 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31};
  5798. //for sufficiently low qp, filtering wouldn't do anything
  5799. //this is a conservative estimate: could also check beta_offset and more accurate chroma_qp
  5800. if(!FRAME_MBAFF){
  5801. int qp_thresh = 15 - h->slice_alpha_c0_offset - FFMAX3(0, h->pps.chroma_qp_index_offset[0], h->pps.chroma_qp_index_offset[1]);
  5802. int qp = s->current_picture.qscale_table[mb_xy];
  5803. if(qp <= qp_thresh
  5804. && (mb_x == 0 || ((qp + s->current_picture.qscale_table[mb_xy-1] + 1)>>1) <= qp_thresh)
  5805. && (mb_y == 0 || ((qp + s->current_picture.qscale_table[h->top_mb_xy] + 1)>>1) <= qp_thresh)){
  5806. return;
  5807. }
  5808. }
  5809. if (FRAME_MBAFF
  5810. // left mb is in picture
  5811. && h->slice_table[mb_xy-1] != 255
  5812. // and current and left pair do not have the same interlaced type
  5813. && (IS_INTERLACED(mb_type) != IS_INTERLACED(s->current_picture.mb_type[mb_xy-1]))
  5814. // and left mb is in the same slice if deblocking_filter == 2
  5815. && (h->deblocking_filter!=2 || h->slice_table[mb_xy-1] == h->slice_table[mb_xy])) {
  5816. /* First vertical edge is different in MBAFF frames
  5817. * There are 8 different bS to compute and 2 different Qp
  5818. */
  5819. const int pair_xy = mb_x + (mb_y&~1)*s->mb_stride;
  5820. const int left_mb_xy[2] = { pair_xy-1, pair_xy-1+s->mb_stride };
  5821. int16_t bS[8];
  5822. int qp[2];
  5823. int bqp[2];
  5824. int rqp[2];
  5825. int mb_qp, mbn0_qp, mbn1_qp;
  5826. int i;
  5827. first_vertical_edge_done = 1;
  5828. if( IS_INTRA(mb_type) )
  5829. bS[0] = bS[1] = bS[2] = bS[3] = bS[4] = bS[5] = bS[6] = bS[7] = 4;
  5830. else {
  5831. for( i = 0; i < 8; i++ ) {
  5832. int mbn_xy = MB_FIELD ? left_mb_xy[i>>2] : left_mb_xy[i&1];
  5833. if( IS_INTRA( s->current_picture.mb_type[mbn_xy] ) )
  5834. bS[i] = 4;
  5835. else if( h->non_zero_count_cache[12+8*(i>>1)] != 0 ||
  5836. /* FIXME: with 8x8dct + cavlc, should check cbp instead of nnz */
  5837. h->non_zero_count[mbn_xy][MB_FIELD ? i&3 : (i>>2)+(mb_y&1)*2] )
  5838. bS[i] = 2;
  5839. else
  5840. bS[i] = 1;
  5841. }
  5842. }
  5843. mb_qp = s->current_picture.qscale_table[mb_xy];
  5844. mbn0_qp = s->current_picture.qscale_table[left_mb_xy[0]];
  5845. mbn1_qp = s->current_picture.qscale_table[left_mb_xy[1]];
  5846. qp[0] = ( mb_qp + mbn0_qp + 1 ) >> 1;
  5847. bqp[0] = ( get_chroma_qp( h, 0, mb_qp ) +
  5848. get_chroma_qp( h, 0, mbn0_qp ) + 1 ) >> 1;
  5849. rqp[0] = ( get_chroma_qp( h, 1, mb_qp ) +
  5850. get_chroma_qp( h, 1, mbn0_qp ) + 1 ) >> 1;
  5851. qp[1] = ( mb_qp + mbn1_qp + 1 ) >> 1;
  5852. bqp[1] = ( get_chroma_qp( h, 0, mb_qp ) +
  5853. get_chroma_qp( h, 0, mbn1_qp ) + 1 ) >> 1;
  5854. rqp[1] = ( get_chroma_qp( h, 1, mb_qp ) +
  5855. get_chroma_qp( h, 1, mbn1_qp ) + 1 ) >> 1;
  5856. /* Filter edge */
  5857. tprintf(s->avctx, "filter mb:%d/%d MBAFF, QPy:%d/%d, QPb:%d/%d QPr:%d/%d ls:%d uvls:%d", mb_x, mb_y, qp[0], qp[1], bqp[0], bqp[1], rqp[0], rqp[1], linesize, uvlinesize);
  5858. { int i; for (i = 0; i < 8; i++) tprintf(s->avctx, " bS[%d]:%d", i, bS[i]); tprintf(s->avctx, "\n"); }
  5859. filter_mb_mbaff_edgev ( h, &img_y [0], linesize, bS, qp );
  5860. filter_mb_mbaff_edgecv( h, &img_cb[0], uvlinesize, bS, bqp );
  5861. filter_mb_mbaff_edgecv( h, &img_cr[0], uvlinesize, bS, rqp );
  5862. }
  5863. /* dir : 0 -> vertical edge, 1 -> horizontal edge */
  5864. for( dir = 0; dir < 2; dir++ )
  5865. {
  5866. int edge;
  5867. const int mbm_xy = dir == 0 ? mb_xy -1 : h->top_mb_xy;
  5868. const int mbm_type = s->current_picture.mb_type[mbm_xy];
  5869. int start = h->slice_table[mbm_xy] == 255 ? 1 : 0;
  5870. const int edges = (mb_type & (MB_TYPE_16x16|MB_TYPE_SKIP))
  5871. == (MB_TYPE_16x16|MB_TYPE_SKIP) ? 1 : 4;
  5872. // how often to recheck mv-based bS when iterating between edges
  5873. const int mask_edge = (mb_type & (MB_TYPE_16x16 | (MB_TYPE_16x8 << dir))) ? 3 :
  5874. (mb_type & (MB_TYPE_8x16 >> dir)) ? 1 : 0;
  5875. // how often to recheck mv-based bS when iterating along each edge
  5876. const int mask_par0 = mb_type & (MB_TYPE_16x16 | (MB_TYPE_8x16 >> dir));
  5877. if (first_vertical_edge_done) {
  5878. start = 1;
  5879. first_vertical_edge_done = 0;
  5880. }
  5881. if (h->deblocking_filter==2 && h->slice_table[mbm_xy] != h->slice_table[mb_xy])
  5882. start = 1;
  5883. if (FRAME_MBAFF && (dir == 1) && ((mb_y&1) == 0) && start == 0
  5884. && !IS_INTERLACED(mb_type)
  5885. && IS_INTERLACED(mbm_type)
  5886. ) {
  5887. // This is a special case in the norm where the filtering must
  5888. // be done twice (one each of the field) even if we are in a
  5889. // frame macroblock.
  5890. //
  5891. static const int nnz_idx[4] = {4,5,6,3};
  5892. unsigned int tmp_linesize = 2 * linesize;
  5893. unsigned int tmp_uvlinesize = 2 * uvlinesize;
  5894. int mbn_xy = mb_xy - 2 * s->mb_stride;
  5895. int qp;
  5896. int i, j;
  5897. int16_t bS[4];
  5898. for(j=0; j<2; j++, mbn_xy += s->mb_stride){
  5899. if( IS_INTRA(mb_type) ||
  5900. IS_INTRA(s->current_picture.mb_type[mbn_xy]) ) {
  5901. bS[0] = bS[1] = bS[2] = bS[3] = 3;
  5902. } else {
  5903. const uint8_t *mbn_nnz = h->non_zero_count[mbn_xy];
  5904. for( i = 0; i < 4; i++ ) {
  5905. if( h->non_zero_count_cache[scan8[0]+i] != 0 ||
  5906. mbn_nnz[nnz_idx[i]] != 0 )
  5907. bS[i] = 2;
  5908. else
  5909. bS[i] = 1;
  5910. }
  5911. }
  5912. // Do not use s->qscale as luma quantizer because it has not the same
  5913. // value in IPCM macroblocks.
  5914. qp = ( s->current_picture.qscale_table[mb_xy] + s->current_picture.qscale_table[mbn_xy] + 1 ) >> 1;
  5915. tprintf(s->avctx, "filter mb:%d/%d dir:%d edge:%d, QPy:%d ls:%d uvls:%d", mb_x, mb_y, dir, edge, qp, tmp_linesize, tmp_uvlinesize);
  5916. { int i; for (i = 0; i < 4; i++) tprintf(s->avctx, " bS[%d]:%d", i, bS[i]); tprintf(s->avctx, "\n"); }
  5917. filter_mb_edgeh( h, &img_y[j*linesize], tmp_linesize, bS, qp );
  5918. filter_mb_edgech( h, &img_cb[j*uvlinesize], tmp_uvlinesize, bS,
  5919. ( h->chroma_qp[0] + get_chroma_qp( h, 0, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1);
  5920. filter_mb_edgech( h, &img_cr[j*uvlinesize], tmp_uvlinesize, bS,
  5921. ( h->chroma_qp[1] + get_chroma_qp( h, 1, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1);
  5922. }
  5923. start = 1;
  5924. }
  5925. /* Calculate bS */
  5926. for( edge = start; edge < edges; edge++ ) {
  5927. /* mbn_xy: neighbor macroblock */
  5928. const int mbn_xy = edge > 0 ? mb_xy : mbm_xy;
  5929. const int mbn_type = s->current_picture.mb_type[mbn_xy];
  5930. int16_t bS[4];
  5931. int qp;
  5932. if( (edge&1) && IS_8x8DCT(mb_type) )
  5933. continue;
  5934. if( IS_INTRA(mb_type) ||
  5935. IS_INTRA(mbn_type) ) {
  5936. int value;
  5937. if (edge == 0) {
  5938. if ( (!IS_INTERLACED(mb_type) && !IS_INTERLACED(mbm_type))
  5939. || ((FRAME_MBAFF || (s->picture_structure != PICT_FRAME)) && (dir == 0))
  5940. ) {
  5941. value = 4;
  5942. } else {
  5943. value = 3;
  5944. }
  5945. } else {
  5946. value = 3;
  5947. }
  5948. bS[0] = bS[1] = bS[2] = bS[3] = value;
  5949. } else {
  5950. int i, l;
  5951. int mv_done;
  5952. if( edge & mask_edge ) {
  5953. bS[0] = bS[1] = bS[2] = bS[3] = 0;
  5954. mv_done = 1;
  5955. }
  5956. else if( FRAME_MBAFF && IS_INTERLACED(mb_type ^ mbn_type)) {
  5957. bS[0] = bS[1] = bS[2] = bS[3] = 1;
  5958. mv_done = 1;
  5959. }
  5960. else if( mask_par0 && (edge || (mbn_type & (MB_TYPE_16x16 | (MB_TYPE_8x16 >> dir)))) ) {
  5961. int b_idx= 8 + 4 + edge * (dir ? 8:1);
  5962. int bn_idx= b_idx - (dir ? 8:1);
  5963. int v = 0;
  5964. for( l = 0; !v && l < 1 + (h->slice_type == FF_B_TYPE); l++ ) {
  5965. v |= ref2frm[h->ref_cache[l][b_idx]+2] != ref2frm[h->ref_cache[l][bn_idx]+2] ||
  5966. FFABS( h->mv_cache[l][b_idx][0] - h->mv_cache[l][bn_idx][0] ) >= 4 ||
  5967. FFABS( h->mv_cache[l][b_idx][1] - h->mv_cache[l][bn_idx][1] ) >= mvy_limit;
  5968. }
  5969. bS[0] = bS[1] = bS[2] = bS[3] = v;
  5970. mv_done = 1;
  5971. }
  5972. else
  5973. mv_done = 0;
  5974. for( i = 0; i < 4; i++ ) {
  5975. int x = dir == 0 ? edge : i;
  5976. int y = dir == 0 ? i : edge;
  5977. int b_idx= 8 + 4 + x + 8*y;
  5978. int bn_idx= b_idx - (dir ? 8:1);
  5979. if( h->non_zero_count_cache[b_idx] != 0 ||
  5980. h->non_zero_count_cache[bn_idx] != 0 ) {
  5981. bS[i] = 2;
  5982. }
  5983. else if(!mv_done)
  5984. {
  5985. bS[i] = 0;
  5986. for( l = 0; l < 1 + (h->slice_type == FF_B_TYPE); l++ ) {
  5987. if( ref2frm[h->ref_cache[l][b_idx]+2] != ref2frm[h->ref_cache[l][bn_idx]+2] ||
  5988. FFABS( h->mv_cache[l][b_idx][0] - h->mv_cache[l][bn_idx][0] ) >= 4 ||
  5989. FFABS( h->mv_cache[l][b_idx][1] - h->mv_cache[l][bn_idx][1] ) >= mvy_limit ) {
  5990. bS[i] = 1;
  5991. break;
  5992. }
  5993. }
  5994. }
  5995. }
  5996. if(bS[0]+bS[1]+bS[2]+bS[3] == 0)
  5997. continue;
  5998. }
  5999. /* Filter edge */
  6000. // Do not use s->qscale as luma quantizer because it has not the same
  6001. // value in IPCM macroblocks.
  6002. qp = ( s->current_picture.qscale_table[mb_xy] + s->current_picture.qscale_table[mbn_xy] + 1 ) >> 1;
  6003. //tprintf(s->avctx, "filter mb:%d/%d dir:%d edge:%d, QPy:%d, QPc:%d, QPcn:%d\n", mb_x, mb_y, dir, edge, qp, h->chroma_qp, s->current_picture.qscale_table[mbn_xy]);
  6004. tprintf(s->avctx, "filter mb:%d/%d dir:%d edge:%d, QPy:%d ls:%d uvls:%d", mb_x, mb_y, dir, edge, qp, linesize, uvlinesize);
  6005. { int i; for (i = 0; i < 4; i++) tprintf(s->avctx, " bS[%d]:%d", i, bS[i]); tprintf(s->avctx, "\n"); }
  6006. if( dir == 0 ) {
  6007. filter_mb_edgev( h, &img_y[4*edge], linesize, bS, qp );
  6008. if( (edge&1) == 0 ) {
  6009. filter_mb_edgecv( h, &img_cb[2*edge], uvlinesize, bS,
  6010. ( h->chroma_qp[0] + get_chroma_qp( h, 0, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1);
  6011. filter_mb_edgecv( h, &img_cr[2*edge], uvlinesize, bS,
  6012. ( h->chroma_qp[1] + get_chroma_qp( h, 1, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1);
  6013. }
  6014. } else {
  6015. filter_mb_edgeh( h, &img_y[4*edge*linesize], linesize, bS, qp );
  6016. if( (edge&1) == 0 ) {
  6017. filter_mb_edgech( h, &img_cb[2*edge*uvlinesize], uvlinesize, bS,
  6018. ( h->chroma_qp[0] + get_chroma_qp( h, 0, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1);
  6019. filter_mb_edgech( h, &img_cr[2*edge*uvlinesize], uvlinesize, bS,
  6020. ( h->chroma_qp[1] + get_chroma_qp( h, 1, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1);
  6021. }
  6022. }
  6023. }
  6024. }
  6025. }
  6026. static int decode_slice(struct AVCodecContext *avctx, H264Context *h){
  6027. MpegEncContext * const s = &h->s;
  6028. const int part_mask= s->partitioned_frame ? (AC_END|AC_ERROR) : 0x7F;
  6029. s->mb_skip_run= -1;
  6030. if( h->pps.cabac ) {
  6031. int i;
  6032. /* realign */
  6033. align_get_bits( &s->gb );
  6034. /* init cabac */
  6035. ff_init_cabac_states( &h->cabac);
  6036. ff_init_cabac_decoder( &h->cabac,
  6037. s->gb.buffer + get_bits_count(&s->gb)/8,
  6038. ( s->gb.size_in_bits - get_bits_count(&s->gb) + 7)/8);
  6039. /* calculate pre-state */
  6040. for( i= 0; i < 460; i++ ) {
  6041. int pre;
  6042. if( h->slice_type == FF_I_TYPE )
  6043. pre = av_clip( ((cabac_context_init_I[i][0] * s->qscale) >>4 ) + cabac_context_init_I[i][1], 1, 126 );
  6044. else
  6045. pre = av_clip( ((cabac_context_init_PB[h->cabac_init_idc][i][0] * s->qscale) >>4 ) + cabac_context_init_PB[h->cabac_init_idc][i][1], 1, 126 );
  6046. if( pre <= 63 )
  6047. h->cabac_state[i] = 2 * ( 63 - pre ) + 0;
  6048. else
  6049. h->cabac_state[i] = 2 * ( pre - 64 ) + 1;
  6050. }
  6051. for(;;){
  6052. //START_TIMER
  6053. int ret = decode_mb_cabac(h);
  6054. int eos;
  6055. //STOP_TIMER("decode_mb_cabac")
  6056. if(ret>=0) hl_decode_mb(h);
  6057. if( ret >= 0 && FRAME_MBAFF ) { //FIXME optimal? or let mb_decode decode 16x32 ?
  6058. s->mb_y++;
  6059. if(ret>=0) ret = decode_mb_cabac(h);
  6060. if(ret>=0) hl_decode_mb(h);
  6061. s->mb_y--;
  6062. }
  6063. eos = get_cabac_terminate( &h->cabac );
  6064. if( ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 2) {
  6065. 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);
  6066. 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);
  6067. return -1;
  6068. }
  6069. if( ++s->mb_x >= s->mb_width ) {
  6070. s->mb_x = 0;
  6071. ff_draw_horiz_band(s, 16*s->mb_y, 16);
  6072. ++s->mb_y;
  6073. if(FIELD_OR_MBAFF_PICTURE) {
  6074. ++s->mb_y;
  6075. }
  6076. }
  6077. if( eos || s->mb_y >= s->mb_height ) {
  6078. tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
  6079. 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);
  6080. return 0;
  6081. }
  6082. }
  6083. } else {
  6084. for(;;){
  6085. int ret = decode_mb_cavlc(h);
  6086. if(ret>=0) hl_decode_mb(h);
  6087. if(ret>=0 && FRAME_MBAFF){ //FIXME optimal? or let mb_decode decode 16x32 ?
  6088. s->mb_y++;
  6089. ret = decode_mb_cavlc(h);
  6090. if(ret>=0) hl_decode_mb(h);
  6091. s->mb_y--;
  6092. }
  6093. if(ret<0){
  6094. av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
  6095. 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);
  6096. return -1;
  6097. }
  6098. if(++s->mb_x >= s->mb_width){
  6099. s->mb_x=0;
  6100. ff_draw_horiz_band(s, 16*s->mb_y, 16);
  6101. ++s->mb_y;
  6102. if(FIELD_OR_MBAFF_PICTURE) {
  6103. ++s->mb_y;
  6104. }
  6105. if(s->mb_y >= s->mb_height){
  6106. tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
  6107. if(get_bits_count(&s->gb) == s->gb.size_in_bits ) {
  6108. 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);
  6109. return 0;
  6110. }else{
  6111. 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);
  6112. return -1;
  6113. }
  6114. }
  6115. }
  6116. if(get_bits_count(&s->gb) >= s->gb.size_in_bits && s->mb_skip_run<=0){
  6117. tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
  6118. if(get_bits_count(&s->gb) == s->gb.size_in_bits ){
  6119. 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);
  6120. return 0;
  6121. }else{
  6122. 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);
  6123. return -1;
  6124. }
  6125. }
  6126. }
  6127. }
  6128. #if 0
  6129. for(;s->mb_y < s->mb_height; s->mb_y++){
  6130. for(;s->mb_x < s->mb_width; s->mb_x++){
  6131. int ret= decode_mb(h);
  6132. hl_decode_mb(h);
  6133. if(ret<0){
  6134. av_log(s->avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
  6135. 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);
  6136. return -1;
  6137. }
  6138. if(++s->mb_x >= s->mb_width){
  6139. s->mb_x=0;
  6140. if(++s->mb_y >= s->mb_height){
  6141. if(get_bits_count(s->gb) == s->gb.size_in_bits){
  6142. 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);
  6143. return 0;
  6144. }else{
  6145. 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);
  6146. return -1;
  6147. }
  6148. }
  6149. }
  6150. if(get_bits_count(s->?gb) >= s->gb?.size_in_bits){
  6151. if(get_bits_count(s->gb) == s->gb.size_in_bits){
  6152. 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);
  6153. return 0;
  6154. }else{
  6155. 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);
  6156. return -1;
  6157. }
  6158. }
  6159. }
  6160. s->mb_x=0;
  6161. ff_draw_horiz_band(s, 16*s->mb_y, 16);
  6162. }
  6163. #endif
  6164. return -1; //not reached
  6165. }
  6166. static int decode_unregistered_user_data(H264Context *h, int size){
  6167. MpegEncContext * const s = &h->s;
  6168. uint8_t user_data[16+256];
  6169. int e, build, i;
  6170. if(size<16)
  6171. return -1;
  6172. for(i=0; i<sizeof(user_data)-1 && i<size; i++){
  6173. user_data[i]= get_bits(&s->gb, 8);
  6174. }
  6175. user_data[i]= 0;
  6176. e= sscanf(user_data+16, "x264 - core %d"/*%s - H.264/MPEG-4 AVC codec - Copyleft 2005 - http://www.videolan.org/x264.html*/, &build);
  6177. if(e==1 && build>=0)
  6178. h->x264_build= build;
  6179. if(s->avctx->debug & FF_DEBUG_BUGS)
  6180. av_log(s->avctx, AV_LOG_DEBUG, "user data:\"%s\"\n", user_data+16);
  6181. for(; i<size; i++)
  6182. skip_bits(&s->gb, 8);
  6183. return 0;
  6184. }
  6185. static int decode_sei(H264Context *h){
  6186. MpegEncContext * const s = &h->s;
  6187. while(get_bits_count(&s->gb) + 16 < s->gb.size_in_bits){
  6188. int size, type;
  6189. type=0;
  6190. do{
  6191. type+= show_bits(&s->gb, 8);
  6192. }while(get_bits(&s->gb, 8) == 255);
  6193. size=0;
  6194. do{
  6195. size+= show_bits(&s->gb, 8);
  6196. }while(get_bits(&s->gb, 8) == 255);
  6197. switch(type){
  6198. case 5:
  6199. if(decode_unregistered_user_data(h, size) < 0)
  6200. return -1;
  6201. break;
  6202. default:
  6203. skip_bits(&s->gb, 8*size);
  6204. }
  6205. //FIXME check bits here
  6206. align_get_bits(&s->gb);
  6207. }
  6208. return 0;
  6209. }
  6210. static inline void decode_hrd_parameters(H264Context *h, SPS *sps){
  6211. MpegEncContext * const s = &h->s;
  6212. int cpb_count, i;
  6213. cpb_count = get_ue_golomb(&s->gb) + 1;
  6214. get_bits(&s->gb, 4); /* bit_rate_scale */
  6215. get_bits(&s->gb, 4); /* cpb_size_scale */
  6216. for(i=0; i<cpb_count; i++){
  6217. get_ue_golomb(&s->gb); /* bit_rate_value_minus1 */
  6218. get_ue_golomb(&s->gb); /* cpb_size_value_minus1 */
  6219. get_bits1(&s->gb); /* cbr_flag */
  6220. }
  6221. get_bits(&s->gb, 5); /* initial_cpb_removal_delay_length_minus1 */
  6222. get_bits(&s->gb, 5); /* cpb_removal_delay_length_minus1 */
  6223. get_bits(&s->gb, 5); /* dpb_output_delay_length_minus1 */
  6224. get_bits(&s->gb, 5); /* time_offset_length */
  6225. }
  6226. static inline int decode_vui_parameters(H264Context *h, SPS *sps){
  6227. MpegEncContext * const s = &h->s;
  6228. int aspect_ratio_info_present_flag;
  6229. unsigned int aspect_ratio_idc;
  6230. int nal_hrd_parameters_present_flag, vcl_hrd_parameters_present_flag;
  6231. aspect_ratio_info_present_flag= get_bits1(&s->gb);
  6232. if( aspect_ratio_info_present_flag ) {
  6233. aspect_ratio_idc= get_bits(&s->gb, 8);
  6234. if( aspect_ratio_idc == EXTENDED_SAR ) {
  6235. sps->sar.num= get_bits(&s->gb, 16);
  6236. sps->sar.den= get_bits(&s->gb, 16);
  6237. }else if(aspect_ratio_idc < sizeof(pixel_aspect)/sizeof(*pixel_aspect)){
  6238. sps->sar= pixel_aspect[aspect_ratio_idc];
  6239. }else{
  6240. av_log(h->s.avctx, AV_LOG_ERROR, "illegal aspect ratio\n");
  6241. return -1;
  6242. }
  6243. }else{
  6244. sps->sar.num=
  6245. sps->sar.den= 0;
  6246. }
  6247. // s->avctx->aspect_ratio= sar_width*s->width / (float)(s->height*sar_height);
  6248. if(get_bits1(&s->gb)){ /* overscan_info_present_flag */
  6249. get_bits1(&s->gb); /* overscan_appropriate_flag */
  6250. }
  6251. if(get_bits1(&s->gb)){ /* video_signal_type_present_flag */
  6252. get_bits(&s->gb, 3); /* video_format */
  6253. get_bits1(&s->gb); /* video_full_range_flag */
  6254. if(get_bits1(&s->gb)){ /* colour_description_present_flag */
  6255. get_bits(&s->gb, 8); /* colour_primaries */
  6256. get_bits(&s->gb, 8); /* transfer_characteristics */
  6257. get_bits(&s->gb, 8); /* matrix_coefficients */
  6258. }
  6259. }
  6260. if(get_bits1(&s->gb)){ /* chroma_location_info_present_flag */
  6261. get_ue_golomb(&s->gb); /* chroma_sample_location_type_top_field */
  6262. get_ue_golomb(&s->gb); /* chroma_sample_location_type_bottom_field */
  6263. }
  6264. sps->timing_info_present_flag = get_bits1(&s->gb);
  6265. if(sps->timing_info_present_flag){
  6266. sps->num_units_in_tick = get_bits_long(&s->gb, 32);
  6267. sps->time_scale = get_bits_long(&s->gb, 32);
  6268. sps->fixed_frame_rate_flag = get_bits1(&s->gb);
  6269. }
  6270. nal_hrd_parameters_present_flag = get_bits1(&s->gb);
  6271. if(nal_hrd_parameters_present_flag)
  6272. decode_hrd_parameters(h, sps);
  6273. vcl_hrd_parameters_present_flag = get_bits1(&s->gb);
  6274. if(vcl_hrd_parameters_present_flag)
  6275. decode_hrd_parameters(h, sps);
  6276. if(nal_hrd_parameters_present_flag || vcl_hrd_parameters_present_flag)
  6277. get_bits1(&s->gb); /* low_delay_hrd_flag */
  6278. get_bits1(&s->gb); /* pic_struct_present_flag */
  6279. sps->bitstream_restriction_flag = get_bits1(&s->gb);
  6280. if(sps->bitstream_restriction_flag){
  6281. unsigned int num_reorder_frames;
  6282. get_bits1(&s->gb); /* motion_vectors_over_pic_boundaries_flag */
  6283. get_ue_golomb(&s->gb); /* max_bytes_per_pic_denom */
  6284. get_ue_golomb(&s->gb); /* max_bits_per_mb_denom */
  6285. get_ue_golomb(&s->gb); /* log2_max_mv_length_horizontal */
  6286. get_ue_golomb(&s->gb); /* log2_max_mv_length_vertical */
  6287. num_reorder_frames= get_ue_golomb(&s->gb);
  6288. get_ue_golomb(&s->gb); /*max_dec_frame_buffering*/
  6289. if(num_reorder_frames > 16 /*max_dec_frame_buffering || max_dec_frame_buffering > 16*/){
  6290. av_log(h->s.avctx, AV_LOG_ERROR, "illegal num_reorder_frames %d\n", num_reorder_frames);
  6291. return -1;
  6292. }
  6293. sps->num_reorder_frames= num_reorder_frames;
  6294. }
  6295. return 0;
  6296. }
  6297. static void decode_scaling_list(H264Context *h, uint8_t *factors, int size,
  6298. const uint8_t *jvt_list, const uint8_t *fallback_list){
  6299. MpegEncContext * const s = &h->s;
  6300. int i, last = 8, next = 8;
  6301. const uint8_t *scan = size == 16 ? zigzag_scan : zigzag_scan8x8;
  6302. if(!get_bits1(&s->gb)) /* matrix not written, we use the predicted one */
  6303. memcpy(factors, fallback_list, size*sizeof(uint8_t));
  6304. else
  6305. for(i=0;i<size;i++){
  6306. if(next)
  6307. next = (last + get_se_golomb(&s->gb)) & 0xff;
  6308. if(!i && !next){ /* matrix not written, we use the preset one */
  6309. memcpy(factors, jvt_list, size*sizeof(uint8_t));
  6310. break;
  6311. }
  6312. last = factors[scan[i]] = next ? next : last;
  6313. }
  6314. }
  6315. static void decode_scaling_matrices(H264Context *h, SPS *sps, PPS *pps, int is_sps,
  6316. uint8_t (*scaling_matrix4)[16], uint8_t (*scaling_matrix8)[64]){
  6317. MpegEncContext * const s = &h->s;
  6318. int fallback_sps = !is_sps && sps->scaling_matrix_present;
  6319. const uint8_t *fallback[4] = {
  6320. fallback_sps ? sps->scaling_matrix4[0] : default_scaling4[0],
  6321. fallback_sps ? sps->scaling_matrix4[3] : default_scaling4[1],
  6322. fallback_sps ? sps->scaling_matrix8[0] : default_scaling8[0],
  6323. fallback_sps ? sps->scaling_matrix8[1] : default_scaling8[1]
  6324. };
  6325. if(get_bits1(&s->gb)){
  6326. sps->scaling_matrix_present |= is_sps;
  6327. decode_scaling_list(h,scaling_matrix4[0],16,default_scaling4[0],fallback[0]); // Intra, Y
  6328. decode_scaling_list(h,scaling_matrix4[1],16,default_scaling4[0],scaling_matrix4[0]); // Intra, Cr
  6329. decode_scaling_list(h,scaling_matrix4[2],16,default_scaling4[0],scaling_matrix4[1]); // Intra, Cb
  6330. decode_scaling_list(h,scaling_matrix4[3],16,default_scaling4[1],fallback[1]); // Inter, Y
  6331. decode_scaling_list(h,scaling_matrix4[4],16,default_scaling4[1],scaling_matrix4[3]); // Inter, Cr
  6332. decode_scaling_list(h,scaling_matrix4[5],16,default_scaling4[1],scaling_matrix4[4]); // Inter, Cb
  6333. if(is_sps || pps->transform_8x8_mode){
  6334. decode_scaling_list(h,scaling_matrix8[0],64,default_scaling8[0],fallback[2]); // Intra, Y
  6335. decode_scaling_list(h,scaling_matrix8[1],64,default_scaling8[1],fallback[3]); // Inter, Y
  6336. }
  6337. } else if(fallback_sps) {
  6338. memcpy(scaling_matrix4, sps->scaling_matrix4, 6*16*sizeof(uint8_t));
  6339. memcpy(scaling_matrix8, sps->scaling_matrix8, 2*64*sizeof(uint8_t));
  6340. }
  6341. }
  6342. /**
  6343. * Returns and optionally allocates SPS / PPS structures in the supplied array 'vec'
  6344. */
  6345. static void *
  6346. alloc_parameter_set(H264Context *h, void **vec, const unsigned int id, const unsigned int max,
  6347. const size_t size, const char *name)
  6348. {
  6349. if(id>=max) {
  6350. av_log(h->s.avctx, AV_LOG_ERROR, "%s_id (%d) out of range\n", name, id);
  6351. return NULL;
  6352. }
  6353. if(!vec[id]) {
  6354. vec[id] = av_mallocz(size);
  6355. if(vec[id] == NULL)
  6356. av_log(h->s.avctx, AV_LOG_ERROR, "cannot allocate memory for %s\n", name);
  6357. }
  6358. return vec[id];
  6359. }
  6360. static inline int decode_seq_parameter_set(H264Context *h){
  6361. MpegEncContext * const s = &h->s;
  6362. int profile_idc, level_idc;
  6363. unsigned int sps_id, tmp, mb_width, mb_height;
  6364. int i;
  6365. SPS *sps;
  6366. profile_idc= get_bits(&s->gb, 8);
  6367. get_bits1(&s->gb); //constraint_set0_flag
  6368. get_bits1(&s->gb); //constraint_set1_flag
  6369. get_bits1(&s->gb); //constraint_set2_flag
  6370. get_bits1(&s->gb); //constraint_set3_flag
  6371. get_bits(&s->gb, 4); // reserved
  6372. level_idc= get_bits(&s->gb, 8);
  6373. sps_id= get_ue_golomb(&s->gb);
  6374. sps = alloc_parameter_set(h, (void **)h->sps_buffers, sps_id, MAX_SPS_COUNT, sizeof(SPS), "sps");
  6375. if(sps == NULL)
  6376. return -1;
  6377. sps->profile_idc= profile_idc;
  6378. sps->level_idc= level_idc;
  6379. if(sps->profile_idc >= 100){ //high profile
  6380. if(get_ue_golomb(&s->gb) == 3) //chroma_format_idc
  6381. get_bits1(&s->gb); //residual_color_transform_flag
  6382. get_ue_golomb(&s->gb); //bit_depth_luma_minus8
  6383. get_ue_golomb(&s->gb); //bit_depth_chroma_minus8
  6384. sps->transform_bypass = get_bits1(&s->gb);
  6385. decode_scaling_matrices(h, sps, NULL, 1, sps->scaling_matrix4, sps->scaling_matrix8);
  6386. }else
  6387. sps->scaling_matrix_present = 0;
  6388. sps->log2_max_frame_num= get_ue_golomb(&s->gb) + 4;
  6389. sps->poc_type= get_ue_golomb(&s->gb);
  6390. if(sps->poc_type == 0){ //FIXME #define
  6391. sps->log2_max_poc_lsb= get_ue_golomb(&s->gb) + 4;
  6392. } else if(sps->poc_type == 1){//FIXME #define
  6393. sps->delta_pic_order_always_zero_flag= get_bits1(&s->gb);
  6394. sps->offset_for_non_ref_pic= get_se_golomb(&s->gb);
  6395. sps->offset_for_top_to_bottom_field= get_se_golomb(&s->gb);
  6396. tmp= get_ue_golomb(&s->gb);
  6397. if(tmp >= sizeof(sps->offset_for_ref_frame) / sizeof(sps->offset_for_ref_frame[0])){
  6398. av_log(h->s.avctx, AV_LOG_ERROR, "poc_cycle_length overflow %u\n", tmp);
  6399. return -1;
  6400. }
  6401. sps->poc_cycle_length= tmp;
  6402. for(i=0; i<sps->poc_cycle_length; i++)
  6403. sps->offset_for_ref_frame[i]= get_se_golomb(&s->gb);
  6404. }else if(sps->poc_type != 2){
  6405. av_log(h->s.avctx, AV_LOG_ERROR, "illegal POC type %d\n", sps->poc_type);
  6406. return -1;
  6407. }
  6408. tmp= get_ue_golomb(&s->gb);
  6409. if(tmp > MAX_PICTURE_COUNT-2 || tmp >= 32){
  6410. av_log(h->s.avctx, AV_LOG_ERROR, "too many reference frames\n");
  6411. return -1;
  6412. }
  6413. sps->ref_frame_count= tmp;
  6414. sps->gaps_in_frame_num_allowed_flag= get_bits1(&s->gb);
  6415. mb_width= get_ue_golomb(&s->gb) + 1;
  6416. mb_height= get_ue_golomb(&s->gb) + 1;
  6417. if(mb_width >= INT_MAX/16 || mb_height >= INT_MAX/16 ||
  6418. avcodec_check_dimensions(NULL, 16*mb_width, 16*mb_height)){
  6419. av_log(h->s.avctx, AV_LOG_ERROR, "mb_width/height overflow\n");
  6420. return -1;
  6421. }
  6422. sps->mb_width = mb_width;
  6423. sps->mb_height= mb_height;
  6424. sps->frame_mbs_only_flag= get_bits1(&s->gb);
  6425. if(!sps->frame_mbs_only_flag)
  6426. sps->mb_aff= get_bits1(&s->gb);
  6427. else
  6428. sps->mb_aff= 0;
  6429. sps->direct_8x8_inference_flag= get_bits1(&s->gb);
  6430. #ifndef ALLOW_INTERLACE
  6431. if(sps->mb_aff)
  6432. av_log(h->s.avctx, AV_LOG_ERROR, "MBAFF support not included; enable it at compile-time.\n");
  6433. #endif
  6434. if(!sps->direct_8x8_inference_flag && sps->mb_aff)
  6435. av_log(h->s.avctx, AV_LOG_ERROR, "MBAFF + !direct_8x8_inference is not implemented\n");
  6436. sps->crop= get_bits1(&s->gb);
  6437. if(sps->crop){
  6438. sps->crop_left = get_ue_golomb(&s->gb);
  6439. sps->crop_right = get_ue_golomb(&s->gb);
  6440. sps->crop_top = get_ue_golomb(&s->gb);
  6441. sps->crop_bottom= get_ue_golomb(&s->gb);
  6442. if(sps->crop_left || sps->crop_top){
  6443. av_log(h->s.avctx, AV_LOG_ERROR, "insane cropping not completely supported, this could look slightly wrong ...\n");
  6444. }
  6445. if(sps->crop_right >= 8 || sps->crop_bottom >= (8>> !h->sps.frame_mbs_only_flag)){
  6446. av_log(h->s.avctx, AV_LOG_ERROR, "brainfart cropping not supported, this could look slightly wrong ...\n");
  6447. }
  6448. }else{
  6449. sps->crop_left =
  6450. sps->crop_right =
  6451. sps->crop_top =
  6452. sps->crop_bottom= 0;
  6453. }
  6454. sps->vui_parameters_present_flag= get_bits1(&s->gb);
  6455. if( sps->vui_parameters_present_flag )
  6456. decode_vui_parameters(h, sps);
  6457. if(s->avctx->debug&FF_DEBUG_PICT_INFO){
  6458. av_log(h->s.avctx, AV_LOG_DEBUG, "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s\n",
  6459. sps_id, sps->profile_idc, sps->level_idc,
  6460. sps->poc_type,
  6461. sps->ref_frame_count,
  6462. sps->mb_width, sps->mb_height,
  6463. sps->frame_mbs_only_flag ? "FRM" : (sps->mb_aff ? "MB-AFF" : "PIC-AFF"),
  6464. sps->direct_8x8_inference_flag ? "8B8" : "",
  6465. sps->crop_left, sps->crop_right,
  6466. sps->crop_top, sps->crop_bottom,
  6467. sps->vui_parameters_present_flag ? "VUI" : ""
  6468. );
  6469. }
  6470. return 0;
  6471. }
  6472. static void
  6473. build_qp_table(PPS *pps, int t, int index)
  6474. {
  6475. int i;
  6476. for(i = 0; i < 255; i++)
  6477. pps->chroma_qp_table[t][i & 0xff] = chroma_qp[av_clip(i + index, 0, 51)];
  6478. }
  6479. static inline int decode_picture_parameter_set(H264Context *h, int bit_length){
  6480. MpegEncContext * const s = &h->s;
  6481. unsigned int tmp, pps_id= get_ue_golomb(&s->gb);
  6482. PPS *pps;
  6483. pps = alloc_parameter_set(h, (void **)h->pps_buffers, pps_id, MAX_PPS_COUNT, sizeof(PPS), "pps");
  6484. if(pps == NULL)
  6485. return -1;
  6486. tmp= get_ue_golomb(&s->gb);
  6487. if(tmp>=MAX_SPS_COUNT || h->sps_buffers[tmp] == NULL){
  6488. av_log(h->s.avctx, AV_LOG_ERROR, "sps_id out of range\n");
  6489. return -1;
  6490. }
  6491. pps->sps_id= tmp;
  6492. pps->cabac= get_bits1(&s->gb);
  6493. pps->pic_order_present= get_bits1(&s->gb);
  6494. pps->slice_group_count= get_ue_golomb(&s->gb) + 1;
  6495. if(pps->slice_group_count > 1 ){
  6496. pps->mb_slice_group_map_type= get_ue_golomb(&s->gb);
  6497. av_log(h->s.avctx, AV_LOG_ERROR, "FMO not supported\n");
  6498. switch(pps->mb_slice_group_map_type){
  6499. case 0:
  6500. #if 0
  6501. | for( i = 0; i <= num_slice_groups_minus1; i++ ) | | |
  6502. | run_length[ i ] |1 |ue(v) |
  6503. #endif
  6504. break;
  6505. case 2:
  6506. #if 0
  6507. | for( i = 0; i < num_slice_groups_minus1; i++ ) | | |
  6508. |{ | | |
  6509. | top_left_mb[ i ] |1 |ue(v) |
  6510. | bottom_right_mb[ i ] |1 |ue(v) |
  6511. | } | | |
  6512. #endif
  6513. break;
  6514. case 3:
  6515. case 4:
  6516. case 5:
  6517. #if 0
  6518. | slice_group_change_direction_flag |1 |u(1) |
  6519. | slice_group_change_rate_minus1 |1 |ue(v) |
  6520. #endif
  6521. break;
  6522. case 6:
  6523. #if 0
  6524. | slice_group_id_cnt_minus1 |1 |ue(v) |
  6525. | for( i = 0; i <= slice_group_id_cnt_minus1; i++ | | |
  6526. |) | | |
  6527. | slice_group_id[ i ] |1 |u(v) |
  6528. #endif
  6529. break;
  6530. }
  6531. }
  6532. pps->ref_count[0]= get_ue_golomb(&s->gb) + 1;
  6533. pps->ref_count[1]= get_ue_golomb(&s->gb) + 1;
  6534. if(pps->ref_count[0]-1 > 32-1 || pps->ref_count[1]-1 > 32-1){
  6535. av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow (pps)\n");
  6536. pps->ref_count[0]= pps->ref_count[1]= 1;
  6537. return -1;
  6538. }
  6539. pps->weighted_pred= get_bits1(&s->gb);
  6540. pps->weighted_bipred_idc= get_bits(&s->gb, 2);
  6541. pps->init_qp= get_se_golomb(&s->gb) + 26;
  6542. pps->init_qs= get_se_golomb(&s->gb) + 26;
  6543. pps->chroma_qp_index_offset[0]= get_se_golomb(&s->gb);
  6544. pps->deblocking_filter_parameters_present= get_bits1(&s->gb);
  6545. pps->constrained_intra_pred= get_bits1(&s->gb);
  6546. pps->redundant_pic_cnt_present = get_bits1(&s->gb);
  6547. pps->transform_8x8_mode= 0;
  6548. h->dequant_coeff_pps= -1; //contents of sps/pps can change even if id doesn't, so reinit
  6549. memset(pps->scaling_matrix4, 16, 6*16*sizeof(uint8_t));
  6550. memset(pps->scaling_matrix8, 16, 2*64*sizeof(uint8_t));
  6551. if(get_bits_count(&s->gb) < bit_length){
  6552. pps->transform_8x8_mode= get_bits1(&s->gb);
  6553. decode_scaling_matrices(h, h->sps_buffers[pps->sps_id], pps, 0, pps->scaling_matrix4, pps->scaling_matrix8);
  6554. pps->chroma_qp_index_offset[1]= get_se_golomb(&s->gb); //second_chroma_qp_index_offset
  6555. } else {
  6556. pps->chroma_qp_index_offset[1]= pps->chroma_qp_index_offset[0];
  6557. }
  6558. build_qp_table(pps, 0, pps->chroma_qp_index_offset[0]);
  6559. if(pps->chroma_qp_index_offset[0] != pps->chroma_qp_index_offset[1]) {
  6560. build_qp_table(pps, 1, pps->chroma_qp_index_offset[1]);
  6561. h->pps.chroma_qp_diff= 1;
  6562. } else
  6563. memcpy(pps->chroma_qp_table[1], pps->chroma_qp_table[0], 256);
  6564. if(s->avctx->debug&FF_DEBUG_PICT_INFO){
  6565. av_log(h->s.avctx, AV_LOG_DEBUG, "pps:%u sps:%u %s slice_groups:%d ref:%d/%d %s qp:%d/%d/%d/%d %s %s %s %s\n",
  6566. pps_id, pps->sps_id,
  6567. pps->cabac ? "CABAC" : "CAVLC",
  6568. pps->slice_group_count,
  6569. pps->ref_count[0], pps->ref_count[1],
  6570. pps->weighted_pred ? "weighted" : "",
  6571. pps->init_qp, pps->init_qs, pps->chroma_qp_index_offset[0], pps->chroma_qp_index_offset[1],
  6572. pps->deblocking_filter_parameters_present ? "LPAR" : "",
  6573. pps->constrained_intra_pred ? "CONSTR" : "",
  6574. pps->redundant_pic_cnt_present ? "REDU" : "",
  6575. pps->transform_8x8_mode ? "8x8DCT" : ""
  6576. );
  6577. }
  6578. return 0;
  6579. }
  6580. /**
  6581. * Call decode_slice() for each context.
  6582. *
  6583. * @param h h264 master context
  6584. * @param context_count number of contexts to execute
  6585. */
  6586. static void execute_decode_slices(H264Context *h, int context_count){
  6587. MpegEncContext * const s = &h->s;
  6588. AVCodecContext * const avctx= s->avctx;
  6589. H264Context *hx;
  6590. int i;
  6591. if(context_count == 1) {
  6592. decode_slice(avctx, h);
  6593. } else {
  6594. for(i = 1; i < context_count; i++) {
  6595. hx = h->thread_context[i];
  6596. hx->s.error_resilience = avctx->error_resilience;
  6597. hx->s.error_count = 0;
  6598. }
  6599. avctx->execute(avctx, (void *)decode_slice,
  6600. (void **)h->thread_context, NULL, context_count);
  6601. /* pull back stuff from slices to master context */
  6602. hx = h->thread_context[context_count - 1];
  6603. s->mb_x = hx->s.mb_x;
  6604. s->mb_y = hx->s.mb_y;
  6605. s->dropable = hx->s.dropable;
  6606. s->picture_structure = hx->s.picture_structure;
  6607. for(i = 1; i < context_count; i++)
  6608. h->s.error_count += h->thread_context[i]->s.error_count;
  6609. }
  6610. }
  6611. static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
  6612. MpegEncContext * const s = &h->s;
  6613. AVCodecContext * const avctx= s->avctx;
  6614. int buf_index=0;
  6615. H264Context *hx; ///< thread context
  6616. int context_count = 0;
  6617. h->max_contexts = avctx->thread_count;
  6618. #if 0
  6619. int i;
  6620. for(i=0; i<50; i++){
  6621. av_log(NULL, AV_LOG_ERROR,"%02X ", buf[i]);
  6622. }
  6623. #endif
  6624. if(!(s->flags2 & CODEC_FLAG2_CHUNKS)){
  6625. h->current_slice = 0;
  6626. if (!s->first_field)
  6627. s->current_picture_ptr= NULL;
  6628. }
  6629. for(;;){
  6630. int consumed;
  6631. int dst_length;
  6632. int bit_length;
  6633. const uint8_t *ptr;
  6634. int i, nalsize = 0;
  6635. int err;
  6636. if(h->is_avc) {
  6637. if(buf_index >= buf_size) break;
  6638. nalsize = 0;
  6639. for(i = 0; i < h->nal_length_size; i++)
  6640. nalsize = (nalsize << 8) | buf[buf_index++];
  6641. if(nalsize <= 1 || (nalsize+buf_index > buf_size)){
  6642. if(nalsize == 1){
  6643. buf_index++;
  6644. continue;
  6645. }else{
  6646. av_log(h->s.avctx, AV_LOG_ERROR, "AVC: nal size %d\n", nalsize);
  6647. break;
  6648. }
  6649. }
  6650. } else {
  6651. // start code prefix search
  6652. for(; buf_index + 3 < buf_size; buf_index++){
  6653. // This should always succeed in the first iteration.
  6654. if(buf[buf_index] == 0 && buf[buf_index+1] == 0 && buf[buf_index+2] == 1)
  6655. break;
  6656. }
  6657. if(buf_index+3 >= buf_size) break;
  6658. buf_index+=3;
  6659. }
  6660. hx = h->thread_context[context_count];
  6661. ptr= decode_nal(hx, buf + buf_index, &dst_length, &consumed, h->is_avc ? nalsize : buf_size - buf_index);
  6662. if (ptr==NULL || dst_length < 0){
  6663. return -1;
  6664. }
  6665. while(ptr[dst_length - 1] == 0 && dst_length > 0)
  6666. dst_length--;
  6667. bit_length= !dst_length ? 0 : (8*dst_length - decode_rbsp_trailing(h, ptr + dst_length - 1));
  6668. if(s->avctx->debug&FF_DEBUG_STARTCODE){
  6669. av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d at %d/%d length %d\n", hx->nal_unit_type, buf_index, buf_size, dst_length);
  6670. }
  6671. if (h->is_avc && (nalsize != consumed)){
  6672. av_log(h->s.avctx, AV_LOG_ERROR, "AVC: Consumed only %d bytes instead of %d\n", consumed, nalsize);
  6673. consumed= nalsize;
  6674. }
  6675. buf_index += consumed;
  6676. if( (s->hurry_up == 1 && h->nal_ref_idc == 0) //FIXME do not discard SEI id
  6677. ||(avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc == 0))
  6678. continue;
  6679. again:
  6680. err = 0;
  6681. switch(hx->nal_unit_type){
  6682. case NAL_IDR_SLICE:
  6683. if (h->nal_unit_type != NAL_IDR_SLICE) {
  6684. av_log(h->s.avctx, AV_LOG_ERROR, "Invalid mix of idr and non-idr slices");
  6685. return -1;
  6686. }
  6687. idr(h); //FIXME ensure we don't loose some frames if there is reordering
  6688. case NAL_SLICE:
  6689. init_get_bits(&hx->s.gb, ptr, bit_length);
  6690. hx->intra_gb_ptr=
  6691. hx->inter_gb_ptr= &hx->s.gb;
  6692. hx->s.data_partitioning = 0;
  6693. if((err = decode_slice_header(hx, h)))
  6694. break;
  6695. s->current_picture_ptr->key_frame|= (hx->nal_unit_type == NAL_IDR_SLICE);
  6696. if(hx->redundant_pic_count==0 && hx->s.hurry_up < 5
  6697. && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
  6698. && (avctx->skip_frame < AVDISCARD_BIDIR || hx->slice_type!=FF_B_TYPE)
  6699. && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type==FF_I_TYPE)
  6700. && avctx->skip_frame < AVDISCARD_ALL)
  6701. context_count++;
  6702. break;
  6703. case NAL_DPA:
  6704. init_get_bits(&hx->s.gb, ptr, bit_length);
  6705. hx->intra_gb_ptr=
  6706. hx->inter_gb_ptr= NULL;
  6707. hx->s.data_partitioning = 1;
  6708. err = decode_slice_header(hx, h);
  6709. break;
  6710. case NAL_DPB:
  6711. init_get_bits(&hx->intra_gb, ptr, bit_length);
  6712. hx->intra_gb_ptr= &hx->intra_gb;
  6713. break;
  6714. case NAL_DPC:
  6715. init_get_bits(&hx->inter_gb, ptr, bit_length);
  6716. hx->inter_gb_ptr= &hx->inter_gb;
  6717. if(hx->redundant_pic_count==0 && hx->intra_gb_ptr && hx->s.data_partitioning
  6718. && s->context_initialized
  6719. && s->hurry_up < 5
  6720. && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
  6721. && (avctx->skip_frame < AVDISCARD_BIDIR || hx->slice_type!=FF_B_TYPE)
  6722. && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type==FF_I_TYPE)
  6723. && avctx->skip_frame < AVDISCARD_ALL)
  6724. context_count++;
  6725. break;
  6726. case NAL_SEI:
  6727. init_get_bits(&s->gb, ptr, bit_length);
  6728. decode_sei(h);
  6729. break;
  6730. case NAL_SPS:
  6731. init_get_bits(&s->gb, ptr, bit_length);
  6732. decode_seq_parameter_set(h);
  6733. if(s->flags& CODEC_FLAG_LOW_DELAY)
  6734. s->low_delay=1;
  6735. if(avctx->has_b_frames < 2)
  6736. avctx->has_b_frames= !s->low_delay;
  6737. break;
  6738. case NAL_PPS:
  6739. init_get_bits(&s->gb, ptr, bit_length);
  6740. decode_picture_parameter_set(h, bit_length);
  6741. break;
  6742. case NAL_AUD:
  6743. case NAL_END_SEQUENCE:
  6744. case NAL_END_STREAM:
  6745. case NAL_FILLER_DATA:
  6746. case NAL_SPS_EXT:
  6747. case NAL_AUXILIARY_SLICE:
  6748. break;
  6749. default:
  6750. av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n", h->nal_unit_type, bit_length);
  6751. }
  6752. if(context_count == h->max_contexts) {
  6753. execute_decode_slices(h, context_count);
  6754. context_count = 0;
  6755. }
  6756. if (err < 0)
  6757. av_log(h->s.avctx, AV_LOG_ERROR, "decode_slice_header error\n");
  6758. else if(err == 1) {
  6759. /* Slice could not be decoded in parallel mode, copy down
  6760. * NAL unit stuff to context 0 and restart. Note that
  6761. * rbsp_buffer is not transfered, but since we no longer
  6762. * run in parallel mode this should not be an issue. */
  6763. h->nal_unit_type = hx->nal_unit_type;
  6764. h->nal_ref_idc = hx->nal_ref_idc;
  6765. hx = h;
  6766. goto again;
  6767. }
  6768. }
  6769. if(context_count)
  6770. execute_decode_slices(h, context_count);
  6771. return buf_index;
  6772. }
  6773. /**
  6774. * returns the number of bytes consumed for building the current frame
  6775. */
  6776. static int get_consumed_bytes(MpegEncContext *s, int pos, int buf_size){
  6777. if(s->flags&CODEC_FLAG_TRUNCATED){
  6778. pos -= s->parse_context.last_index;
  6779. if(pos<0) pos=0; // FIXME remove (unneeded?)
  6780. return pos;
  6781. }else{
  6782. if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
  6783. if(pos+10>buf_size) pos=buf_size; // oops ;)
  6784. return pos;
  6785. }
  6786. }
  6787. static int decode_frame(AVCodecContext *avctx,
  6788. void *data, int *data_size,
  6789. const uint8_t *buf, int buf_size)
  6790. {
  6791. H264Context *h = avctx->priv_data;
  6792. MpegEncContext *s = &h->s;
  6793. AVFrame *pict = data;
  6794. int buf_index;
  6795. s->flags= avctx->flags;
  6796. s->flags2= avctx->flags2;
  6797. if(s->flags&CODEC_FLAG_TRUNCATED){
  6798. const int next= ff_h264_find_frame_end(h, buf, buf_size);
  6799. assert((buf_size > 0) || (next == END_NOT_FOUND));
  6800. if( ff_combine_frame(&s->parse_context, next, &buf, &buf_size) < 0 )
  6801. return buf_size;
  6802. //printf("next:%d buf_size:%d last_index:%d\n", next, buf_size, s->parse_context.last_index);
  6803. }
  6804. /* no supplementary picture */
  6805. if (buf_size == 0) {
  6806. Picture *out;
  6807. int i, out_idx;
  6808. //FIXME factorize this with the output code below
  6809. out = h->delayed_pic[0];
  6810. out_idx = 0;
  6811. for(i=1; h->delayed_pic[i] && !h->delayed_pic[i]->key_frame; i++)
  6812. if(h->delayed_pic[i]->poc < out->poc){
  6813. out = h->delayed_pic[i];
  6814. out_idx = i;
  6815. }
  6816. for(i=out_idx; h->delayed_pic[i]; i++)
  6817. h->delayed_pic[i] = h->delayed_pic[i+1];
  6818. if(out){
  6819. *data_size = sizeof(AVFrame);
  6820. *pict= *(AVFrame*)out;
  6821. }
  6822. return 0;
  6823. }
  6824. if(h->is_avc && !h->got_avcC) {
  6825. int i, cnt, nalsize;
  6826. unsigned char *p = avctx->extradata;
  6827. if(avctx->extradata_size < 7) {
  6828. av_log(avctx, AV_LOG_ERROR, "avcC too short\n");
  6829. return -1;
  6830. }
  6831. if(*p != 1) {
  6832. av_log(avctx, AV_LOG_ERROR, "Unknown avcC version %d\n", *p);
  6833. return -1;
  6834. }
  6835. /* sps and pps in the avcC always have length coded with 2 bytes,
  6836. so put a fake nal_length_size = 2 while parsing them */
  6837. h->nal_length_size = 2;
  6838. // Decode sps from avcC
  6839. cnt = *(p+5) & 0x1f; // Number of sps
  6840. p += 6;
  6841. for (i = 0; i < cnt; i++) {
  6842. nalsize = AV_RB16(p) + 2;
  6843. if(decode_nal_units(h, p, nalsize) < 0) {
  6844. av_log(avctx, AV_LOG_ERROR, "Decoding sps %d from avcC failed\n", i);
  6845. return -1;
  6846. }
  6847. p += nalsize;
  6848. }
  6849. // Decode pps from avcC
  6850. cnt = *(p++); // Number of pps
  6851. for (i = 0; i < cnt; i++) {
  6852. nalsize = AV_RB16(p) + 2;
  6853. if(decode_nal_units(h, p, nalsize) != nalsize) {
  6854. av_log(avctx, AV_LOG_ERROR, "Decoding pps %d from avcC failed\n", i);
  6855. return -1;
  6856. }
  6857. p += nalsize;
  6858. }
  6859. // Now store right nal length size, that will be use to parse all other nals
  6860. h->nal_length_size = ((*(((char*)(avctx->extradata))+4))&0x03)+1;
  6861. // Do not reparse avcC
  6862. h->got_avcC = 1;
  6863. }
  6864. if(avctx->frame_number==0 && !h->is_avc && s->avctx->extradata_size){
  6865. if(decode_nal_units(h, s->avctx->extradata, s->avctx->extradata_size) < 0)
  6866. return -1;
  6867. }
  6868. buf_index=decode_nal_units(h, buf, buf_size);
  6869. if(buf_index < 0)
  6870. return -1;
  6871. if(!(s->flags2 & CODEC_FLAG2_CHUNKS) && !s->current_picture_ptr){
  6872. if (avctx->skip_frame >= AVDISCARD_NONREF || s->hurry_up) return 0;
  6873. av_log(avctx, AV_LOG_ERROR, "no frame!\n");
  6874. return -1;
  6875. }
  6876. if(!(s->flags2 & CODEC_FLAG2_CHUNKS) || (s->mb_y >= s->mb_height && s->mb_height)){
  6877. Picture *out = s->current_picture_ptr;
  6878. Picture *cur = s->current_picture_ptr;
  6879. Picture *prev = h->delayed_output_pic;
  6880. int i, pics, cross_idr, out_of_order, out_idx;
  6881. s->mb_y= 0;
  6882. s->current_picture_ptr->qscale_type= FF_QSCALE_TYPE_H264;
  6883. s->current_picture_ptr->pict_type= s->pict_type;
  6884. h->prev_frame_num_offset= h->frame_num_offset;
  6885. h->prev_frame_num= h->frame_num;
  6886. if(!s->dropable) {
  6887. h->prev_poc_msb= h->poc_msb;
  6888. h->prev_poc_lsb= h->poc_lsb;
  6889. execute_ref_pic_marking(h, h->mmco, h->mmco_index);
  6890. }
  6891. /*
  6892. * FIXME: Error handling code does not seem to support interlaced
  6893. * when slices span multiple rows
  6894. * The ff_er_add_slice calls don't work right for bottom
  6895. * fields; they cause massive erroneous error concealing
  6896. * Error marking covers both fields (top and bottom).
  6897. * This causes a mismatched s->error_count
  6898. * and a bad error table. Further, the error count goes to
  6899. * INT_MAX when called for bottom field, because mb_y is
  6900. * past end by one (callers fault) and resync_mb_y != 0
  6901. * causes problems for the first MB line, too.
  6902. */
  6903. if (!FIELD_PICTURE)
  6904. ff_er_frame_end(s);
  6905. MPV_frame_end(s);
  6906. if (s->first_field) {
  6907. /* Wait for second field. */
  6908. *data_size = 0;
  6909. } else {
  6910. cur->interlaced_frame = FIELD_OR_MBAFF_PICTURE;
  6911. /* Derive top_field_first from field pocs. */
  6912. cur->top_field_first = cur->field_poc[0] < cur->field_poc[1];
  6913. //FIXME do something with unavailable reference frames
  6914. #if 0 //decode order
  6915. *data_size = sizeof(AVFrame);
  6916. #else
  6917. /* Sort B-frames into display order */
  6918. if(h->sps.bitstream_restriction_flag
  6919. && s->avctx->has_b_frames < h->sps.num_reorder_frames){
  6920. s->avctx->has_b_frames = h->sps.num_reorder_frames;
  6921. s->low_delay = 0;
  6922. }
  6923. pics = 0;
  6924. while(h->delayed_pic[pics]) pics++;
  6925. assert(pics+1 < sizeof(h->delayed_pic) / sizeof(h->delayed_pic[0]));
  6926. h->delayed_pic[pics++] = cur;
  6927. if(cur->reference == 0)
  6928. cur->reference = DELAYED_PIC_REF;
  6929. cross_idr = 0;
  6930. for(i=0; h->delayed_pic[i]; i++)
  6931. if(h->delayed_pic[i]->key_frame || h->delayed_pic[i]->poc==0)
  6932. cross_idr = 1;
  6933. out = h->delayed_pic[0];
  6934. out_idx = 0;
  6935. for(i=1; h->delayed_pic[i] && !h->delayed_pic[i]->key_frame; i++)
  6936. if(h->delayed_pic[i]->poc < out->poc){
  6937. out = h->delayed_pic[i];
  6938. out_idx = i;
  6939. }
  6940. out_of_order = !cross_idr && prev && out->poc < prev->poc;
  6941. if(h->sps.bitstream_restriction_flag && s->avctx->has_b_frames >= h->sps.num_reorder_frames)
  6942. { }
  6943. else if(prev && pics <= s->avctx->has_b_frames)
  6944. out = prev;
  6945. else if((out_of_order && pics-1 == s->avctx->has_b_frames && pics < 15)
  6946. || (s->low_delay &&
  6947. ((!cross_idr && prev && out->poc > prev->poc + 2)
  6948. || cur->pict_type == FF_B_TYPE)))
  6949. {
  6950. s->low_delay = 0;
  6951. s->avctx->has_b_frames++;
  6952. out = prev;
  6953. }
  6954. else if(out_of_order)
  6955. out = prev;
  6956. if(out_of_order || pics > s->avctx->has_b_frames){
  6957. for(i=out_idx; h->delayed_pic[i]; i++)
  6958. h->delayed_pic[i] = h->delayed_pic[i+1];
  6959. }
  6960. if(prev == out)
  6961. *data_size = 0;
  6962. else
  6963. *data_size = sizeof(AVFrame);
  6964. if(prev && prev != out && prev->reference == DELAYED_PIC_REF)
  6965. prev->reference = 0;
  6966. h->delayed_output_pic = out;
  6967. #endif
  6968. if(out)
  6969. *pict= *(AVFrame*)out;
  6970. else
  6971. av_log(avctx, AV_LOG_DEBUG, "no picture\n");
  6972. }
  6973. }
  6974. assert(pict->data[0] || !*data_size);
  6975. ff_print_debug_info(s, pict);
  6976. //printf("out %d\n", (int)pict->data[0]);
  6977. #if 0 //?
  6978. /* Return the Picture timestamp as the frame number */
  6979. /* we subtract 1 because it is added on utils.c */
  6980. avctx->frame_number = s->picture_number - 1;
  6981. #endif
  6982. return get_consumed_bytes(s, buf_index, buf_size);
  6983. }
  6984. #if 0
  6985. static inline void fill_mb_avail(H264Context *h){
  6986. MpegEncContext * const s = &h->s;
  6987. const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
  6988. if(s->mb_y){
  6989. h->mb_avail[0]= s->mb_x && h->slice_table[mb_xy - s->mb_stride - 1] == h->slice_num;
  6990. h->mb_avail[1]= h->slice_table[mb_xy - s->mb_stride ] == h->slice_num;
  6991. h->mb_avail[2]= s->mb_x+1 < s->mb_width && h->slice_table[mb_xy - s->mb_stride + 1] == h->slice_num;
  6992. }else{
  6993. h->mb_avail[0]=
  6994. h->mb_avail[1]=
  6995. h->mb_avail[2]= 0;
  6996. }
  6997. h->mb_avail[3]= s->mb_x && h->slice_table[mb_xy - 1] == h->slice_num;
  6998. h->mb_avail[4]= 1; //FIXME move out
  6999. h->mb_avail[5]= 0; //FIXME move out
  7000. }
  7001. #endif
  7002. #ifdef TEST
  7003. #undef printf
  7004. #undef random
  7005. #define COUNT 8000
  7006. #define SIZE (COUNT*40)
  7007. int main(void){
  7008. int i;
  7009. uint8_t temp[SIZE];
  7010. PutBitContext pb;
  7011. GetBitContext gb;
  7012. // int int_temp[10000];
  7013. DSPContext dsp;
  7014. AVCodecContext avctx;
  7015. dsputil_init(&dsp, &avctx);
  7016. init_put_bits(&pb, temp, SIZE);
  7017. printf("testing unsigned exp golomb\n");
  7018. for(i=0; i<COUNT; i++){
  7019. START_TIMER
  7020. set_ue_golomb(&pb, i);
  7021. STOP_TIMER("set_ue_golomb");
  7022. }
  7023. flush_put_bits(&pb);
  7024. init_get_bits(&gb, temp, 8*SIZE);
  7025. for(i=0; i<COUNT; i++){
  7026. int j, s;
  7027. s= show_bits(&gb, 24);
  7028. START_TIMER
  7029. j= get_ue_golomb(&gb);
  7030. if(j != i){
  7031. printf("mismatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
  7032. // return -1;
  7033. }
  7034. STOP_TIMER("get_ue_golomb");
  7035. }
  7036. init_put_bits(&pb, temp, SIZE);
  7037. printf("testing signed exp golomb\n");
  7038. for(i=0; i<COUNT; i++){
  7039. START_TIMER
  7040. set_se_golomb(&pb, i - COUNT/2);
  7041. STOP_TIMER("set_se_golomb");
  7042. }
  7043. flush_put_bits(&pb);
  7044. init_get_bits(&gb, temp, 8*SIZE);
  7045. for(i=0; i<COUNT; i++){
  7046. int j, s;
  7047. s= show_bits(&gb, 24);
  7048. START_TIMER
  7049. j= get_se_golomb(&gb);
  7050. if(j != i - COUNT/2){
  7051. printf("mismatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
  7052. // return -1;
  7053. }
  7054. STOP_TIMER("get_se_golomb");
  7055. }
  7056. #if 0
  7057. printf("testing 4x4 (I)DCT\n");
  7058. DCTELEM block[16];
  7059. uint8_t src[16], ref[16];
  7060. uint64_t error= 0, max_error=0;
  7061. for(i=0; i<COUNT; i++){
  7062. int j;
  7063. // printf("%d %d %d\n", r1, r2, (r2-r1)*16);
  7064. for(j=0; j<16; j++){
  7065. ref[j]= random()%255;
  7066. src[j]= random()%255;
  7067. }
  7068. h264_diff_dct_c(block, src, ref, 4);
  7069. //normalize
  7070. for(j=0; j<16; j++){
  7071. // printf("%d ", block[j]);
  7072. block[j]= block[j]*4;
  7073. if(j&1) block[j]= (block[j]*4 + 2)/5;
  7074. if(j&4) block[j]= (block[j]*4 + 2)/5;
  7075. }
  7076. // printf("\n");
  7077. s->dsp.h264_idct_add(ref, block, 4);
  7078. /* for(j=0; j<16; j++){
  7079. printf("%d ", ref[j]);
  7080. }
  7081. printf("\n");*/
  7082. for(j=0; j<16; j++){
  7083. int diff= FFABS(src[j] - ref[j]);
  7084. error+= diff*diff;
  7085. max_error= FFMAX(max_error, diff);
  7086. }
  7087. }
  7088. printf("error=%f max_error=%d\n", ((float)error)/COUNT/16, (int)max_error );
  7089. printf("testing quantizer\n");
  7090. for(qp=0; qp<52; qp++){
  7091. for(i=0; i<16; i++)
  7092. src1_block[i]= src2_block[i]= random()%255;
  7093. }
  7094. printf("Testing NAL layer\n");
  7095. uint8_t bitstream[COUNT];
  7096. uint8_t nal[COUNT*2];
  7097. H264Context h;
  7098. memset(&h, 0, sizeof(H264Context));
  7099. for(i=0; i<COUNT; i++){
  7100. int zeros= i;
  7101. int nal_length;
  7102. int consumed;
  7103. int out_length;
  7104. uint8_t *out;
  7105. int j;
  7106. for(j=0; j<COUNT; j++){
  7107. bitstream[j]= (random() % 255) + 1;
  7108. }
  7109. for(j=0; j<zeros; j++){
  7110. int pos= random() % COUNT;
  7111. while(bitstream[pos] == 0){
  7112. pos++;
  7113. pos %= COUNT;
  7114. }
  7115. bitstream[pos]=0;
  7116. }
  7117. START_TIMER
  7118. nal_length= encode_nal(&h, nal, bitstream, COUNT, COUNT*2);
  7119. if(nal_length<0){
  7120. printf("encoding failed\n");
  7121. return -1;
  7122. }
  7123. out= decode_nal(&h, nal, &out_length, &consumed, nal_length);
  7124. STOP_TIMER("NAL")
  7125. if(out_length != COUNT){
  7126. printf("incorrect length %d %d\n", out_length, COUNT);
  7127. return -1;
  7128. }
  7129. if(consumed != nal_length){
  7130. printf("incorrect consumed length %d %d\n", nal_length, consumed);
  7131. return -1;
  7132. }
  7133. if(memcmp(bitstream, out, COUNT)){
  7134. printf("mismatch\n");
  7135. return -1;
  7136. }
  7137. }
  7138. #endif
  7139. printf("Testing RBSP\n");
  7140. return 0;
  7141. }
  7142. #endif /* TEST */
  7143. static av_cold int decode_end(AVCodecContext *avctx)
  7144. {
  7145. H264Context *h = avctx->priv_data;
  7146. MpegEncContext *s = &h->s;
  7147. av_freep(&h->rbsp_buffer[0]);
  7148. av_freep(&h->rbsp_buffer[1]);
  7149. free_tables(h); //FIXME cleanup init stuff perhaps
  7150. MPV_common_end(s);
  7151. // memset(h, 0, sizeof(H264Context));
  7152. return 0;
  7153. }
  7154. AVCodec h264_decoder = {
  7155. "h264",
  7156. CODEC_TYPE_VIDEO,
  7157. CODEC_ID_H264,
  7158. sizeof(H264Context),
  7159. decode_init,
  7160. NULL,
  7161. decode_end,
  7162. decode_frame,
  7163. /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
  7164. .flush= flush_dpb,
  7165. .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  7166. };
  7167. #include "svq3.c"