FFmpeg  2.8.17
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
snowdec.c
Go to the documentation of this file.
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 
21 #include "libavutil/intmath.h"
22 #include "libavutil/log.h"
23 #include "libavutil/opt.h"
24 #include "avcodec.h"
25 #include "snow_dwt.h"
26 #include "internal.h"
27 #include "snow.h"
28 
29 #include "rangecoder.h"
30 #include "mathops.h"
31 
32 #include "mpegvideo.h"
33 #include "h263.h"
34 
35 static av_always_inline void predict_slice_buffered(SnowContext *s, slice_buffer * sb, IDWTELEM * old_buffer, int plane_index, int add, int mb_y){
36  Plane *p= &s->plane[plane_index];
37  const int mb_w= s->b_width << s->block_max_depth;
38  const int mb_h= s->b_height << s->block_max_depth;
39  int x, y, mb_x;
40  int block_size = MB_SIZE >> s->block_max_depth;
41  int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size;
42  int block_h = plane_index ? block_size>>s->chroma_v_shift : block_size;
43  const uint8_t *obmc = plane_index ? ff_obmc_tab[s->block_max_depth+s->chroma_h_shift] : ff_obmc_tab[s->block_max_depth];
44  int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size;
45  int ref_stride= s->current_picture->linesize[plane_index];
46  uint8_t *dst8= s->current_picture->data[plane_index];
47  int w= p->width;
48  int h= p->height;
49 
50  if(s->keyframe || (s->avctx->debug&512)){
51  if(mb_y==mb_h)
52  return;
53 
54  if(add){
55  for(y=block_h*mb_y; y<FFMIN(h,block_h*(mb_y+1)); y++){
56 // DWTELEM * line = slice_buffer_get_line(sb, y);
57  IDWTELEM * line = sb->line[y];
58  for(x=0; x<w; x++){
59 // int v= buf[x + y*w] + (128<<FRAC_BITS) + (1<<(FRAC_BITS-1));
60  int v= line[x] + (128<<FRAC_BITS) + (1<<(FRAC_BITS-1));
61  v >>= FRAC_BITS;
62  if(v&(~255)) v= ~(v>>31);
63  dst8[x + y*ref_stride]= v;
64  }
65  }
66  }else{
67  for(y=block_h*mb_y; y<FFMIN(h,block_h*(mb_y+1)); y++){
68 // DWTELEM * line = slice_buffer_get_line(sb, y);
69  IDWTELEM * line = sb->line[y];
70  for(x=0; x<w; x++){
71  line[x] -= 128 << FRAC_BITS;
72 // buf[x + y*w]-= 128<<FRAC_BITS;
73  }
74  }
75  }
76 
77  return;
78  }
79 
80  for(mb_x=0; mb_x<=mb_w; mb_x++){
81  add_yblock(s, 1, sb, old_buffer, dst8, obmc,
82  block_w*mb_x - block_w/2,
83  block_h*mb_y - block_h/2,
84  block_w, block_h,
85  w, h,
86  w, ref_stride, obmc_stride,
87  mb_x - 1, mb_y - 1,
88  add, 0, plane_index);
89  }
90 
91  if(s->avmv && mb_y < mb_h && plane_index == 0)
92  for(mb_x=0; mb_x<mb_w; mb_x++){
93  AVMotionVector *avmv = s->avmv + s->avmv_index;
94  const int b_width = s->b_width << s->block_max_depth;
95  const int b_stride= b_width;
96  BlockNode *bn= &s->block[mb_x + mb_y*b_stride];
97 
98  if (bn->type)
99  continue;
100 
101  s->avmv_index++;
102 
103  avmv->w = block_w;
104  avmv->h = block_h;
105  avmv->dst_x = block_w*mb_x - block_w/2;
106  avmv->dst_y = block_h*mb_y - block_h/2;
107  avmv->src_x = avmv->dst_x + (bn->mx * s->mv_scale)/8;
108  avmv->src_y = avmv->dst_y + (bn->my * s->mv_scale)/8;
109  avmv->source= -1 - bn->ref;
110  avmv->flags = 0;
111  }
112 }
113 
114 static inline void decode_subband_slice_buffered(SnowContext *s, SubBand *b, slice_buffer * sb, int start_y, int h, int save_state[1]){
115  const int w= b->width;
116  int y;
117  const int qlog= av_clip(s->qlog + (int64_t)b->qlog, 0, QROOT*16);
118  int qmul= ff_qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
119  int qadd= (s->qbias*qmul)>>QBIAS_SHIFT;
120  int new_index = 0;
121 
122  if(b->ibuf == s->spatial_idwt_buffer || s->qlog == LOSSLESS_QLOG){
123  qadd= 0;
124  qmul= 1<<QEXPSHIFT;
125  }
126 
127  /* If we are on the second or later slice, restore our index. */
128  if (start_y != 0)
129  new_index = save_state[0];
130 
131 
132  for(y=start_y; y<h; y++){
133  int x = 0;
134  int v;
136  memset(line, 0, b->width*sizeof(IDWTELEM));
137  v = b->x_coeff[new_index].coeff;
138  x = b->x_coeff[new_index++].x;
139  while(x < w){
140  register int t= (int)( (v>>1)*(unsigned)qmul + qadd)>>QEXPSHIFT;
141  register int u= -(v&1);
142  line[x] = (t^u) - u;
143 
144  v = b->x_coeff[new_index].coeff;
145  x = b->x_coeff[new_index++].x;
146  }
147  }
148 
149  /* Save our variables for the next slice. */
150  save_state[0] = new_index;
151 
152  return;
153 }
154 
155 static int decode_q_branch(SnowContext *s, int level, int x, int y){
156  const int w= s->b_width << s->block_max_depth;
157  const int rem_depth= s->block_max_depth - level;
158  const int index= (x + y*w) << rem_depth;
159  int trx= (x+1)<<rem_depth;
160  const BlockNode *left = x ? &s->block[index-1] : &null_block;
161  const BlockNode *top = y ? &s->block[index-w] : &null_block;
162  const BlockNode *tl = y && x ? &s->block[index-w-1] : left;
163  const BlockNode *tr = y && trx<w && ((x&1)==0 || level==0) ? &s->block[index-w+(1<<rem_depth)] : tl; //FIXME use lt
164  int s_context= 2*left->level + 2*top->level + tl->level + tr->level;
165  int res;
166 
167  if(s->keyframe){
169  return 0;
170  }
171 
172  if(level==s->block_max_depth || get_rac(&s->c, &s->block_state[4 + s_context])){
173  int type, mx, my;
174  int l = left->color[0];
175  int cb= left->color[1];
176  int cr= left->color[2];
177  unsigned ref = 0;
178  int ref_context= av_log2(2*left->ref) + av_log2(2*top->ref);
179  int mx_context= av_log2(2*FFABS(left->mx - top->mx)) + 0*av_log2(2*FFABS(tr->mx - top->mx));
180  int my_context= av_log2(2*FFABS(left->my - top->my)) + 0*av_log2(2*FFABS(tr->my - top->my));
181 
182  type= get_rac(&s->c, &s->block_state[1 + left->type + top->type]) ? BLOCK_INTRA : 0;
183  if(type){
184  int ld, cbd, crd;
185  pred_mv(s, &mx, &my, 0, left, top, tr);
186  ld = get_symbol(&s->c, &s->block_state[32], 1);
187  if (ld < -255 || ld > 255) {
188  return AVERROR_INVALIDDATA;
189  }
190  l += ld;
191  if (s->nb_planes > 2) {
192  cbd = get_symbol(&s->c, &s->block_state[64], 1);
193  crd = get_symbol(&s->c, &s->block_state[96], 1);
194  if (cbd < -255 || cbd > 255 || crd < -255 || crd > 255) {
195  return AVERROR_INVALIDDATA;
196  }
197  cb += cbd;
198  cr += crd;
199  }
200  }else{
201  if(s->ref_frames > 1)
202  ref= get_symbol(&s->c, &s->block_state[128 + 1024 + 32*ref_context], 0);
203  if (ref >= s->ref_frames) {
204  av_log(s->avctx, AV_LOG_ERROR, "Invalid ref\n");
205  return AVERROR_INVALIDDATA;
206  }
207  pred_mv(s, &mx, &my, ref, left, top, tr);
208  mx+= (unsigned)get_symbol(&s->c, &s->block_state[128 + 32*(mx_context + 16*!!ref)], 1);
209  my+= (unsigned)get_symbol(&s->c, &s->block_state[128 + 32*(my_context + 16*!!ref)], 1);
210  }
211  set_blocks(s, level, x, y, l, cb, cr, mx, my, ref, type);
212  }else{
213  if ((res = decode_q_branch(s, level+1, 2*x+0, 2*y+0)) < 0 ||
214  (res = decode_q_branch(s, level+1, 2*x+1, 2*y+0)) < 0 ||
215  (res = decode_q_branch(s, level+1, 2*x+0, 2*y+1)) < 0 ||
216  (res = decode_q_branch(s, level+1, 2*x+1, 2*y+1)) < 0)
217  return res;
218  }
219  return 0;
220 }
221 
222 static void dequantize_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){
223  const int w= b->width;
224  const int qlog= av_clip(s->qlog + (int64_t)b->qlog, 0, QROOT*16);
225  const int qmul= ff_qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
226  const int qadd= (s->qbias*qmul)>>QBIAS_SHIFT;
227  int x,y;
228 
229  if(s->qlog == LOSSLESS_QLOG) return;
230 
231  for(y=start_y; y<end_y; y++){
232 // DWTELEM * line = slice_buffer_get_line_from_address(sb, src + (y * stride));
234  for(x=0; x<w; x++){
235  int i= line[x];
236  if(i<0){
237  line[x]= -((-i*qmul + qadd)>>(QEXPSHIFT)); //FIXME try different bias
238  }else if(i>0){
239  line[x]= (( i*qmul + qadd)>>(QEXPSHIFT));
240  }
241  }
242  }
243 }
244 
245 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){
246  const int w= b->width;
247  int x,y;
248 
249  IDWTELEM * line=0; // silence silly "could be used without having been initialized" warning
250  IDWTELEM * prev;
251 
252  if (start_y != 0)
253  line = slice_buffer_get_line(sb, ((start_y - 1) * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
254 
255  for(y=start_y; y<end_y; y++){
256  prev = line;
257 // line = slice_buffer_get_line_from_address(sb, src + (y * stride));
258  line = slice_buffer_get_line(sb, (y * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
259  for(x=0; x<w; x++){
260  if(x){
261  if(use_median){
262  if(y && x+1<w) line[x] += mid_pred(line[x - 1], prev[x], prev[x + 1]);
263  else line[x] += line[x - 1];
264  }else{
265  if(y) line[x] += mid_pred(line[x - 1], prev[x], line[x - 1] + prev[x] - prev[x - 1]);
266  else line[x] += line[x - 1];
267  }
268  }else{
269  if(y) line[x] += prev[x];
270  }
271  }
272  }
273 }
274 
275 static void decode_qlogs(SnowContext *s){
276  int plane_index, level, orientation;
277 
278  for(plane_index=0; plane_index < s->nb_planes; plane_index++){
279  for(level=0; level<s->spatial_decomposition_count; level++){
280  for(orientation=level ? 1:0; orientation<4; orientation++){
281  int q;
282  if (plane_index==2) q= s->plane[1].band[level][orientation].qlog;
283  else if(orientation==2) q= s->plane[plane_index].band[level][1].qlog;
284  else q= get_symbol(&s->c, s->header_state, 1);
285  s->plane[plane_index].band[level][orientation].qlog= q;
286  }
287  }
288  }
289 }
290 
291 #define GET_S(dst, check) \
292  tmp= get_symbol(&s->c, s->header_state, 0);\
293  if(!(check)){\
294  av_log(s->avctx, AV_LOG_ERROR, "Error " #dst " is %d\n", tmp);\
295  return AVERROR_INVALIDDATA;\
296  }\
297  dst= tmp;
298 
300  int plane_index, tmp;
301  uint8_t kstate[32];
302 
303  memset(kstate, MID_STATE, sizeof(kstate));
304 
305  s->keyframe= get_rac(&s->c, kstate);
306  if(s->keyframe || s->always_reset){
309  s->qlog=
310  s->qbias=
311  s->mv_scale=
312  s->block_max_depth= 0;
313  }
314  if(s->keyframe){
315  GET_S(s->version, tmp <= 0U)
316  s->always_reset= get_rac(&s->c, s->header_state);
320  s->colorspace_type= get_symbol(&s->c, s->header_state, 0);
321  if (s->colorspace_type == 1) {
323  s->nb_planes = 1;
324  } else if(s->colorspace_type == 0) {
325  s->chroma_h_shift= get_symbol(&s->c, s->header_state, 0);
326  s->chroma_v_shift= get_symbol(&s->c, s->header_state, 0);
327 
328  if(s->chroma_h_shift == 1 && s->chroma_v_shift==1){
330  }else if(s->chroma_h_shift == 0 && s->chroma_v_shift==0){
332  }else if(s->chroma_h_shift == 2 && s->chroma_v_shift==2){
334  } else {
335  av_log(s, AV_LOG_ERROR, "unsupported color subsample mode %d %d\n", s->chroma_h_shift, s->chroma_v_shift);
336  s->chroma_h_shift = s->chroma_v_shift = 1;
338  return AVERROR_INVALIDDATA;
339  }
340  s->nb_planes = 3;
341  } else {
342  av_log(s, AV_LOG_ERROR, "unsupported color space\n");
343  s->chroma_h_shift = s->chroma_v_shift = 1;
345  return AVERROR_INVALIDDATA;
346  }
347 
348 
350 // s->rate_scalability= get_rac(&s->c, s->header_state);
351  GET_S(s->max_ref_frames, tmp < (unsigned)MAX_REF_FRAMES)
352  s->max_ref_frames++;
353 
354  decode_qlogs(s);
355  }
356 
357  if(!s->keyframe){
358  if(get_rac(&s->c, s->header_state)){
359  for(plane_index=0; plane_index<FFMIN(s->nb_planes, 2); plane_index++){
360  int htaps, i, sum=0;
361  Plane *p= &s->plane[plane_index];
362  p->diag_mc= get_rac(&s->c, s->header_state);
363  htaps= get_symbol(&s->c, s->header_state, 0);
364  if((unsigned)htaps >= HTAPS_MAX/2 - 1)
365  return AVERROR_INVALIDDATA;
366  htaps = htaps*2 + 2;
367  p->htaps= htaps;
368  for(i= htaps/2; i; i--){
369  p->hcoeff[i]= get_symbol(&s->c, s->header_state, 0) * (1-2*(i&1));
370  sum += p->hcoeff[i];
371  }
372  p->hcoeff[0]= 32-sum;
373  }
374  s->plane[2].diag_mc= s->plane[1].diag_mc;
375  s->plane[2].htaps = s->plane[1].htaps;
376  memcpy(s->plane[2].hcoeff, s->plane[1].hcoeff, sizeof(s->plane[1].hcoeff));
377  }
378  if(get_rac(&s->c, s->header_state)){
380  decode_qlogs(s);
381  }
382  }
383 
384  s->spatial_decomposition_type+= (unsigned)get_symbol(&s->c, s->header_state, 1);
385  if(s->spatial_decomposition_type > 1U){
386  av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_type %d not supported\n", s->spatial_decomposition_type);
387  return AVERROR_INVALIDDATA;
388  }
389  if(FFMIN(s->avctx-> width>>s->chroma_h_shift,
390  s->avctx->height>>s->chroma_v_shift) >> (s->spatial_decomposition_count-1) <= 1){
391  av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_count %d too large for size\n", s->spatial_decomposition_count);
392  return AVERROR_INVALIDDATA;
393  }
394  if (s->avctx->width > 65536-4) {
395  av_log(s->avctx, AV_LOG_ERROR, "Width %d is too large\n", s->avctx->width);
396  return AVERROR_INVALIDDATA;
397  }
398 
399 
400  s->qlog += (unsigned)get_symbol(&s->c, s->header_state, 1);
401  s->mv_scale += (unsigned)get_symbol(&s->c, s->header_state, 1);
402  s->qbias += (unsigned)get_symbol(&s->c, s->header_state, 1);
403  s->block_max_depth+= (unsigned)get_symbol(&s->c, s->header_state, 1);
404  if(s->block_max_depth > 1 || s->block_max_depth < 0 || s->mv_scale > 256U){
405  av_log(s->avctx, AV_LOG_ERROR, "block_max_depth= %d is too large\n", s->block_max_depth);
406  s->block_max_depth= 0;
407  s->mv_scale = 0;
408  return AVERROR_INVALIDDATA;
409  }
410  if (FFABS(s->qbias) > 127) {
411  av_log(s->avctx, AV_LOG_ERROR, "qbias %d is too large\n", s->qbias);
412  s->qbias = 0;
413  return AVERROR_INVALIDDATA;
414  }
415 
416  return 0;
417 }
418 
420 {
421  int ret;
422 
423  if ((ret = ff_snow_common_init(avctx)) < 0) {
424  return ret;
425  }
426 
427  return 0;
428 }
429 
431  int x, y;
432  int w= s->b_width;
433  int h= s->b_height;
434  int res;
435 
436  for(y=0; y<h; y++){
437  for(x=0; x<w; x++){
438  if (s->c.bytestream >= s->c.bytestream_end)
439  return AVERROR_INVALIDDATA;
440  if ((res = decode_q_branch(s, 0, x, y)) < 0)
441  return res;
442  }
443  }
444  return 0;
445 }
446 
447 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
448  AVPacket *avpkt)
449 {
450  const uint8_t *buf = avpkt->data;
451  int buf_size = avpkt->size;
452  SnowContext *s = avctx->priv_data;
453  RangeCoder * const c= &s->c;
454  int bytes_read;
455  AVFrame *picture = data;
456  int level, orientation, plane_index;
457  int res;
458 
459  ff_init_range_decoder(c, buf, buf_size);
460  ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
461 
462  s->current_picture->pict_type= AV_PICTURE_TYPE_I; //FIXME I vs. P
463  if ((res = decode_header(s)) < 0)
464  return res;
465  if ((res=ff_snow_common_init_after_header(avctx)) < 0)
466  return res;
467 
468  // realloc slice buffer for the case that spatial_decomposition_count changed
470  if ((res = ff_slice_buffer_init(&s->sb, s->plane[0].height,
471  (MB_SIZE >> s->block_max_depth) +
472  s->spatial_decomposition_count * 11 + 1,
473  s->plane[0].width,
474  s->spatial_idwt_buffer)) < 0)
475  return res;
476 
477  for(plane_index=0; plane_index < s->nb_planes; plane_index++){
478  Plane *p= &s->plane[plane_index];
479  p->fast_mc= p->diag_mc && p->htaps==6 && p->hcoeff[0]==40
480  && p->hcoeff[1]==-10
481  && p->hcoeff[2]==2;
482  }
483 
485 
486  if((res = ff_snow_frame_start(s)) < 0)
487  return res;
488 
490 
491  //keyframe flag duplication mess FIXME
492  if(avctx->debug&FF_DEBUG_PICT_INFO)
493  av_log(avctx, AV_LOG_ERROR,
494  "keyframe:%d qlog:%d qbias: %d mvscale: %d "
495  "decomposition_type:%d decomposition_count:%d\n",
496  s->keyframe, s->qlog, s->qbias, s->mv_scale,
499  );
500 
501  av_assert0(!s->avmv);
503  s->avmv = av_malloc_array(s->b_width * s->b_height, sizeof(AVMotionVector) << (s->block_max_depth*2));
504  }
505  s->avmv_index = 0;
506 
507  if ((res = decode_blocks(s)) < 0)
508  return res;
509 
510  for(plane_index=0; plane_index < s->nb_planes; plane_index++){
511  Plane *p= &s->plane[plane_index];
512  int w= p->width;
513  int h= p->height;
514  int x, y;
515  int decode_state[MAX_DECOMPOSITIONS][4][1]; /* Stored state info for unpack_coeffs. 1 variable per instance. */
516 
517  if(s->avctx->debug&2048){
518  memset(s->spatial_dwt_buffer, 0, sizeof(DWTELEM)*w*h);
519  predict_plane(s, s->spatial_idwt_buffer, plane_index, 1);
520 
521  for(y=0; y<h; y++){
522  for(x=0; x<w; x++){
523  int v= s->current_picture->data[plane_index][y*s->current_picture->linesize[plane_index] + x];
524  s->mconly_picture->data[plane_index][y*s->mconly_picture->linesize[plane_index] + x]= v;
525  }
526  }
527  }
528 
529  {
530  for(level=0; level<s->spatial_decomposition_count; level++){
531  for(orientation=level ? 1 : 0; orientation<4; orientation++){
532  SubBand *b= &p->band[level][orientation];
533  unpack_coeffs(s, b, b->parent, orientation);
534  }
535  }
536  }
537 
538  {
539  const int mb_h= s->b_height << s->block_max_depth;
540  const int block_size = MB_SIZE >> s->block_max_depth;
541  const int block_h = plane_index ? block_size>>s->chroma_v_shift : block_size;
542  int mb_y;
544  int yd=0, yq=0;
545  int y;
546  int end_y;
547 
549  for(mb_y=0; mb_y<=mb_h; mb_y++){
550 
551  int slice_starty = block_h*mb_y;
552  int slice_h = block_h*(mb_y+1);
553 
554  if (!(s->keyframe || s->avctx->debug&512)){
555  slice_starty = FFMAX(0, slice_starty - (block_h >> 1));
556  slice_h -= (block_h >> 1);
557  }
558 
559  for(level=0; level<s->spatial_decomposition_count; level++){
560  for(orientation=level ? 1 : 0; orientation<4; orientation++){
561  SubBand *b= &p->band[level][orientation];
562  int start_y;
563  int end_y;
564  int our_mb_start = mb_y;
565  int our_mb_end = (mb_y + 1);
566  const int extra= 3;
567  start_y = (mb_y ? ((block_h * our_mb_start) >> (s->spatial_decomposition_count - level)) + s->spatial_decomposition_count - level + extra: 0);
568  end_y = (((block_h * our_mb_end) >> (s->spatial_decomposition_count - level)) + s->spatial_decomposition_count - level + extra);
569  if (!(s->keyframe || s->avctx->debug&512)){
570  start_y = FFMAX(0, start_y - (block_h >> (1+s->spatial_decomposition_count - level)));
571  end_y = FFMAX(0, end_y - (block_h >> (1+s->spatial_decomposition_count - level)));
572  }
573  start_y = FFMIN(b->height, start_y);
574  end_y = FFMIN(b->height, end_y);
575 
576  if (start_y != end_y){
577  if (orientation == 0){
578  SubBand * correlate_band = &p->band[0][0];
579  int correlate_end_y = FFMIN(b->height, end_y + 1);
580  int correlate_start_y = FFMIN(b->height, (start_y ? start_y + 1 : 0));
581  decode_subband_slice_buffered(s, correlate_band, &s->sb, correlate_start_y, correlate_end_y, decode_state[0][0]);
582  correlate_slice_buffered(s, &s->sb, correlate_band, correlate_band->ibuf, correlate_band->stride, 1, 0, correlate_start_y, correlate_end_y);
583  dequantize_slice_buffered(s, &s->sb, correlate_band, correlate_band->ibuf, correlate_band->stride, start_y, end_y);
584  }
585  else
586  decode_subband_slice_buffered(s, b, &s->sb, start_y, end_y, decode_state[level][orientation]);
587  }
588  }
589  }
590 
591  for(; yd<slice_h; yd+=4){
593  }
594 
595  if(s->qlog == LOSSLESS_QLOG){
596  for(; yq<slice_h && yq<h; yq++){
597  IDWTELEM * line = slice_buffer_get_line(&s->sb, yq);
598  for(x=0; x<w; x++){
599  line[x] *= 1<<FRAC_BITS;
600  }
601  }
602  }
603 
604  predict_slice_buffered(s, &s->sb, s->spatial_idwt_buffer, plane_index, 1, mb_y);
605 
606  y = FFMIN(p->height, slice_starty);
607  end_y = FFMIN(p->height, slice_h);
608  while(y < end_y)
609  ff_slice_buffer_release(&s->sb, y++);
610  }
611 
613  }
614 
615  }
616 
617  emms_c();
618 
619  ff_snow_release_buffer(avctx);
620 
621  if(!(s->avctx->debug&2048))
622  res = av_frame_ref(picture, s->current_picture);
623  else
624  res = av_frame_ref(picture, s->mconly_picture);
625  if (res >= 0 && s->avmv_index) {
626  AVFrameSideData *sd;
627 
629  if (!sd)
630  return AVERROR(ENOMEM);
631  memcpy(sd->data, s->avmv, s->avmv_index * sizeof(AVMotionVector));
632  }
633 
634  av_freep(&s->avmv);
635 
636  if (res < 0)
637  return res;
638 
639  *got_frame = 1;
640 
641  bytes_read= c->bytestream - c->bytestream_start;
642  if(bytes_read ==0) av_log(s->avctx, AV_LOG_ERROR, "error at end of frame\n"); //FIXME
643 
644  return bytes_read;
645 }
646 
648 {
649  SnowContext *s = avctx->priv_data;
650 
652 
654 
655  return 0;
656 }
657 
659  .name = "snow",
660  .long_name = NULL_IF_CONFIG_SMALL("Snow"),
661  .type = AVMEDIA_TYPE_VIDEO,
662  .id = AV_CODEC_ID_SNOW,
663  .priv_data_size = sizeof(SnowContext),
664  .init = decode_init,
665  .close = decode_end,
666  .decode = decode_frame,
667  .capabilities = AV_CODEC_CAP_DR1 /*| AV_CODEC_CAP_DRAW_HORIZ_BAND*/,
668  .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
670 };
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:48
int version
Definition: snow.h:135
int mv_scale
Definition: snow.h:160
static av_always_inline void predict_plane(SnowContext *s, IDWTELEM *buf, int plane_index, int add)
Definition: snow.h:475
int ff_snow_frame_start(SnowContext *s)
Definition: snow.c:655
#define QSHIFT
Definition: snow.h:42
float v
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
AVCodecContext * avctx
Definition: snow.h:115
int block_max_depth
Definition: snow.h:167
AVFrame * mconly_picture
Definition: snow.h:129
int chroma_v_shift
Definition: snow.h:153
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
static const double htaps[HTAPS]
The 2nd half (48 coeffs) of a 96-tap symmetric lowpass filter.
Definition: dsd_tablegen.h:58
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:72
int16_t src_x
Absolute source position.
Definition: motion_vector.h:38
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
int always_reset
Definition: snow.h:134
#define BLOCK_INTRA
Definition: snow.h:57
void ff_slice_buffer_destroy(slice_buffer *buf)
Definition: snow_dwt.c:103
Range coder.
uint8_t * bytestream_end
Definition: rangecoder.h:44
int size
Definition: avcodec.h:1434
const char * b
Definition: vf_curves.c:109
static av_cold int decode_end(AVCodecContext *avctx)
Definition: snowdec.c:647
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1732
int max_ref_frames
Definition: snow.h:142
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: snowdec.c:447
mpegvideo header.
int ff_snow_common_init_after_header(AVCodecContext *avctx)
Definition: snow.c:514
void ff_spatial_idwt_buffered_slice(SnowDWTContext *dsp, DWTCompose *cs, slice_buffer *slice_buf, IDWTELEM *temp, int width, int height, int stride_line, int type, int decomposition_count, int y)
Definition: snow_dwt.c:658
int keyframe
Definition: snow.h:133
AVCodec.
Definition: avcodec.h:3482
void ff_snow_reset_contexts(SnowContext *s)
Definition: snow.c:96
static void set_blocks(SnowContext *s, int level, int x, int y, int l, int cb, int cr, int mx, int my, int ref, int type)
Definition: snow.h:482
short IDWTELEM
Definition: dirac_dwt.h:27
int qlog
log(qscale)/log[2^(1/6)]
Definition: snow.h:87
Definition: snow.h:50
int width
Definition: diracdec.c:101
#define HTAPS_MAX
Definition: snow.h:75
uint8_t level
Definition: snow.h:60
uint8_t ref
Definition: snow.h:53
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
static double cb(void *priv, double x, double y)
Definition: vf_geq.c:97
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
int b_height
Definition: snow.h:166
uint8_t
int16_t mx
Definition: snow.h:51
#define av_cold
Definition: attributes.h:74
static int get_rac(RangeCoder *c, uint8_t *const state)
Definition: rangecoder.h:115
#define FRAC_BITS
AVOptions.
int16_t dst_x
Absolute destination position.
Definition: motion_vector.h:42
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition: frame.c:366
#define emms_c()
Definition: internal.h:53
Structure to hold side data for an AVFrame.
Definition: frame.h:134
int16_t my
Definition: snow.h:52
uint8_t * data
Definition: avcodec.h:1433
int32_t source
Where the current macroblock comes from; negative value when it comes from the past, positive value when it comes from the future.
Definition: motion_vector.h:30
static const BlockNode null_block
Definition: snow.h:63
void ff_snow_release_buffer(AVCodecContext *avctx)
Definition: snow.c:640
#define QEXPSHIFT
Definition: snow.h:527
#define av_log(a,...)
BlockNode * block
Definition: snow.h:171
#define U(x)
Definition: vp56_arith.h:37
SnowDWTContext dwt
Definition: snow.h:123
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define MB_SIZE
Definition: cinepakenc.c:86
void ff_spatial_idwt_buffered_init(DWTCompose *cs, slice_buffer *sb, int width, int height, int stride_line, int type, int decomposition_count)
Definition: snow_dwt.c:639
int avmv_index
Definition: snow.h:188
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:178
uint8_t w
Width and height of the block.
Definition: motion_vector.h:34
int diag_mc
Definition: snow.h:105
static void pred_mv(DiracBlock *block, int stride, int x, int y, int ref)
Definition: diracdec.c:1144
AVMotionVector * avmv
Definition: snow.h:187
const uint8_t *const ff_obmc_tab[4]
Definition: snowdata.h:123
Definition: graph2dot.c:48
int stride
Definition: diracdec.c:100
const char * name
Name of the codec implementation.
Definition: avcodec.h:3489
#define FFMAX(a, b)
Definition: common.h:90
Libavcodec external API header.
uint8_t * bytestream
Definition: rangecoder.h:43
uint8_t color[3]
Definition: snow.h:54
int ref_frames
Definition: snow.h:143
x_and_coeff * x_coeff
Definition: snow.h:93
int htaps
Definition: snow.h:103
static av_cold int decode_init(AVCodecContext *avctx)
Definition: snowdec.c:419
int qlog
Definition: snow.h:155
void ff_slice_buffer_flush(slice_buffer *buf)
Definition: snow_dwt.c:91
static av_noinline int get_symbol(RangeCoder *c, uint8_t *state, int is_signed)
Definition: ffv1dec.c:66
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:242
#define FFMIN(a, b)
Definition: common.h:92
float y
static void unpack_coeffs(SnowContext *s, SubBand *b, SubBand *parent, int orientation)
Definition: snow.h:623
#define LOSSLESS_QLOG
Definition: snow.h:44
int width
picture width / height.
Definition: avcodec.h:1691
int16_t x
Definition: snow.h:78
Motion vectors exported by some codecs (on demand through the export_mvs flag set in the libavcodec A...
Definition: frame.h:96
Plane plane[MAX_PLANES]
Definition: snow.h:170
static av_always_inline void add_yblock(SnowContext *s, int sliced, slice_buffer *sb, IDWTELEM *dst, uint8_t *dst8, const uint8_t *obmc, int src_x, int src_y, int b_w, int b_h, int w, int h, int dst_stride, int src_stride, int obmc_stride, int b_x, int b_y, int add, int offset_dst, int plane_index)
Definition: snow.h:300
int b_width
Definition: snow.h:165
void ff_build_rac_states(RangeCoder *c, int factor, int max_p)
Definition: rangecoder.c:62
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:68
float u
int chroma_h_shift
Definition: snow.h:152
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)
Definition: snowdec.c:245
#define av_log2
Definition: intmath.h:100
static av_always_inline void predict_slice_buffered(SnowContext *s, slice_buffer *sb, IDWTELEM *old_buffer, int plane_index, int add, int mb_y)
Definition: snowdec.c:35
SubBand band[MAX_DWT_LEVELS][4]
Definition: diracdec.c:134
uint8_t block_state[128+32 *128]
Definition: snow.h:132
int qbias
Definition: snow.h:162
AVS_Value src
Definition: avisynth_c.h:482
int spatial_decomposition_count
Definition: snow.h:139
int DWTELEM
Definition: dirac_dwt.h:26
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
int debug
debug
Definition: avcodec.h:2852
int ff_slice_buffer_init(slice_buffer *buf, int line_count, int max_allocated_lines, int line_width, IDWTELEM *base_buffer)
Definition: snow_dwt.c:28
main external API structure.
Definition: avcodec.h:1512
int8_t hcoeff[HTAPS_MAX/2]
Definition: snow.h:104
#define QROOT
Definition: snow.h:43
int ff_snow_alloc_blocks(SnowContext *s)
Definition: snow.c:110
uint8_t * data
Definition: frame.h:136
static void decode_subband_slice_buffered(SnowContext *s, SubBand *b, slice_buffer *sb, int start_y, int h, int save_state[1])
Definition: snowdec.c:114
struct SubBand * parent
Definition: diracdec.c:105
void * buf
Definition: avisynth_c.h:553
GLint GLenum type
Definition: opengl_enc.c:105
AVCodec ff_snow_decoder
Definition: snowdec.c:658
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:73
AVFrameSideData * av_frame_new_side_data(AVFrame *frame, enum AVFrameSideDataType type, int size)
Add a new side data to a frame.
Definition: frame.c:590
int index
Definition: gxfenc.c:89
av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf, int buf_size)
Definition: rangecoder.c:53
int nb_planes
Definition: snow.h:169
#define mid_pred
Definition: mathops.h:95
int buf_y_offset
Definition: snow.h:91
uint8_t header_state[32]
Definition: snow.h:131
static void decode_qlogs(SnowContext *s)
Definition: snowdec.c:275
int spatial_scalability
Definition: snow.h:154
int ff_snow_common_init(AVCodecContext *avctx)
static int decode_header(SnowContext *s)
Definition: snowdec.c:299
uint16_t coeff
Definition: snow.h:79
int spatial_decomposition_type
Definition: snow.h:136
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
AVFrame * current_picture
Definition: snow.h:126
uint8_t level
Definition: svq3.c:150
#define FF_DEBUG_PICT_INFO
Definition: avcodec.h:2853
#define MAX_DECOMPOSITIONS
Definition: dirac_dwt.h:30
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:521
GLint GLenum GLboolean GLsizei stride
Definition: opengl_enc.c:105
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:67
Y , 8bpp.
Definition: pixfmt.h:75
uint64_t flags
Extra flag information.
Definition: motion_vector.h:47
#define MID_STATE
Definition: snow.h:39
int temporal_decomposition_type
Definition: snow.h:138
#define QBIAS_SHIFT
Definition: snow.h:164
common internal api header.
IDWTELEM ** line
For use by idwt and predict_slices.
Definition: snow_dwt.h:43
IDWTELEM * temp_idwt_buffer
Definition: snow.h:149
#define slice_buffer_get_line(slice_buf, line_num)
Definition: snow_dwt.h:87
static double c[64]
DWTELEM * spatial_dwt_buffer
Definition: snow.h:146
IDWTELEM * spatial_idwt_buffer
Definition: snow.h:148
uint8_t * bytestream_start
Definition: rangecoder.h:42
static void dequantize_slice_buffered(SnowContext *s, slice_buffer *sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y)
Definition: snowdec.c:222
void * priv_data
Definition: avcodec.h:1554
int buf_x_offset
Definition: snow.h:90
int colorspace_type
Definition: snow.h:151
int height
Definition: diracdec.c:102
slice_buffer sb
Definition: snow.h:175
IDWTELEM * ibuf
Definition: diracdec.c:104
int fast_mc
Definition: snow.h:106
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:1614
int width
Definition: diracdec.c:113
av_cold void ff_snow_common_end(SnowContext *s)
Definition: snow.c:693
RangeCoder c
Definition: snow.h:116
#define AV_CODEC_FLAG2_EXPORT_MVS
Export motion vectors through frame side data.
Definition: avcodec.h:835
uint8_t ff_qexp[QROOT]
Definition: snowdata.h:128
static int decode_blocks(SnowContext *s)
Definition: snowdec.c:430
#define av_freep(p)
#define MAX_REF_FRAMES
Definition: snow.h:46
void ff_slice_buffer_release(slice_buffer *buf, int line)
Definition: snow_dwt.c:78
#define av_always_inline
Definition: attributes.h:37
static uint32_t inverse(uint32_t v)
find multiplicative inverse modulo 2 ^ 32
Definition: asfcrypt.c:35
#define av_malloc_array(a, b)
uint8_t type
Definition: snow.h:55
Used to minimize the amount of memory used in order to optimize cache performance.
Definition: snow_dwt.h:42
int height
Definition: diracdec.c:114
static double cr(void *priv, double x, double y)
Definition: vf_geq.c:98
int temporal_decomposition_count
Definition: snow.h:141
This structure stores compressed data.
Definition: avcodec.h:1410
static int decode_q_branch(SnowContext *s, int level, int x, int y)
Definition: snowdec.c:155
#define GET_S(dst, check)
Definition: snowdec.c:291
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:857
Predicted.
Definition: avutil.h:267
int stride_line
Stride measured in lines, not pixels.
Definition: snow.h:92
static int width