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.

790 lines
25KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * @brief IntraX8 (J-Frame) subdecoder, used by WMV2 and VC-1
  21. */
  22. #include "avcodec.h"
  23. #include "get_bits.h"
  24. #include "mpegvideo.h"
  25. #include "msmpeg4data.h"
  26. #include "intrax8huf.h"
  27. #include "intrax8.h"
  28. #define MAX_TABLE_DEPTH(table_bits, max_bits) ((max_bits+table_bits-1)/table_bits)
  29. #define DC_VLC_BITS 9
  30. #define AC_VLC_BITS 9
  31. #define OR_VLC_BITS 7
  32. #define DC_VLC_MTD MAX_TABLE_DEPTH(DC_VLC_BITS, MAX_DC_VLC_BITS)
  33. #define AC_VLC_MTD MAX_TABLE_DEPTH(AC_VLC_BITS, MAX_AC_VLC_BITS)
  34. #define OR_VLC_MTD MAX_TABLE_DEPTH(OR_VLC_BITS, MAX_OR_VLC_BITS)
  35. static VLC j_ac_vlc[2][2][8]; //[quant<13],[intra/inter],[select]
  36. static VLC j_dc_vlc[2][8]; //[quant], [select]
  37. static VLC j_orient_vlc[2][4]; //[quant], [select]
  38. static av_cold void x8_vlc_init(void){
  39. int i;
  40. int offset = 0;
  41. int sizeidx = 0;
  42. static const uint16_t sizes[8*4 + 8*2 + 2 + 4] = {
  43. 576, 548, 582, 618, 546, 616, 560, 642,
  44. 584, 582, 704, 664, 512, 544, 656, 640,
  45. 512, 648, 582, 566, 532, 614, 596, 648,
  46. 586, 552, 584, 590, 544, 578, 584, 624,
  47. 528, 528, 526, 528, 536, 528, 526, 544,
  48. 544, 512, 512, 528, 528, 544, 512, 544,
  49. 128, 128, 128, 128, 128, 128};
  50. static VLC_TYPE table[28150][2];
  51. #define init_ac_vlc(dst,src) \
  52. dst.table = &table[offset]; \
  53. dst.table_allocated = sizes[sizeidx]; \
  54. offset += sizes[sizeidx++]; \
  55. init_vlc(&dst, \
  56. AC_VLC_BITS,77, \
  57. &src[1],4,2, \
  58. &src[0],4,2, \
  59. INIT_VLC_USE_NEW_STATIC)
  60. //set ac tables
  61. for(i=0;i<8;i++){
  62. init_ac_vlc( j_ac_vlc[0][0][i], x8_ac0_highquant_table[i][0] );
  63. init_ac_vlc( j_ac_vlc[0][1][i], x8_ac1_highquant_table[i][0] );
  64. init_ac_vlc( j_ac_vlc[1][0][i], x8_ac0_lowquant_table [i][0] );
  65. init_ac_vlc( j_ac_vlc[1][1][i], x8_ac1_lowquant_table [i][0] );
  66. }
  67. #undef init_ac_vlc
  68. //set dc tables
  69. #define init_dc_vlc(dst,src) \
  70. dst.table = &table[offset]; \
  71. dst.table_allocated = sizes[sizeidx]; \
  72. offset += sizes[sizeidx++]; \
  73. init_vlc(&dst, \
  74. DC_VLC_BITS,34, \
  75. &src[1],4,2, \
  76. &src[0],4,2, \
  77. INIT_VLC_USE_NEW_STATIC);
  78. for(i=0;i<8;i++){
  79. init_dc_vlc( j_dc_vlc[0][i], x8_dc_highquant_table[i][0]);
  80. init_dc_vlc( j_dc_vlc[1][i], x8_dc_lowquant_table [i][0]);
  81. }
  82. #undef init_dc_vlc
  83. //set orient tables
  84. #define init_or_vlc(dst,src) \
  85. dst.table = &table[offset]; \
  86. dst.table_allocated = sizes[sizeidx]; \
  87. offset += sizes[sizeidx++]; \
  88. init_vlc(&dst, \
  89. OR_VLC_BITS,12, \
  90. &src[1],4,2, \
  91. &src[0],4,2, \
  92. INIT_VLC_USE_NEW_STATIC);
  93. for(i=0;i<2;i++){
  94. init_or_vlc( j_orient_vlc[0][i], x8_orient_highquant_table[i][0]);
  95. }
  96. for(i=0;i<4;i++){
  97. init_or_vlc( j_orient_vlc[1][i], x8_orient_lowquant_table [i][0])
  98. }
  99. if (offset != sizeof(table)/sizeof(VLC_TYPE)/2)
  100. av_log(NULL, AV_LOG_ERROR, "table size %i does not match needed %i\n", (int)(sizeof(table)/sizeof(VLC_TYPE)/2), offset);
  101. }
  102. #undef init_or_vlc
  103. static void x8_reset_vlc_tables(IntraX8Context * w){
  104. memset(w->j_dc_vlc,0,sizeof(w->j_dc_vlc));
  105. memset(w->j_ac_vlc,0,sizeof(w->j_ac_vlc));
  106. w->j_orient_vlc=NULL;
  107. }
  108. static inline void x8_select_ac_table(IntraX8Context * const w , int mode){
  109. MpegEncContext * const s= w->s;
  110. int table_index;
  111. assert(mode<4);
  112. if( w->j_ac_vlc[mode] ) return;
  113. table_index = get_bits(&s->gb, 3);
  114. w->j_ac_vlc[mode] = &j_ac_vlc[w->quant<13][mode>>1][table_index];//2 modes use same tables
  115. assert(w->j_ac_vlc[mode]);
  116. }
  117. static inline int x8_get_orient_vlc(IntraX8Context * w){
  118. MpegEncContext * const s= w->s;
  119. int table_index;
  120. if(!w->j_orient_vlc ){
  121. table_index = get_bits(&s->gb, 1+(w->quant<13) );
  122. w->j_orient_vlc = &j_orient_vlc[w->quant<13][table_index];
  123. }
  124. assert(w->j_orient_vlc);
  125. assert(w->j_orient_vlc->table);
  126. return get_vlc2(&s->gb, w->j_orient_vlc->table, OR_VLC_BITS, OR_VLC_MTD);
  127. }
  128. #define extra_bits(eb) (eb)
  129. #define extra_run (0xFF<<8)
  130. #define extra_level (0x00<<8)
  131. #define run_offset(r) ((r)<<16)
  132. #define level_offset(l) ((l)<<24)
  133. static const uint32_t ac_decode_table[]={
  134. /*46*/ extra_bits(3) | extra_run | run_offset(16) | level_offset( 0),
  135. /*47*/ extra_bits(3) | extra_run | run_offset(24) | level_offset( 0),
  136. /*48*/ extra_bits(2) | extra_run | run_offset( 4) | level_offset( 1),
  137. /*49*/ extra_bits(3) | extra_run | run_offset( 8) | level_offset( 1),
  138. /*50*/ extra_bits(5) | extra_run | run_offset(32) | level_offset( 0),
  139. /*51*/ extra_bits(4) | extra_run | run_offset(16) | level_offset( 1),
  140. /*52*/ extra_bits(2) | extra_level | run_offset( 0) | level_offset( 4),
  141. /*53*/ extra_bits(2) | extra_level | run_offset( 0) | level_offset( 8),
  142. /*54*/ extra_bits(2) | extra_level | run_offset( 0) | level_offset(12),
  143. /*55*/ extra_bits(3) | extra_level | run_offset( 0) | level_offset(16),
  144. /*56*/ extra_bits(3) | extra_level | run_offset( 0) | level_offset(24),
  145. /*57*/ extra_bits(2) | extra_level | run_offset( 1) | level_offset( 3),
  146. /*58*/ extra_bits(3) | extra_level | run_offset( 1) | level_offset( 7),
  147. /*59*/ extra_bits(2) | extra_run | run_offset(16) | level_offset( 0),
  148. /*60*/ extra_bits(2) | extra_run | run_offset(20) | level_offset( 0),
  149. /*61*/ extra_bits(2) | extra_run | run_offset(24) | level_offset( 0),
  150. /*62*/ extra_bits(2) | extra_run | run_offset(28) | level_offset( 0),
  151. /*63*/ extra_bits(4) | extra_run | run_offset(32) | level_offset( 0),
  152. /*64*/ extra_bits(4) | extra_run | run_offset(48) | level_offset( 0),
  153. /*65*/ extra_bits(2) | extra_run | run_offset( 4) | level_offset( 1),
  154. /*66*/ extra_bits(3) | extra_run | run_offset( 8) | level_offset( 1),
  155. /*67*/ extra_bits(4) | extra_run | run_offset(16) | level_offset( 1),
  156. /*68*/ extra_bits(2) | extra_level | run_offset( 0) | level_offset( 4),
  157. /*69*/ extra_bits(3) | extra_level | run_offset( 0) | level_offset( 8),
  158. /*70*/ extra_bits(4) | extra_level | run_offset( 0) | level_offset(16),
  159. /*71*/ extra_bits(2) | extra_level | run_offset( 1) | level_offset( 3),
  160. /*72*/ extra_bits(3) | extra_level | run_offset( 1) | level_offset( 7),
  161. };
  162. //extra_bits = 3bits; extra_run/level = 1 bit; run_offset = 6bits; level_offset = 5 bits;
  163. #undef extra_bits
  164. #undef extra_run
  165. #undef extra_level
  166. #undef run_offset
  167. #undef level_offset
  168. static void x8_get_ac_rlf(IntraX8Context * const w, const int mode,
  169. int * const run, int * const level, int * const final){
  170. MpegEncContext * const s= w->s;
  171. int i,e;
  172. // x8_select_ac_table(w,mode);
  173. i = get_vlc2(&s->gb, w->j_ac_vlc[mode]->table, AC_VLC_BITS, AC_VLC_MTD);
  174. if(i<46){ //[0-45]
  175. int t,l;
  176. if(i<0){
  177. (*level)=(*final)=//prevent 'may be used unilitialized'
  178. (*run)=64;//this would cause error exit in the ac loop
  179. return;
  180. }
  181. (*final) = t = (i>22);
  182. i-=23*t;
  183. /*
  184. i== 0-15 r=0-15 l=0 ;r=i& %01111
  185. i==16-19 r=0-3 l=1 ;r=i& %00011
  186. i==20-21 r=0-1 l=2 ;r=i& %00001
  187. i==22 r=0 l=3 ;r=i& %00000
  188. l=lut_l[i/2]={0,0,0,0,0,0,0,0,1,1,2,3}[i>>1];// 11 10'01 01'00 00'00 00'00 00'00 00 => 0xE50000
  189. t=lut_mask[l]={0x0f,0x03,0x01,0x00}[l]; as i<256 the higher bits do not matter */
  190. l=(0xE50000>>(i&(0x1E)))&3;/*0x1E or (~1) or ((i>>1)<<1)*/
  191. t=(0x01030F>>(l<<3));
  192. (*run) = i&t;
  193. (*level) = l;
  194. }else if(i<73){//[46-72]
  195. uint32_t sm;
  196. uint32_t mask;
  197. i-=46;
  198. sm=ac_decode_table[i];
  199. e=get_bits(&s->gb,sm&0xF);sm>>=8;//3bits
  200. mask=sm&0xff;sm>>=8; //1bit
  201. (*run) =(sm&0xff) + (e&( mask));//6bits
  202. (*level)=(sm>>8) + (e&(~mask));//5bits
  203. (*final)=i>(58-46);
  204. }else if(i<75){//[73-74]
  205. static const uint8_t crazy_mix_runlevel[32]={
  206. 0x22,0x32,0x33,0x53,0x23,0x42,0x43,0x63,
  207. 0x24,0x52,0x34,0x73,0x25,0x62,0x44,0x83,
  208. 0x26,0x72,0x35,0x54,0x27,0x82,0x45,0x64,
  209. 0x28,0x92,0x36,0x74,0x29,0xa2,0x46,0x84};
  210. (*final)=!(i&1);
  211. e=get_bits(&s->gb,5);//get the extra bits
  212. (*run) =crazy_mix_runlevel[e]>>4;
  213. (*level)=crazy_mix_runlevel[e]&0x0F;
  214. }else{
  215. (*level)=get_bits( &s->gb, 7-3*(i&1));
  216. (*run) =get_bits( &s->gb, 6);
  217. (*final)=get_bits1(&s->gb);
  218. }
  219. return;
  220. }
  221. //static const uint8_t dc_extra_sbits[] ={0, 1,1, 1,1, 2,2, 3,3, 4,4, 5,5, 6,6, 7,7 };
  222. static const uint8_t dc_index_offset[] ={ 0, 1,2, 3,4, 5,7, 9,13, 17,25, 33,49, 65,97, 129,193};
  223. static int x8_get_dc_rlf(IntraX8Context * const w,int const mode, int * const level, int * const final){
  224. MpegEncContext * const s= w->s;
  225. int i,e,c;
  226. assert(mode<3);
  227. if( !w->j_dc_vlc[mode] ) {
  228. int table_index;
  229. table_index = get_bits(&s->gb, 3);
  230. //4 modes, same table
  231. w->j_dc_vlc[mode]= &j_dc_vlc[w->quant<13][table_index];
  232. }
  233. assert(w->j_dc_vlc);
  234. assert(w->j_dc_vlc[mode]->table);
  235. i=get_vlc2(&s->gb, w->j_dc_vlc[mode]->table, DC_VLC_BITS, DC_VLC_MTD);
  236. /*(i>=17) {i-=17;final=1;}*/
  237. c= i>16;
  238. (*final)=c;
  239. i-=17*c;
  240. if(i<=0){
  241. (*level)=0;
  242. return -i;
  243. }
  244. c=(i+1)>>1;//hackish way to calculate dc_extra_sbits[]
  245. c-=c>1;
  246. e=get_bits(&s->gb,c);//get the extra bits
  247. i=dc_index_offset[i]+(e>>1);
  248. e= -(e & 1);//0,0xffffff
  249. (*level)= (i ^ e) - e;// (i^0)-0 , (i^0xff)-(-1)
  250. return 0;
  251. }
  252. //end of huffman
  253. static int x8_setup_spatial_predictor(IntraX8Context * const w, const int chroma){
  254. MpegEncContext * const s= w->s;
  255. int range;
  256. int sum;
  257. int quant;
  258. s->dsp.x8_setup_spatial_compensation(s->dest[chroma], s->edge_emu_buffer,
  259. s->current_picture.linesize[chroma>0],
  260. &range, &sum, w->edges);
  261. if(chroma){
  262. w->orient=w->chroma_orient;
  263. quant=w->quant_dc_chroma;
  264. }else{
  265. quant=w->quant;
  266. }
  267. w->flat_dc=0;
  268. if(range < quant || range < 3){
  269. w->orient=0;
  270. if(range < 3){//yep you read right, a +-1 idct error may break decoding!
  271. w->flat_dc=1;
  272. sum+=9;
  273. w->predicted_dc = (sum*6899)>>17;//((1<<17)+9)/(8+8+1+2)=6899
  274. }
  275. }
  276. if(chroma)
  277. return 0;
  278. assert(w->orient < 3);
  279. if(range < 2*w->quant){
  280. if( (w->edges&3) == 0){
  281. if(w->orient==1) w->orient=11;
  282. if(w->orient==2) w->orient=10;
  283. }else{
  284. w->orient=0;
  285. }
  286. w->raw_orient=0;
  287. }else{
  288. static const uint8_t prediction_table[3][12]={
  289. {0,8,4, 10,11, 2,6,9,1,3,5,7},
  290. {4,0,8, 11,10, 3,5,2,6,9,1,7},
  291. {8,0,4, 10,11, 1,7,2,6,9,3,5}
  292. };
  293. w->raw_orient=x8_get_orient_vlc(w);
  294. if(w->raw_orient<0) return -1;
  295. assert(w->raw_orient < 12 );
  296. assert(w->orient<3);
  297. w->orient=prediction_table[w->orient][w->raw_orient];
  298. }
  299. return 0;
  300. }
  301. static void x8_update_predictions(IntraX8Context * const w, const int orient, const int est_run ){
  302. MpegEncContext * const s= w->s;
  303. w->prediction_table[s->mb_x*2+(s->mb_y&1)] = (est_run<<2) + 1*(orient==4) + 2*(orient==8);
  304. /*
  305. y=2n+0 ->//0 2 4
  306. y=2n+1 ->//1 3 5
  307. */
  308. }
  309. static void x8_get_prediction_chroma(IntraX8Context * const w){
  310. MpegEncContext * const s= w->s;
  311. w->edges = 1*( !(s->mb_x>>1) );
  312. w->edges|= 2*( !(s->mb_y>>1) );
  313. w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );//mb_x for chroma would always be odd
  314. w->raw_orient=0;
  315. if(w->edges&3){//lut_co[8]={inv,4,8,8, inv,4,8,8}<- =>{1,1,0,0;1,1,0,0} => 0xCC
  316. w->chroma_orient=4<<((0xCC>>w->edges)&1);
  317. return;
  318. }
  319. w->chroma_orient = (w->prediction_table[2*s->mb_x-2] & 0x03)<<2;//block[x-1][y|1-1)]
  320. }
  321. static void x8_get_prediction(IntraX8Context * const w){
  322. MpegEncContext * const s= w->s;
  323. int a,b,c,i;
  324. w->edges = 1*( !s->mb_x );
  325. w->edges|= 2*( !s->mb_y );
  326. w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );
  327. switch(w->edges&3){
  328. case 0:
  329. break;
  330. case 1:
  331. //take the one from the above block[0][y-1]
  332. w->est_run = w->prediction_table[!(s->mb_y&1)]>>2;
  333. w->orient = 1;
  334. return;
  335. case 2:
  336. //take the one from the previous block[x-1][0]
  337. w->est_run = w->prediction_table[2*s->mb_x-2]>>2;
  338. w->orient = 2;
  339. return;
  340. case 3:
  341. w->est_run = 16;
  342. w->orient = 0;
  343. return;
  344. }
  345. //no edge cases
  346. b= w->prediction_table[2*s->mb_x + !(s->mb_y&1) ];//block[x ][y-1]
  347. a= w->prediction_table[2*s->mb_x-2 + (s->mb_y&1) ];//block[x-1][y ]
  348. c= w->prediction_table[2*s->mb_x-2 + !(s->mb_y&1) ];//block[x-1][y-1]
  349. w->est_run = FFMIN(b,a);
  350. /* This condition has nothing to do with w->edges, even if it looks
  351. similar it would trigger if e.g. x=3;y=2;
  352. I guess somebody wrote something wrong and it became standard. */
  353. if( (s->mb_x & s->mb_y) != 0 ) w->est_run=FFMIN(c,w->est_run);
  354. w->est_run>>=2;
  355. a&=3;
  356. b&=3;
  357. c&=3;
  358. i=( 0xFFEAF4C4>>(2*b+8*a) )&3;
  359. if(i!=3) w->orient=i;
  360. else w->orient=( 0xFFEAD8>>(2*c+8*(w->quant>12)) )&3;
  361. /*
  362. lut1[b][a]={
  363. ->{0, 1, 0, pad},
  364. {0, 1, X, pad},
  365. {2, 2, 2, pad}}
  366. pad 2 2 2; pad X 1 0; pad 0 1 0 <-
  367. -> 11 10 '10 10 '11 11'01 00 '11 00'01 00=>0xEAF4C4
  368. lut2[q>12][c]={
  369. ->{0,2,1,pad},
  370. {2,2,2,pad}}
  371. pad 2 2 2; pad 1 2 0 <-
  372. -> 11 10'10 10 '11 01'10 00=>0xEAD8
  373. */
  374. }
  375. static void x8_ac_compensation(IntraX8Context * const w, int const direction, int const dc_level){
  376. MpegEncContext * const s= w->s;
  377. int t;
  378. #define B(x,y) s->block[0][s->dsp.idct_permutation[(x)+(y)*8]]
  379. #define T(x) ((x) * dc_level + 0x8000) >> 16;
  380. switch(direction){
  381. case 0:
  382. t = T(3811);//h
  383. B(1,0) -= t;
  384. B(0,1) -= t;
  385. t = T(487);//e
  386. B(2,0) -= t;
  387. B(0,2) -= t;
  388. t = T(506);//f
  389. B(3,0) -= t;
  390. B(0,3) -= t;
  391. t = T(135);//c
  392. B(4,0) -= t;
  393. B(0,4) -= t;
  394. B(2,1) += t;
  395. B(1,2) += t;
  396. B(3,1) += t;
  397. B(1,3) += t;
  398. t = T(173);//d
  399. B(5,0) -= t;
  400. B(0,5) -= t;
  401. t = T(61);//b
  402. B(6,0) -= t;
  403. B(0,6) -= t;
  404. B(5,1) += t;
  405. B(1,5) += t;
  406. t = T(42); //a
  407. B(7,0) -= t;
  408. B(0,7) -= t;
  409. B(4,1) += t;
  410. B(1,4) += t;
  411. B(4,4) += t;
  412. t = T(1084);//g
  413. B(1,1) += t;
  414. s->block_last_index[0] = FFMAX(s->block_last_index[0], 7*8);
  415. break;
  416. case 1:
  417. B(0,1) -= T(6269);
  418. B(0,3) -= T( 708);
  419. B(0,5) -= T( 172);
  420. B(0,7) -= T( 73);
  421. s->block_last_index[0] = FFMAX(s->block_last_index[0], 7*8);
  422. break;
  423. case 2:
  424. B(1,0) -= T(6269);
  425. B(3,0) -= T( 708);
  426. B(5,0) -= T( 172);
  427. B(7,0) -= T( 73);
  428. s->block_last_index[0] = FFMAX(s->block_last_index[0], 7);
  429. break;
  430. }
  431. #undef B
  432. #undef T
  433. }
  434. static void dsp_x8_put_solidcolor(uint8_t const pix, uint8_t * dst, int const linesize){
  435. int k;
  436. for(k=0;k<8;k++){
  437. memset(dst,pix,8);
  438. dst+=linesize;
  439. }
  440. }
  441. static const int16_t quant_table[64] = {
  442. 256, 256, 256, 256, 256, 256, 259, 262,
  443. 265, 269, 272, 275, 278, 282, 285, 288,
  444. 292, 295, 299, 303, 306, 310, 314, 317,
  445. 321, 325, 329, 333, 337, 341, 345, 349,
  446. 353, 358, 362, 366, 371, 375, 379, 384,
  447. 389, 393, 398, 403, 408, 413, 417, 422,
  448. 428, 433, 438, 443, 448, 454, 459, 465,
  449. 470, 476, 482, 488, 493, 499, 505, 511
  450. };
  451. static int x8_decode_intra_mb(IntraX8Context* const w, const int chroma){
  452. MpegEncContext * const s= w->s;
  453. uint8_t * scantable;
  454. int final,run,level;
  455. int ac_mode,dc_mode,est_run,dc_level;
  456. int pos,n;
  457. int zeros_only;
  458. int use_quant_matrix;
  459. int sign;
  460. assert(w->orient<12);
  461. s->dsp.clear_block(s->block[0]);
  462. if(chroma){
  463. dc_mode=2;
  464. }else{
  465. dc_mode=!!w->est_run;//0,1
  466. }
  467. if(x8_get_dc_rlf(w, dc_mode, &dc_level, &final)) return -1;
  468. n=0;
  469. zeros_only=0;
  470. if(!final){//decode ac
  471. use_quant_matrix=w->use_quant_matrix;
  472. if(chroma){
  473. ac_mode = 1;
  474. est_run = 64;//not used
  475. }else{
  476. if (w->raw_orient < 3){
  477. use_quant_matrix = 0;
  478. }
  479. if(w->raw_orient > 4){
  480. ac_mode = 0;
  481. est_run = 64;
  482. }else{
  483. if(w->est_run > 1){
  484. ac_mode = 2;
  485. est_run=w->est_run;
  486. }else{
  487. ac_mode = 3;
  488. est_run = 64;
  489. }
  490. }
  491. }
  492. x8_select_ac_table(w,ac_mode);
  493. /*scantable_selector[12]={0,2,0,1,1,1,0,2,2,0,1,2};<-
  494. -> 10'01' 00'10' 10'00' 01'01' 01'00' 10'00 =>0x928548 */
  495. scantable = w->scantable[ (0x928548>>(2*w->orient))&3 ].permutated;
  496. pos=0;
  497. do {
  498. n++;
  499. if( n >= est_run ){
  500. ac_mode=3;
  501. x8_select_ac_table(w,3);
  502. }
  503. x8_get_ac_rlf(w,ac_mode,&run,&level,&final);
  504. pos+=run+1;
  505. if(pos>63){
  506. //this also handles vlc error in x8_get_ac_rlf
  507. return -1;
  508. }
  509. level= (level+1) * w->dquant;
  510. level+= w->qsum;
  511. sign = - get_bits1(&s->gb);
  512. level = (level ^ sign) - sign;
  513. if(use_quant_matrix){
  514. level = (level*quant_table[pos])>>8;
  515. }
  516. s->block[0][ scantable[pos] ]=level;
  517. }while(!final);
  518. s->block_last_index[0]=pos;
  519. }else{//DC only
  520. s->block_last_index[0]=0;
  521. if(w->flat_dc && ((unsigned)(dc_level+1)) < 3){//[-1;1]
  522. int32_t divide_quant= !chroma ? w->divide_quant_dc_luma:
  523. w->divide_quant_dc_chroma;
  524. int32_t dc_quant = !chroma ? w->quant:
  525. w->quant_dc_chroma;
  526. //original intent dc_level+=predicted_dc/quant; but it got lost somewhere in the rounding
  527. dc_level+= (w->predicted_dc*divide_quant + (1<<12) )>>13;
  528. dsp_x8_put_solidcolor( av_clip_uint8((dc_level*dc_quant+4)>>3),
  529. s->dest[chroma], s->current_picture.linesize[!!chroma]);
  530. goto block_placed;
  531. }
  532. zeros_only = (dc_level == 0);
  533. }
  534. if(!chroma){
  535. s->block[0][0] = dc_level*w->quant;
  536. }else{
  537. s->block[0][0] = dc_level*w->quant_dc_chroma;
  538. }
  539. //there is !zero_only check in the original, but dc_level check is enough
  540. if( (unsigned int)(dc_level+1) >= 3 && (w->edges&3) != 3 ){
  541. int direction;
  542. /*ac_comp_direction[orient] = { 0, 3, 3, 1, 1, 0, 0, 0, 2, 2, 2, 1 };<-
  543. -> 01'10' 10'10' 00'00' 00'01' 01'11' 11'00 =>0x6A017C */
  544. direction= (0x6A017C>>(w->orient*2))&3;
  545. if (direction != 3){
  546. x8_ac_compensation(w, direction, s->block[0][0]);//modify block_last[]
  547. }
  548. }
  549. if(w->flat_dc){
  550. dsp_x8_put_solidcolor(w->predicted_dc, s->dest[chroma], s->current_picture.linesize[!!chroma]);
  551. }else{
  552. s->dsp.x8_spatial_compensation[w->orient]( s->edge_emu_buffer,
  553. s->dest[chroma],
  554. s->current_picture.linesize[!!chroma] );
  555. }
  556. if(!zeros_only)
  557. s->dsp.idct_add ( s->dest[chroma],
  558. s->current_picture.linesize[!!chroma],
  559. s->block[0] );
  560. block_placed:
  561. if(!chroma){
  562. x8_update_predictions(w,w->orient,n);
  563. }
  564. if(s->loop_filter){
  565. uint8_t* ptr = s->dest[chroma];
  566. int linesize = s->current_picture.linesize[!!chroma];
  567. if(!( (w->edges&2) || ( zeros_only && (w->orient|4)==4 ) )){
  568. s->dsp.x8_h_loop_filter(ptr, linesize, w->quant);
  569. }
  570. if(!( (w->edges&1) || ( zeros_only && (w->orient|8)==8 ) )){
  571. s->dsp.x8_v_loop_filter(ptr, linesize, w->quant);
  572. }
  573. }
  574. return 0;
  575. }
  576. static void x8_init_block_index(MpegEncContext *s){ //FIXME maybe merge with ff_*
  577. //not s->linesize as this would be wrong for field pics
  578. //not that IntraX8 has interlacing support ;)
  579. const int linesize = s->current_picture.linesize[0];
  580. const int uvlinesize= s->current_picture.linesize[1];
  581. s->dest[0] = s->current_picture.data[0];
  582. s->dest[1] = s->current_picture.data[1];
  583. s->dest[2] = s->current_picture.data[2];
  584. s->dest[0] += s->mb_y * linesize << 3;
  585. s->dest[1] += ( s->mb_y&(~1) ) * uvlinesize << 2;//chroma blocks are on add rows
  586. s->dest[2] += ( s->mb_y&(~1) ) * uvlinesize << 2;
  587. }
  588. /**
  589. * Initialize IntraX8 frame decoder.
  590. * Requires valid MpegEncContext with valid s->mb_width before calling.
  591. * @param w pointer to IntraX8Context
  592. * @param s pointer to MpegEncContext of the parent codec
  593. */
  594. av_cold void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s){
  595. w->s=s;
  596. x8_vlc_init();
  597. assert(s->mb_width>0);
  598. w->prediction_table=av_mallocz(s->mb_width*2*2);//two rows, 2 blocks per cannon mb
  599. ff_init_scantable(s->dsp.idct_permutation, &w->scantable[0], wmv1_scantable[0]);
  600. ff_init_scantable(s->dsp.idct_permutation, &w->scantable[1], wmv1_scantable[2]);
  601. ff_init_scantable(s->dsp.idct_permutation, &w->scantable[2], wmv1_scantable[3]);
  602. }
  603. /**
  604. * Destroy IntraX8 frame structure.
  605. * @param w pointer to IntraX8Context
  606. */
  607. av_cold void ff_intrax8_common_end(IntraX8Context * w)
  608. {
  609. av_freep(&w->prediction_table);
  610. }
  611. /**
  612. * Decode single IntraX8 frame.
  613. * The parent codec must fill s->loopfilter and s->gb (bitstream).
  614. * The parent codec must call MPV_frame_start(), ff_er_frame_start() before calling this function.
  615. * The parent codec must call ff_er_frame_end(), MPV_frame_end() after calling this function.
  616. * This function does not use MPV_decode_mb().
  617. * lowres decoding is theoretically impossible.
  618. * @param w pointer to IntraX8Context
  619. * @param dquant doubled quantizer, it would be odd in case of VC-1 halfpq==1.
  620. * @param quant_offset offset away from zero
  621. */
  622. //FIXME extern uint8_t wmv3_dc_scale_table[32];
  623. int ff_intrax8_decode_picture(IntraX8Context * const w, int dquant, int quant_offset){
  624. MpegEncContext * const s= w->s;
  625. int mb_xy;
  626. assert(s);
  627. w->use_quant_matrix = get_bits1(&s->gb);
  628. w->dquant = dquant;
  629. w->quant = dquant >> 1;
  630. w->qsum = quant_offset;
  631. w->divide_quant_dc_luma = ((1<<16) + (w->quant>>1)) / w->quant;
  632. if(w->quant < 5){
  633. w->quant_dc_chroma = w->quant;
  634. w->divide_quant_dc_chroma = w->divide_quant_dc_luma;
  635. }else{
  636. w->quant_dc_chroma = w->quant+((w->quant+3)>>3);
  637. w->divide_quant_dc_chroma = ((1<<16) + (w->quant_dc_chroma>>1)) / w->quant_dc_chroma;
  638. }
  639. x8_reset_vlc_tables(w);
  640. s->resync_mb_x=0;
  641. s->resync_mb_y=0;
  642. for(s->mb_y=0; s->mb_y < s->mb_height*2; s->mb_y++){
  643. x8_init_block_index(s);
  644. mb_xy=(s->mb_y>>1)*s->mb_stride;
  645. for(s->mb_x=0; s->mb_x < s->mb_width*2; s->mb_x++){
  646. x8_get_prediction(w);
  647. if(x8_setup_spatial_predictor(w,0)) goto error;
  648. if(x8_decode_intra_mb(w,0)) goto error;
  649. if( s->mb_x & s->mb_y & 1 ){
  650. x8_get_prediction_chroma(w);
  651. /*when setting up chroma, no vlc is read,
  652. so no error condition can be reached*/
  653. x8_setup_spatial_predictor(w,1);
  654. if(x8_decode_intra_mb(w,1)) goto error;
  655. x8_setup_spatial_predictor(w,2);
  656. if(x8_decode_intra_mb(w,2)) goto error;
  657. s->dest[1]+= 8;
  658. s->dest[2]+= 8;
  659. /*emulate MB info in the relevant tables*/
  660. s->mbskip_table [mb_xy]=0;
  661. s->mbintra_table[mb_xy]=1;
  662. s->current_picture.qscale_table[mb_xy]=w->quant;
  663. mb_xy++;
  664. }
  665. s->dest[0]+= 8;
  666. }
  667. if(s->mb_y&1){
  668. ff_draw_horiz_band(s, (s->mb_y-1)*8, 16);
  669. }
  670. }
  671. error:
  672. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y,
  673. (s->mb_x>>1)-1, (s->mb_y>>1)-1,
  674. (AC_END|DC_END|MV_END) );
  675. return 0;
  676. }