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.

8145 lines
314KB

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