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.

672 lines
25KB

  1. /*
  2. * Copyright (C) 2004 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/intmath.h"
  21. #include "libavutil/log.h"
  22. #include "libavutil/opt.h"
  23. #include "avcodec.h"
  24. #include "snow_dwt.h"
  25. #include "internal.h"
  26. #include "snow.h"
  27. #include "rangecoder.h"
  28. #include "mathops.h"
  29. #include "mpegvideo.h"
  30. #include "h263.h"
  31. static av_always_inline void predict_slice_buffered(SnowContext *s, slice_buffer * sb, IDWTELEM * old_buffer, int plane_index, int add, int mb_y){
  32. Plane *p= &s->plane[plane_index];
  33. const int mb_w= s->b_width << s->block_max_depth;
  34. const int mb_h= s->b_height << s->block_max_depth;
  35. int x, y, mb_x;
  36. int block_size = MB_SIZE >> s->block_max_depth;
  37. int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size;
  38. int block_h = plane_index ? block_size>>s->chroma_v_shift : block_size;
  39. const uint8_t *obmc = plane_index ? ff_obmc_tab[s->block_max_depth+s->chroma_h_shift] : ff_obmc_tab[s->block_max_depth];
  40. int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size;
  41. int ref_stride= s->current_picture->linesize[plane_index];
  42. uint8_t *dst8= s->current_picture->data[plane_index];
  43. int w= p->width;
  44. int h= p->height;
  45. if(s->keyframe || (s->avctx->debug&512)){
  46. if(mb_y==mb_h)
  47. return;
  48. if(add){
  49. for(y=block_h*mb_y; y<FFMIN(h,block_h*(mb_y+1)); y++){
  50. // DWTELEM * line = slice_buffer_get_line(sb, y);
  51. IDWTELEM * line = sb->line[y];
  52. for(x=0; x<w; x++){
  53. // int v= buf[x + y*w] + (128<<FRAC_BITS) + (1<<(FRAC_BITS-1));
  54. int v= line[x] + (128<<FRAC_BITS) + (1<<(FRAC_BITS-1));
  55. v >>= FRAC_BITS;
  56. if(v&(~255)) v= ~(v>>31);
  57. dst8[x + y*ref_stride]= v;
  58. }
  59. }
  60. }else{
  61. for(y=block_h*mb_y; y<FFMIN(h,block_h*(mb_y+1)); y++){
  62. // DWTELEM * line = slice_buffer_get_line(sb, y);
  63. IDWTELEM * line = sb->line[y];
  64. for(x=0; x<w; x++){
  65. line[x] -= 128 << FRAC_BITS;
  66. // buf[x + y*w]-= 128<<FRAC_BITS;
  67. }
  68. }
  69. }
  70. return;
  71. }
  72. for(mb_x=0; mb_x<=mb_w; mb_x++){
  73. add_yblock(s, 1, sb, old_buffer, dst8, obmc,
  74. block_w*mb_x - block_w/2,
  75. block_h*mb_y - block_h/2,
  76. block_w, block_h,
  77. w, h,
  78. w, ref_stride, obmc_stride,
  79. mb_x - 1, mb_y - 1,
  80. add, 0, plane_index);
  81. }
  82. if(s->avmv && mb_y < mb_h && plane_index == 0)
  83. for(mb_x=0; mb_x<mb_w; mb_x++){
  84. AVMotionVector *avmv = s->avmv + s->avmv_index;
  85. const int b_width = s->b_width << s->block_max_depth;
  86. const int b_stride= b_width;
  87. BlockNode *bn= &s->block[mb_x + mb_y*b_stride];
  88. if (bn->type)
  89. continue;
  90. s->avmv_index++;
  91. avmv->w = block_w;
  92. avmv->h = block_h;
  93. avmv->dst_x = block_w*mb_x - block_w/2;
  94. avmv->dst_y = block_h*mb_y - block_h/2;
  95. avmv->motion_scale = 8;
  96. avmv->motion_x = bn->mx * s->mv_scale;
  97. avmv->motion_y = bn->my * s->mv_scale;
  98. avmv->src_x = avmv->dst_x + avmv->motion_x / 8;
  99. avmv->src_y = avmv->dst_y + avmv->motion_y / 8;
  100. avmv->source= -1 - bn->ref;
  101. avmv->flags = 0;
  102. }
  103. }
  104. static inline void decode_subband_slice_buffered(SnowContext *s, SubBand *b, slice_buffer * sb, int start_y, int h, int save_state[1]){
  105. const int w= b->width;
  106. int y;
  107. const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16);
  108. int qmul= ff_qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
  109. int qadd= (s->qbias*qmul)>>QBIAS_SHIFT;
  110. int new_index = 0;
  111. if(b->ibuf == s->spatial_idwt_buffer || s->qlog == LOSSLESS_QLOG){
  112. qadd= 0;
  113. qmul= 1<<QEXPSHIFT;
  114. }
  115. /* If we are on the second or later slice, restore our index. */
  116. if (start_y != 0)
  117. new_index = save_state[0];
  118. for(y=start_y; y<h; y++){
  119. int x = 0;
  120. int v;
  121. IDWTELEM * line = slice_buffer_get_line(sb, y * b->stride_line + b->buf_y_offset) + b->buf_x_offset;
  122. memset(line, 0, b->width*sizeof(IDWTELEM));
  123. v = b->x_coeff[new_index].coeff;
  124. x = b->x_coeff[new_index++].x;
  125. while(x < w){
  126. register int t= (int)( (v>>1)*(unsigned)qmul + qadd)>>QEXPSHIFT;
  127. register int u= -(v&1);
  128. line[x] = (t^u) - u;
  129. v = b->x_coeff[new_index].coeff;
  130. x = b->x_coeff[new_index++].x;
  131. }
  132. }
  133. /* Save our variables for the next slice. */
  134. save_state[0] = new_index;
  135. return;
  136. }
  137. static int decode_q_branch(SnowContext *s, int level, int x, int y){
  138. const int w= s->b_width << s->block_max_depth;
  139. const int rem_depth= s->block_max_depth - level;
  140. const int index= (x + y*w) << rem_depth;
  141. int trx= (x+1)<<rem_depth;
  142. const BlockNode *left = x ? &s->block[index-1] : &null_block;
  143. const BlockNode *top = y ? &s->block[index-w] : &null_block;
  144. const BlockNode *tl = y && x ? &s->block[index-w-1] : left;
  145. const BlockNode *tr = y && trx<w && ((x&1)==0 || level==0) ? &s->block[index-w+(1<<rem_depth)] : tl; //FIXME use lt
  146. int s_context= 2*left->level + 2*top->level + tl->level + tr->level;
  147. int res;
  148. if(s->keyframe){
  149. set_blocks(s, level, x, y, null_block.color[0], null_block.color[1], null_block.color[2], null_block.mx, null_block.my, null_block.ref, BLOCK_INTRA);
  150. return 0;
  151. }
  152. if(level==s->block_max_depth || get_rac(&s->c, &s->block_state[4 + s_context])){
  153. int type, mx, my;
  154. int l = left->color[0];
  155. int cb= left->color[1];
  156. int cr= left->color[2];
  157. unsigned ref = 0;
  158. int ref_context= av_log2(2*left->ref) + av_log2(2*top->ref);
  159. int mx_context= av_log2(2*FFABS(left->mx - top->mx)) + 0*av_log2(2*FFABS(tr->mx - top->mx));
  160. int my_context= av_log2(2*FFABS(left->my - top->my)) + 0*av_log2(2*FFABS(tr->my - top->my));
  161. type= get_rac(&s->c, &s->block_state[1 + left->type + top->type]) ? BLOCK_INTRA : 0;
  162. if(type){
  163. int ld, cbd, crd;
  164. pred_mv(s, &mx, &my, 0, left, top, tr);
  165. ld = get_symbol(&s->c, &s->block_state[32], 1);
  166. if (ld < -255 || ld > 255) {
  167. return AVERROR_INVALIDDATA;
  168. }
  169. l += ld;
  170. if (s->nb_planes > 2) {
  171. cbd = get_symbol(&s->c, &s->block_state[64], 1);
  172. crd = get_symbol(&s->c, &s->block_state[96], 1);
  173. if (cbd < -255 || cbd > 255 || crd < -255 || crd > 255) {
  174. return AVERROR_INVALIDDATA;
  175. }
  176. cb += cbd;
  177. cr += crd;
  178. }
  179. }else{
  180. if(s->ref_frames > 1)
  181. ref= get_symbol(&s->c, &s->block_state[128 + 1024 + 32*ref_context], 0);
  182. if (ref >= s->ref_frames) {
  183. av_log(s->avctx, AV_LOG_ERROR, "Invalid ref\n");
  184. return AVERROR_INVALIDDATA;
  185. }
  186. pred_mv(s, &mx, &my, ref, left, top, tr);
  187. mx+= (unsigned)get_symbol(&s->c, &s->block_state[128 + 32*(mx_context + 16*!!ref)], 1);
  188. my+= (unsigned)get_symbol(&s->c, &s->block_state[128 + 32*(my_context + 16*!!ref)], 1);
  189. }
  190. set_blocks(s, level, x, y, l, cb, cr, mx, my, ref, type);
  191. }else{
  192. if ((res = decode_q_branch(s, level+1, 2*x+0, 2*y+0)) < 0 ||
  193. (res = decode_q_branch(s, level+1, 2*x+1, 2*y+0)) < 0 ||
  194. (res = decode_q_branch(s, level+1, 2*x+0, 2*y+1)) < 0 ||
  195. (res = decode_q_branch(s, level+1, 2*x+1, 2*y+1)) < 0)
  196. return res;
  197. }
  198. return 0;
  199. }
  200. static void dequantize_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){
  201. const int w= b->width;
  202. const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16);
  203. const int qmul= ff_qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
  204. const int qadd= (s->qbias*qmul)>>QBIAS_SHIFT;
  205. int x,y;
  206. if(s->qlog == LOSSLESS_QLOG) return;
  207. for(y=start_y; y<end_y; y++){
  208. // DWTELEM * line = slice_buffer_get_line_from_address(sb, src + (y * stride));
  209. IDWTELEM * line = slice_buffer_get_line(sb, (y * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
  210. for(x=0; x<w; x++){
  211. int i= line[x];
  212. if(i<0){
  213. line[x]= -((-i*(unsigned)qmul + qadd)>>(QEXPSHIFT)); //FIXME try different bias
  214. }else if(i>0){
  215. line[x]= (( i*(unsigned)qmul + qadd)>>(QEXPSHIFT));
  216. }
  217. }
  218. }
  219. }
  220. static void correlate_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median, int start_y, int end_y){
  221. const int w= b->width;
  222. int x,y;
  223. IDWTELEM * line=0; // silence silly "could be used without having been initialized" warning
  224. IDWTELEM * prev;
  225. if (start_y != 0)
  226. line = slice_buffer_get_line(sb, ((start_y - 1) * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
  227. for(y=start_y; y<end_y; y++){
  228. prev = line;
  229. // line = slice_buffer_get_line_from_address(sb, src + (y * stride));
  230. line = slice_buffer_get_line(sb, (y * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
  231. for(x=0; x<w; x++){
  232. if(x){
  233. if(use_median){
  234. if(y && x+1<w) line[x] += mid_pred(line[x - 1], prev[x], prev[x + 1]);
  235. else line[x] += line[x - 1];
  236. }else{
  237. if(y) line[x] += mid_pred(line[x - 1], prev[x], line[x - 1] + prev[x] - prev[x - 1]);
  238. else line[x] += line[x - 1];
  239. }
  240. }else{
  241. if(y) line[x] += prev[x];
  242. }
  243. }
  244. }
  245. }
  246. static void decode_qlogs(SnowContext *s){
  247. int plane_index, level, orientation;
  248. for(plane_index=0; plane_index < s->nb_planes; plane_index++){
  249. for(level=0; level<s->spatial_decomposition_count; level++){
  250. for(orientation=level ? 1:0; orientation<4; orientation++){
  251. int q;
  252. if (plane_index==2) q= s->plane[1].band[level][orientation].qlog;
  253. else if(orientation==2) q= s->plane[plane_index].band[level][1].qlog;
  254. else q= get_symbol(&s->c, s->header_state, 1);
  255. s->plane[plane_index].band[level][orientation].qlog= q;
  256. }
  257. }
  258. }
  259. }
  260. #define GET_S(dst, check) \
  261. tmp= get_symbol(&s->c, s->header_state, 0);\
  262. if(!(check)){\
  263. av_log(s->avctx, AV_LOG_ERROR, "Error " #dst " is %d\n", tmp);\
  264. return AVERROR_INVALIDDATA;\
  265. }\
  266. dst= tmp;
  267. static int decode_header(SnowContext *s){
  268. int plane_index, tmp;
  269. uint8_t kstate[32];
  270. memset(kstate, MID_STATE, sizeof(kstate));
  271. s->keyframe= get_rac(&s->c, kstate);
  272. if(s->keyframe || s->always_reset){
  273. ff_snow_reset_contexts(s);
  274. s->spatial_decomposition_type=
  275. s->qlog=
  276. s->qbias=
  277. s->mv_scale=
  278. s->block_max_depth= 0;
  279. }
  280. if(s->keyframe){
  281. GET_S(s->version, tmp <= 0U)
  282. s->always_reset= get_rac(&s->c, s->header_state);
  283. s->temporal_decomposition_type= get_symbol(&s->c, s->header_state, 0);
  284. s->temporal_decomposition_count= get_symbol(&s->c, s->header_state, 0);
  285. GET_S(s->spatial_decomposition_count, 0 < tmp && tmp <= MAX_DECOMPOSITIONS)
  286. s->colorspace_type= get_symbol(&s->c, s->header_state, 0);
  287. if (s->colorspace_type == 1) {
  288. s->avctx->pix_fmt= AV_PIX_FMT_GRAY8;
  289. s->nb_planes = 1;
  290. } else if(s->colorspace_type == 0) {
  291. s->chroma_h_shift= get_symbol(&s->c, s->header_state, 0);
  292. s->chroma_v_shift= get_symbol(&s->c, s->header_state, 0);
  293. if(s->chroma_h_shift == 1 && s->chroma_v_shift==1){
  294. s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
  295. }else if(s->chroma_h_shift == 0 && s->chroma_v_shift==0){
  296. s->avctx->pix_fmt= AV_PIX_FMT_YUV444P;
  297. }else if(s->chroma_h_shift == 2 && s->chroma_v_shift==2){
  298. s->avctx->pix_fmt= AV_PIX_FMT_YUV410P;
  299. } else {
  300. av_log(s, AV_LOG_ERROR, "unsupported color subsample mode %d %d\n", s->chroma_h_shift, s->chroma_v_shift);
  301. s->chroma_h_shift = s->chroma_v_shift = 1;
  302. s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
  303. return AVERROR_INVALIDDATA;
  304. }
  305. s->nb_planes = 3;
  306. } else {
  307. av_log(s, AV_LOG_ERROR, "unsupported color space\n");
  308. s->chroma_h_shift = s->chroma_v_shift = 1;
  309. s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
  310. return AVERROR_INVALIDDATA;
  311. }
  312. s->spatial_scalability= get_rac(&s->c, s->header_state);
  313. // s->rate_scalability= get_rac(&s->c, s->header_state);
  314. GET_S(s->max_ref_frames, tmp < (unsigned)MAX_REF_FRAMES)
  315. s->max_ref_frames++;
  316. decode_qlogs(s);
  317. }
  318. if(!s->keyframe){
  319. if(get_rac(&s->c, s->header_state)){
  320. for(plane_index=0; plane_index<FFMIN(s->nb_planes, 2); plane_index++){
  321. int htaps, i, sum=0;
  322. Plane *p= &s->plane[plane_index];
  323. p->diag_mc= get_rac(&s->c, s->header_state);
  324. htaps= get_symbol(&s->c, s->header_state, 0);
  325. if((unsigned)htaps >= HTAPS_MAX/2 - 1)
  326. return AVERROR_INVALIDDATA;
  327. htaps = htaps*2 + 2;
  328. p->htaps= htaps;
  329. for(i= htaps/2; i; i--){
  330. p->hcoeff[i]= get_symbol(&s->c, s->header_state, 0) * (1-2*(i&1));
  331. sum += p->hcoeff[i];
  332. }
  333. p->hcoeff[0]= 32-sum;
  334. }
  335. s->plane[2].diag_mc= s->plane[1].diag_mc;
  336. s->plane[2].htaps = s->plane[1].htaps;
  337. memcpy(s->plane[2].hcoeff, s->plane[1].hcoeff, sizeof(s->plane[1].hcoeff));
  338. }
  339. if(get_rac(&s->c, s->header_state)){
  340. GET_S(s->spatial_decomposition_count, 0 < tmp && tmp <= MAX_DECOMPOSITIONS)
  341. decode_qlogs(s);
  342. }
  343. }
  344. s->spatial_decomposition_type+= (unsigned)get_symbol(&s->c, s->header_state, 1);
  345. if(s->spatial_decomposition_type > 1U){
  346. av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_type %d not supported\n", s->spatial_decomposition_type);
  347. return AVERROR_INVALIDDATA;
  348. }
  349. if(FFMIN(s->avctx-> width>>s->chroma_h_shift,
  350. s->avctx->height>>s->chroma_v_shift) >> (s->spatial_decomposition_count-1) <= 1){
  351. av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_count %d too large for size\n", s->spatial_decomposition_count);
  352. return AVERROR_INVALIDDATA;
  353. }
  354. if (s->avctx->width > 65536-4) {
  355. av_log(s->avctx, AV_LOG_ERROR, "Width %d is too large\n", s->avctx->width);
  356. return AVERROR_INVALIDDATA;
  357. }
  358. s->qlog += (unsigned)get_symbol(&s->c, s->header_state, 1);
  359. s->mv_scale += (unsigned)get_symbol(&s->c, s->header_state, 1);
  360. s->qbias += (unsigned)get_symbol(&s->c, s->header_state, 1);
  361. s->block_max_depth+= (unsigned)get_symbol(&s->c, s->header_state, 1);
  362. if(s->block_max_depth > 1 || s->block_max_depth < 0 || s->mv_scale > 256U){
  363. av_log(s->avctx, AV_LOG_ERROR, "block_max_depth= %d is too large\n", s->block_max_depth);
  364. s->block_max_depth= 0;
  365. s->mv_scale = 0;
  366. return AVERROR_INVALIDDATA;
  367. }
  368. if (FFABS(s->qbias) > 127) {
  369. av_log(s->avctx, AV_LOG_ERROR, "qbias %d is too large\n", s->qbias);
  370. s->qbias = 0;
  371. return AVERROR_INVALIDDATA;
  372. }
  373. return 0;
  374. }
  375. static av_cold int decode_init(AVCodecContext *avctx)
  376. {
  377. int ret;
  378. if ((ret = ff_snow_common_init(avctx)) < 0) {
  379. return ret;
  380. }
  381. return 0;
  382. }
  383. static int decode_blocks(SnowContext *s){
  384. int x, y;
  385. int w= s->b_width;
  386. int h= s->b_height;
  387. int res;
  388. for(y=0; y<h; y++){
  389. for(x=0; x<w; x++){
  390. if (s->c.bytestream >= s->c.bytestream_end)
  391. return AVERROR_INVALIDDATA;
  392. if ((res = decode_q_branch(s, 0, x, y)) < 0)
  393. return res;
  394. }
  395. }
  396. return 0;
  397. }
  398. static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  399. AVPacket *avpkt)
  400. {
  401. const uint8_t *buf = avpkt->data;
  402. int buf_size = avpkt->size;
  403. SnowContext *s = avctx->priv_data;
  404. RangeCoder * const c= &s->c;
  405. int bytes_read;
  406. AVFrame *picture = data;
  407. int level, orientation, plane_index;
  408. int res;
  409. ff_init_range_decoder(c, buf, buf_size);
  410. ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
  411. s->current_picture->pict_type= AV_PICTURE_TYPE_I; //FIXME I vs. P
  412. if ((res = decode_header(s)) < 0)
  413. return res;
  414. if ((res=ff_snow_common_init_after_header(avctx)) < 0)
  415. return res;
  416. // realloc slice buffer for the case that spatial_decomposition_count changed
  417. ff_slice_buffer_destroy(&s->sb);
  418. if ((res = ff_slice_buffer_init(&s->sb, s->plane[0].height,
  419. (MB_SIZE >> s->block_max_depth) +
  420. s->spatial_decomposition_count * 11 + 1,
  421. s->plane[0].width,
  422. s->spatial_idwt_buffer)) < 0)
  423. return res;
  424. for(plane_index=0; plane_index < s->nb_planes; plane_index++){
  425. Plane *p= &s->plane[plane_index];
  426. p->fast_mc= p->diag_mc && p->htaps==6 && p->hcoeff[0]==40
  427. && p->hcoeff[1]==-10
  428. && p->hcoeff[2]==2;
  429. }
  430. ff_snow_alloc_blocks(s);
  431. if((res = ff_snow_frame_start(s)) < 0)
  432. return res;
  433. s->current_picture->pict_type = s->keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
  434. //keyframe flag duplication mess FIXME
  435. if(avctx->debug&FF_DEBUG_PICT_INFO)
  436. av_log(avctx, AV_LOG_ERROR,
  437. "keyframe:%d qlog:%d qbias: %d mvscale: %d "
  438. "decomposition_type:%d decomposition_count:%d\n",
  439. s->keyframe, s->qlog, s->qbias, s->mv_scale,
  440. s->spatial_decomposition_type,
  441. s->spatial_decomposition_count
  442. );
  443. av_assert0(!s->avmv);
  444. if (s->avctx->flags2 & AV_CODEC_FLAG2_EXPORT_MVS) {
  445. s->avmv = av_malloc_array(s->b_width * s->b_height, sizeof(AVMotionVector) << (s->block_max_depth*2));
  446. }
  447. s->avmv_index = 0;
  448. if ((res = decode_blocks(s)) < 0)
  449. return res;
  450. for(plane_index=0; plane_index < s->nb_planes; plane_index++){
  451. Plane *p= &s->plane[plane_index];
  452. int w= p->width;
  453. int h= p->height;
  454. int x, y;
  455. int decode_state[MAX_DECOMPOSITIONS][4][1]; /* Stored state info for unpack_coeffs. 1 variable per instance. */
  456. if(s->avctx->debug&2048){
  457. memset(s->spatial_dwt_buffer, 0, sizeof(DWTELEM)*w*h);
  458. predict_plane(s, s->spatial_idwt_buffer, plane_index, 1);
  459. for(y=0; y<h; y++){
  460. for(x=0; x<w; x++){
  461. int v= s->current_picture->data[plane_index][y*s->current_picture->linesize[plane_index] + x];
  462. s->mconly_picture->data[plane_index][y*s->mconly_picture->linesize[plane_index] + x]= v;
  463. }
  464. }
  465. }
  466. for(level=0; level<s->spatial_decomposition_count; level++){
  467. for(orientation=level ? 1 : 0; orientation<4; orientation++){
  468. SubBand *b= &p->band[level][orientation];
  469. unpack_coeffs(s, b, b->parent, orientation);
  470. }
  471. }
  472. {
  473. const int mb_h= s->b_height << s->block_max_depth;
  474. const int block_size = MB_SIZE >> s->block_max_depth;
  475. const int block_h = plane_index ? block_size>>s->chroma_v_shift : block_size;
  476. int mb_y;
  477. DWTCompose cs[MAX_DECOMPOSITIONS];
  478. int yd=0, yq=0;
  479. int y;
  480. int end_y;
  481. ff_spatial_idwt_buffered_init(cs, &s->sb, w, h, 1, s->spatial_decomposition_type, s->spatial_decomposition_count);
  482. for(mb_y=0; mb_y<=mb_h; mb_y++){
  483. int slice_starty = block_h*mb_y;
  484. int slice_h = block_h*(mb_y+1);
  485. if (!(s->keyframe || s->avctx->debug&512)){
  486. slice_starty = FFMAX(0, slice_starty - (block_h >> 1));
  487. slice_h -= (block_h >> 1);
  488. }
  489. for(level=0; level<s->spatial_decomposition_count; level++){
  490. for(orientation=level ? 1 : 0; orientation<4; orientation++){
  491. SubBand *b= &p->band[level][orientation];
  492. int start_y;
  493. int end_y;
  494. int our_mb_start = mb_y;
  495. int our_mb_end = (mb_y + 1);
  496. const int extra= 3;
  497. start_y = (mb_y ? ((block_h * our_mb_start) >> (s->spatial_decomposition_count - level)) + s->spatial_decomposition_count - level + extra: 0);
  498. end_y = (((block_h * our_mb_end) >> (s->spatial_decomposition_count - level)) + s->spatial_decomposition_count - level + extra);
  499. if (!(s->keyframe || s->avctx->debug&512)){
  500. start_y = FFMAX(0, start_y - (block_h >> (1+s->spatial_decomposition_count - level)));
  501. end_y = FFMAX(0, end_y - (block_h >> (1+s->spatial_decomposition_count - level)));
  502. }
  503. start_y = FFMIN(b->height, start_y);
  504. end_y = FFMIN(b->height, end_y);
  505. if (start_y != end_y){
  506. if (orientation == 0){
  507. SubBand * correlate_band = &p->band[0][0];
  508. int correlate_end_y = FFMIN(b->height, end_y + 1);
  509. int correlate_start_y = FFMIN(b->height, (start_y ? start_y + 1 : 0));
  510. decode_subband_slice_buffered(s, correlate_band, &s->sb, correlate_start_y, correlate_end_y, decode_state[0][0]);
  511. correlate_slice_buffered(s, &s->sb, correlate_band, correlate_band->ibuf, correlate_band->stride, 1, 0, correlate_start_y, correlate_end_y);
  512. dequantize_slice_buffered(s, &s->sb, correlate_band, correlate_band->ibuf, correlate_band->stride, start_y, end_y);
  513. }
  514. else
  515. decode_subband_slice_buffered(s, b, &s->sb, start_y, end_y, decode_state[level][orientation]);
  516. }
  517. }
  518. }
  519. for(; yd<slice_h; yd+=4){
  520. ff_spatial_idwt_buffered_slice(&s->dwt, cs, &s->sb, s->temp_idwt_buffer, w, h, 1, s->spatial_decomposition_type, s->spatial_decomposition_count, yd);
  521. }
  522. if(s->qlog == LOSSLESS_QLOG){
  523. for(; yq<slice_h && yq<h; yq++){
  524. IDWTELEM * line = slice_buffer_get_line(&s->sb, yq);
  525. for(x=0; x<w; x++){
  526. line[x] *= 1<<FRAC_BITS;
  527. }
  528. }
  529. }
  530. predict_slice_buffered(s, &s->sb, s->spatial_idwt_buffer, plane_index, 1, mb_y);
  531. y = FFMIN(p->height, slice_starty);
  532. end_y = FFMIN(p->height, slice_h);
  533. while(y < end_y)
  534. ff_slice_buffer_release(&s->sb, y++);
  535. }
  536. ff_slice_buffer_flush(&s->sb);
  537. }
  538. }
  539. emms_c();
  540. ff_snow_release_buffer(avctx);
  541. if(!(s->avctx->debug&2048))
  542. res = av_frame_ref(picture, s->current_picture);
  543. else
  544. res = av_frame_ref(picture, s->mconly_picture);
  545. if (res >= 0 && s->avmv_index) {
  546. AVFrameSideData *sd;
  547. sd = av_frame_new_side_data(picture, AV_FRAME_DATA_MOTION_VECTORS, s->avmv_index * sizeof(AVMotionVector));
  548. if (!sd)
  549. return AVERROR(ENOMEM);
  550. memcpy(sd->data, s->avmv, s->avmv_index * sizeof(AVMotionVector));
  551. }
  552. av_freep(&s->avmv);
  553. if (res < 0)
  554. return res;
  555. *got_frame = 1;
  556. bytes_read= c->bytestream - c->bytestream_start;
  557. if(bytes_read ==0) av_log(s->avctx, AV_LOG_ERROR, "error at end of frame\n"); //FIXME
  558. return bytes_read;
  559. }
  560. static av_cold int decode_end(AVCodecContext *avctx)
  561. {
  562. SnowContext *s = avctx->priv_data;
  563. ff_slice_buffer_destroy(&s->sb);
  564. ff_snow_common_end(s);
  565. return 0;
  566. }
  567. AVCodec ff_snow_decoder = {
  568. .name = "snow",
  569. .long_name = NULL_IF_CONFIG_SMALL("Snow"),
  570. .type = AVMEDIA_TYPE_VIDEO,
  571. .id = AV_CODEC_ID_SNOW,
  572. .priv_data_size = sizeof(SnowContext),
  573. .init = decode_init,
  574. .close = decode_end,
  575. .decode = decode_frame,
  576. .capabilities = AV_CODEC_CAP_DR1 /*| AV_CODEC_CAP_DRAW_HORIZ_BAND*/,
  577. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
  578. FF_CODEC_CAP_INIT_CLEANUP,
  579. };