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.

8084 lines
311KB

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