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.

617 lines
23KB

  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. }
  83. static inline void decode_subband_slice_buffered(SnowContext *s, SubBand *b, slice_buffer * sb, int start_y, int h, int save_state[1]){
  84. const int w= b->width;
  85. int y;
  86. const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16);
  87. int qmul= ff_qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
  88. int qadd= (s->qbias*qmul)>>QBIAS_SHIFT;
  89. int new_index = 0;
  90. if(b->ibuf == s->spatial_idwt_buffer || s->qlog == LOSSLESS_QLOG){
  91. qadd= 0;
  92. qmul= 1<<QEXPSHIFT;
  93. }
  94. /* If we are on the second or later slice, restore our index. */
  95. if (start_y != 0)
  96. new_index = save_state[0];
  97. for(y=start_y; y<h; y++){
  98. int x = 0;
  99. int v;
  100. IDWTELEM * line = slice_buffer_get_line(sb, y * b->stride_line + b->buf_y_offset) + b->buf_x_offset;
  101. memset(line, 0, b->width*sizeof(IDWTELEM));
  102. v = b->x_coeff[new_index].coeff;
  103. x = b->x_coeff[new_index++].x;
  104. while(x < w){
  105. register int t= (int)( (v>>1)*(unsigned)qmul + qadd)>>QEXPSHIFT;
  106. register int u= -(v&1);
  107. line[x] = (t^u) - u;
  108. v = b->x_coeff[new_index].coeff;
  109. x = b->x_coeff[new_index++].x;
  110. }
  111. }
  112. /* Save our variables for the next slice. */
  113. save_state[0] = new_index;
  114. return;
  115. }
  116. static int decode_q_branch(SnowContext *s, int level, int x, int y){
  117. const int w= s->b_width << s->block_max_depth;
  118. const int rem_depth= s->block_max_depth - level;
  119. const int index= (x + y*w) << rem_depth;
  120. int trx= (x+1)<<rem_depth;
  121. const BlockNode *left = x ? &s->block[index-1] : &null_block;
  122. const BlockNode *top = y ? &s->block[index-w] : &null_block;
  123. const BlockNode *tl = y && x ? &s->block[index-w-1] : left;
  124. const BlockNode *tr = y && trx<w && ((x&1)==0 || level==0) ? &s->block[index-w+(1<<rem_depth)] : tl; //FIXME use lt
  125. int s_context= 2*left->level + 2*top->level + tl->level + tr->level;
  126. int res;
  127. if(s->keyframe){
  128. 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);
  129. return 0;
  130. }
  131. if(level==s->block_max_depth || get_rac(&s->c, &s->block_state[4 + s_context])){
  132. int type, mx, my;
  133. int l = left->color[0];
  134. int cb= left->color[1];
  135. int cr= left->color[2];
  136. unsigned ref = 0;
  137. int ref_context= av_log2(2*left->ref) + av_log2(2*top->ref);
  138. int mx_context= av_log2(2*FFABS(left->mx - top->mx)) + 0*av_log2(2*FFABS(tr->mx - top->mx));
  139. int my_context= av_log2(2*FFABS(left->my - top->my)) + 0*av_log2(2*FFABS(tr->my - top->my));
  140. type= get_rac(&s->c, &s->block_state[1 + left->type + top->type]) ? BLOCK_INTRA : 0;
  141. if(type){
  142. pred_mv(s, &mx, &my, 0, left, top, tr);
  143. l += get_symbol(&s->c, &s->block_state[32], 1);
  144. if (s->nb_planes > 2) {
  145. cb+= get_symbol(&s->c, &s->block_state[64], 1);
  146. cr+= get_symbol(&s->c, &s->block_state[96], 1);
  147. }
  148. }else{
  149. if(s->ref_frames > 1)
  150. ref= get_symbol(&s->c, &s->block_state[128 + 1024 + 32*ref_context], 0);
  151. if (ref >= s->ref_frames) {
  152. av_log(s->avctx, AV_LOG_ERROR, "Invalid ref\n");
  153. return AVERROR_INVALIDDATA;
  154. }
  155. pred_mv(s, &mx, &my, ref, left, top, tr);
  156. mx+= get_symbol(&s->c, &s->block_state[128 + 32*(mx_context + 16*!!ref)], 1);
  157. my+= get_symbol(&s->c, &s->block_state[128 + 32*(my_context + 16*!!ref)], 1);
  158. }
  159. set_blocks(s, level, x, y, l, cb, cr, mx, my, ref, type);
  160. }else{
  161. if ((res = decode_q_branch(s, level+1, 2*x+0, 2*y+0)) < 0 ||
  162. (res = decode_q_branch(s, level+1, 2*x+1, 2*y+0)) < 0 ||
  163. (res = decode_q_branch(s, level+1, 2*x+0, 2*y+1)) < 0 ||
  164. (res = decode_q_branch(s, level+1, 2*x+1, 2*y+1)) < 0)
  165. return res;
  166. }
  167. return 0;
  168. }
  169. static void dequantize_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){
  170. const int w= b->width;
  171. const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16);
  172. const int qmul= ff_qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
  173. const int qadd= (s->qbias*qmul)>>QBIAS_SHIFT;
  174. int x,y;
  175. if(s->qlog == LOSSLESS_QLOG) return;
  176. for(y=start_y; y<end_y; y++){
  177. // DWTELEM * line = slice_buffer_get_line_from_address(sb, src + (y * stride));
  178. IDWTELEM * line = slice_buffer_get_line(sb, (y * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
  179. for(x=0; x<w; x++){
  180. int i= line[x];
  181. if(i<0){
  182. line[x]= -((-i*qmul + qadd)>>(QEXPSHIFT)); //FIXME try different bias
  183. }else if(i>0){
  184. line[x]= (( i*qmul + qadd)>>(QEXPSHIFT));
  185. }
  186. }
  187. }
  188. }
  189. 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){
  190. const int w= b->width;
  191. int x,y;
  192. IDWTELEM * line=0; // silence silly "could be used without having been initialized" warning
  193. IDWTELEM * prev;
  194. if (start_y != 0)
  195. line = slice_buffer_get_line(sb, ((start_y - 1) * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
  196. for(y=start_y; y<end_y; y++){
  197. prev = line;
  198. // line = slice_buffer_get_line_from_address(sb, src + (y * stride));
  199. line = slice_buffer_get_line(sb, (y * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
  200. for(x=0; x<w; x++){
  201. if(x){
  202. if(use_median){
  203. if(y && x+1<w) line[x] += mid_pred(line[x - 1], prev[x], prev[x + 1]);
  204. else line[x] += line[x - 1];
  205. }else{
  206. if(y) line[x] += mid_pred(line[x - 1], prev[x], line[x - 1] + prev[x] - prev[x - 1]);
  207. else line[x] += line[x - 1];
  208. }
  209. }else{
  210. if(y) line[x] += prev[x];
  211. }
  212. }
  213. }
  214. }
  215. static void decode_qlogs(SnowContext *s){
  216. int plane_index, level, orientation;
  217. for(plane_index=0; plane_index < s->nb_planes; plane_index++){
  218. for(level=0; level<s->spatial_decomposition_count; level++){
  219. for(orientation=level ? 1:0; orientation<4; orientation++){
  220. int q;
  221. if (plane_index==2) q= s->plane[1].band[level][orientation].qlog;
  222. else if(orientation==2) q= s->plane[plane_index].band[level][1].qlog;
  223. else q= get_symbol(&s->c, s->header_state, 1);
  224. s->plane[plane_index].band[level][orientation].qlog= q;
  225. }
  226. }
  227. }
  228. }
  229. #define GET_S(dst, check) \
  230. tmp= get_symbol(&s->c, s->header_state, 0);\
  231. if(!(check)){\
  232. av_log(s->avctx, AV_LOG_ERROR, "Error " #dst " is %d\n", tmp);\
  233. return AVERROR_INVALIDDATA;\
  234. }\
  235. dst= tmp;
  236. static int decode_header(SnowContext *s){
  237. int plane_index, tmp;
  238. uint8_t kstate[32];
  239. memset(kstate, MID_STATE, sizeof(kstate));
  240. s->keyframe= get_rac(&s->c, kstate);
  241. if(s->keyframe || s->always_reset){
  242. ff_snow_reset_contexts(s);
  243. s->spatial_decomposition_type=
  244. s->qlog=
  245. s->qbias=
  246. s->mv_scale=
  247. s->block_max_depth= 0;
  248. }
  249. if(s->keyframe){
  250. GET_S(s->version, tmp <= 0U)
  251. s->always_reset= get_rac(&s->c, s->header_state);
  252. s->temporal_decomposition_type= get_symbol(&s->c, s->header_state, 0);
  253. s->temporal_decomposition_count= get_symbol(&s->c, s->header_state, 0);
  254. GET_S(s->spatial_decomposition_count, 0 < tmp && tmp <= MAX_DECOMPOSITIONS)
  255. s->colorspace_type= get_symbol(&s->c, s->header_state, 0);
  256. if (s->colorspace_type == 1) {
  257. s->avctx->pix_fmt= AV_PIX_FMT_GRAY8;
  258. s->nb_planes = 1;
  259. } else if(s->colorspace_type == 0) {
  260. s->chroma_h_shift= get_symbol(&s->c, s->header_state, 0);
  261. s->chroma_v_shift= get_symbol(&s->c, s->header_state, 0);
  262. if(s->chroma_h_shift == 1 && s->chroma_v_shift==1){
  263. s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
  264. }else if(s->chroma_h_shift == 0 && s->chroma_v_shift==0){
  265. s->avctx->pix_fmt= AV_PIX_FMT_YUV444P;
  266. }else if(s->chroma_h_shift == 2 && s->chroma_v_shift==2){
  267. s->avctx->pix_fmt= AV_PIX_FMT_YUV410P;
  268. } else {
  269. av_log(s, AV_LOG_ERROR, "unsupported color subsample mode %d %d\n", s->chroma_h_shift, s->chroma_v_shift);
  270. s->chroma_h_shift = s->chroma_v_shift = 1;
  271. s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
  272. return AVERROR_INVALIDDATA;
  273. }
  274. s->nb_planes = 3;
  275. } else {
  276. av_log(s, AV_LOG_ERROR, "unsupported color space\n");
  277. s->chroma_h_shift = s->chroma_v_shift = 1;
  278. s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
  279. return AVERROR_INVALIDDATA;
  280. }
  281. s->spatial_scalability= get_rac(&s->c, s->header_state);
  282. // s->rate_scalability= get_rac(&s->c, s->header_state);
  283. GET_S(s->max_ref_frames, tmp < (unsigned)MAX_REF_FRAMES)
  284. s->max_ref_frames++;
  285. decode_qlogs(s);
  286. }
  287. if(!s->keyframe){
  288. if(get_rac(&s->c, s->header_state)){
  289. for(plane_index=0; plane_index<FFMIN(s->nb_planes, 2); plane_index++){
  290. int htaps, i, sum=0;
  291. Plane *p= &s->plane[plane_index];
  292. p->diag_mc= get_rac(&s->c, s->header_state);
  293. htaps= get_symbol(&s->c, s->header_state, 0)*2 + 2;
  294. if((unsigned)htaps >= HTAPS_MAX || htaps==0)
  295. return AVERROR_INVALIDDATA;
  296. p->htaps= htaps;
  297. for(i= htaps/2; i; i--){
  298. p->hcoeff[i]= get_symbol(&s->c, s->header_state, 0) * (1-2*(i&1));
  299. sum += p->hcoeff[i];
  300. }
  301. p->hcoeff[0]= 32-sum;
  302. }
  303. s->plane[2].diag_mc= s->plane[1].diag_mc;
  304. s->plane[2].htaps = s->plane[1].htaps;
  305. memcpy(s->plane[2].hcoeff, s->plane[1].hcoeff, sizeof(s->plane[1].hcoeff));
  306. }
  307. if(get_rac(&s->c, s->header_state)){
  308. GET_S(s->spatial_decomposition_count, 0 < tmp && tmp <= MAX_DECOMPOSITIONS)
  309. decode_qlogs(s);
  310. }
  311. }
  312. s->spatial_decomposition_type+= (unsigned)get_symbol(&s->c, s->header_state, 1);
  313. if(s->spatial_decomposition_type > 1U){
  314. av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_type %d not supported\n", s->spatial_decomposition_type);
  315. return AVERROR_INVALIDDATA;
  316. }
  317. if(FFMIN(s->avctx-> width>>s->chroma_h_shift,
  318. s->avctx->height>>s->chroma_v_shift) >> (s->spatial_decomposition_count-1) <= 1){
  319. av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_count %d too large for size\n", s->spatial_decomposition_count);
  320. return AVERROR_INVALIDDATA;
  321. }
  322. if (s->avctx->width > 65536-4) {
  323. av_log(s->avctx, AV_LOG_ERROR, "Width %d is too large\n", s->avctx->width);
  324. return AVERROR_INVALIDDATA;
  325. }
  326. s->qlog += (unsigned)get_symbol(&s->c, s->header_state, 1);
  327. s->mv_scale += (unsigned)get_symbol(&s->c, s->header_state, 1);
  328. s->qbias += (unsigned)get_symbol(&s->c, s->header_state, 1);
  329. s->block_max_depth+= (unsigned)get_symbol(&s->c, s->header_state, 1);
  330. if(s->block_max_depth > 1 || s->block_max_depth < 0 || s->mv_scale > 256U){
  331. av_log(s->avctx, AV_LOG_ERROR, "block_max_depth= %d is too large\n", s->block_max_depth);
  332. s->block_max_depth= 0;
  333. s->mv_scale = 0;
  334. return AVERROR_INVALIDDATA;
  335. }
  336. if (FFABS(s->qbias) > 127) {
  337. av_log(s->avctx, AV_LOG_ERROR, "qbias %d is too large\n", s->qbias);
  338. s->qbias = 0;
  339. return AVERROR_INVALIDDATA;
  340. }
  341. return 0;
  342. }
  343. static av_cold int decode_init(AVCodecContext *avctx)
  344. {
  345. int ret;
  346. if ((ret = ff_snow_common_init(avctx)) < 0) {
  347. ff_snow_common_end(avctx->priv_data);
  348. return ret;
  349. }
  350. return 0;
  351. }
  352. static int decode_blocks(SnowContext *s){
  353. int x, y;
  354. int w= s->b_width;
  355. int h= s->b_height;
  356. int res;
  357. for(y=0; y<h; y++){
  358. for(x=0; x<w; x++){
  359. if ((res = decode_q_branch(s, 0, x, y)) < 0)
  360. return res;
  361. }
  362. }
  363. return 0;
  364. }
  365. static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  366. AVPacket *avpkt)
  367. {
  368. const uint8_t *buf = avpkt->data;
  369. int buf_size = avpkt->size;
  370. SnowContext *s = avctx->priv_data;
  371. RangeCoder * const c= &s->c;
  372. int bytes_read;
  373. AVFrame *picture = data;
  374. int level, orientation, plane_index;
  375. int res;
  376. ff_init_range_decoder(c, buf, buf_size);
  377. ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
  378. s->current_picture->pict_type= AV_PICTURE_TYPE_I; //FIXME I vs. P
  379. if ((res = decode_header(s)) < 0)
  380. return res;
  381. if ((res=ff_snow_common_init_after_header(avctx)) < 0)
  382. return res;
  383. // realloc slice buffer for the case that spatial_decomposition_count changed
  384. ff_slice_buffer_destroy(&s->sb);
  385. if ((res = ff_slice_buffer_init(&s->sb, s->plane[0].height,
  386. (MB_SIZE >> s->block_max_depth) +
  387. s->spatial_decomposition_count * 11 + 1,
  388. s->plane[0].width,
  389. s->spatial_idwt_buffer)) < 0)
  390. return res;
  391. for(plane_index=0; plane_index < s->nb_planes; plane_index++){
  392. Plane *p= &s->plane[plane_index];
  393. p->fast_mc= p->diag_mc && p->htaps==6 && p->hcoeff[0]==40
  394. && p->hcoeff[1]==-10
  395. && p->hcoeff[2]==2;
  396. }
  397. ff_snow_alloc_blocks(s);
  398. if((res = ff_snow_frame_start(s)) < 0)
  399. return res;
  400. //keyframe flag duplication mess FIXME
  401. if(avctx->debug&FF_DEBUG_PICT_INFO)
  402. av_log(avctx, AV_LOG_ERROR,
  403. "keyframe:%d qlog:%d qbias: %d mvscale: %d "
  404. "decomposition_type:%d decomposition_count:%d\n",
  405. s->keyframe, s->qlog, s->qbias, s->mv_scale,
  406. s->spatial_decomposition_type,
  407. s->spatial_decomposition_count
  408. );
  409. if ((res = decode_blocks(s)) < 0)
  410. return res;
  411. for(plane_index=0; plane_index < s->nb_planes; plane_index++){
  412. Plane *p= &s->plane[plane_index];
  413. int w= p->width;
  414. int h= p->height;
  415. int x, y;
  416. int decode_state[MAX_DECOMPOSITIONS][4][1]; /* Stored state info for unpack_coeffs. 1 variable per instance. */
  417. if(s->avctx->debug&2048){
  418. memset(s->spatial_dwt_buffer, 0, sizeof(DWTELEM)*w*h);
  419. predict_plane(s, s->spatial_idwt_buffer, plane_index, 1);
  420. for(y=0; y<h; y++){
  421. for(x=0; x<w; x++){
  422. int v= s->current_picture->data[plane_index][y*s->current_picture->linesize[plane_index] + x];
  423. s->mconly_picture->data[plane_index][y*s->mconly_picture->linesize[plane_index] + x]= v;
  424. }
  425. }
  426. }
  427. {
  428. for(level=0; level<s->spatial_decomposition_count; level++){
  429. for(orientation=level ? 1 : 0; orientation<4; orientation++){
  430. SubBand *b= &p->band[level][orientation];
  431. unpack_coeffs(s, b, b->parent, orientation);
  432. }
  433. }
  434. }
  435. {
  436. const int mb_h= s->b_height << s->block_max_depth;
  437. const int block_size = MB_SIZE >> s->block_max_depth;
  438. const int block_h = plane_index ? block_size>>s->chroma_v_shift : block_size;
  439. int mb_y;
  440. DWTCompose cs[MAX_DECOMPOSITIONS];
  441. int yd=0, yq=0;
  442. int y;
  443. int end_y;
  444. ff_spatial_idwt_buffered_init(cs, &s->sb, w, h, 1, s->spatial_decomposition_type, s->spatial_decomposition_count);
  445. for(mb_y=0; mb_y<=mb_h; mb_y++){
  446. int slice_starty = block_h*mb_y;
  447. int slice_h = block_h*(mb_y+1);
  448. if (!(s->keyframe || s->avctx->debug&512)){
  449. slice_starty = FFMAX(0, slice_starty - (block_h >> 1));
  450. slice_h -= (block_h >> 1);
  451. }
  452. for(level=0; level<s->spatial_decomposition_count; level++){
  453. for(orientation=level ? 1 : 0; orientation<4; orientation++){
  454. SubBand *b= &p->band[level][orientation];
  455. int start_y;
  456. int end_y;
  457. int our_mb_start = mb_y;
  458. int our_mb_end = (mb_y + 1);
  459. const int extra= 3;
  460. start_y = (mb_y ? ((block_h * our_mb_start) >> (s->spatial_decomposition_count - level)) + s->spatial_decomposition_count - level + extra: 0);
  461. end_y = (((block_h * our_mb_end) >> (s->spatial_decomposition_count - level)) + s->spatial_decomposition_count - level + extra);
  462. if (!(s->keyframe || s->avctx->debug&512)){
  463. start_y = FFMAX(0, start_y - (block_h >> (1+s->spatial_decomposition_count - level)));
  464. end_y = FFMAX(0, end_y - (block_h >> (1+s->spatial_decomposition_count - level)));
  465. }
  466. start_y = FFMIN(b->height, start_y);
  467. end_y = FFMIN(b->height, end_y);
  468. if (start_y != end_y){
  469. if (orientation == 0){
  470. SubBand * correlate_band = &p->band[0][0];
  471. int correlate_end_y = FFMIN(b->height, end_y + 1);
  472. int correlate_start_y = FFMIN(b->height, (start_y ? start_y + 1 : 0));
  473. decode_subband_slice_buffered(s, correlate_band, &s->sb, correlate_start_y, correlate_end_y, decode_state[0][0]);
  474. correlate_slice_buffered(s, &s->sb, correlate_band, correlate_band->ibuf, correlate_band->stride, 1, 0, correlate_start_y, correlate_end_y);
  475. dequantize_slice_buffered(s, &s->sb, correlate_band, correlate_band->ibuf, correlate_band->stride, start_y, end_y);
  476. }
  477. else
  478. decode_subband_slice_buffered(s, b, &s->sb, start_y, end_y, decode_state[level][orientation]);
  479. }
  480. }
  481. }
  482. for(; yd<slice_h; yd+=4){
  483. 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);
  484. }
  485. if(s->qlog == LOSSLESS_QLOG){
  486. for(; yq<slice_h && yq<h; yq++){
  487. IDWTELEM * line = slice_buffer_get_line(&s->sb, yq);
  488. for(x=0; x<w; x++){
  489. line[x] *= 1<<FRAC_BITS;
  490. }
  491. }
  492. }
  493. predict_slice_buffered(s, &s->sb, s->spatial_idwt_buffer, plane_index, 1, mb_y);
  494. y = FFMIN(p->height, slice_starty);
  495. end_y = FFMIN(p->height, slice_h);
  496. while(y < end_y)
  497. ff_slice_buffer_release(&s->sb, y++);
  498. }
  499. ff_slice_buffer_flush(&s->sb);
  500. }
  501. }
  502. emms_c();
  503. ff_snow_release_buffer(avctx);
  504. if(!(s->avctx->debug&2048))
  505. res = av_frame_ref(picture, s->current_picture);
  506. else
  507. res = av_frame_ref(picture, s->mconly_picture);
  508. if (res < 0)
  509. return res;
  510. *got_frame = 1;
  511. bytes_read= c->bytestream - c->bytestream_start;
  512. if(bytes_read ==0) av_log(s->avctx, AV_LOG_ERROR, "error at end of frame\n"); //FIXME
  513. return bytes_read;
  514. }
  515. static av_cold int decode_end(AVCodecContext *avctx)
  516. {
  517. SnowContext *s = avctx->priv_data;
  518. ff_slice_buffer_destroy(&s->sb);
  519. ff_snow_common_end(s);
  520. return 0;
  521. }
  522. AVCodec ff_snow_decoder = {
  523. .name = "snow",
  524. .long_name = NULL_IF_CONFIG_SMALL("Snow"),
  525. .type = AVMEDIA_TYPE_VIDEO,
  526. .id = AV_CODEC_ID_SNOW,
  527. .priv_data_size = sizeof(SnowContext),
  528. .init = decode_init,
  529. .close = decode_end,
  530. .decode = decode_frame,
  531. .capabilities = CODEC_CAP_DR1 /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
  532. };