diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-14 17:50:16 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-14 17:50:16 +0000 |
commit | 33996217ca10c92f2f50909c199236fafa01cf1e (patch) | |
tree | edcc8ff0707410d89985f9276aa003bb13a6664b /libavcodec/snow.c | |
parent | 05aec7bb87236bf6e7c0f61fb6b20c5c922b49e2 (diff) | |
download | ffmpeg-33996217ca10c92f2f50909c199236fafa01cf1e.tar.gz |
Add ff_ prefix to dwt functions
Originally committed as revision 22523 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index a4758b69eb..ad28d6484d 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -2081,8 +2081,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac common_init_after_header(avctx); // realloc slice buffer for the case that spatial_decomposition_count changed - slice_buffer_destroy(&s->sb); - slice_buffer_init(&s->sb, s->plane[0].height, (MB_SIZE >> s->block_max_depth) + s->spatial_decomposition_count * 8 + 1, s->plane[0].width, s->spatial_idwt_buffer); + ff_slice_buffer_destroy(&s->sb); + ff_slice_buffer_init(&s->sb, s->plane[0].height, (MB_SIZE >> s->block_max_depth) + s->spatial_decomposition_count * 8 + 1, s->plane[0].width, s->spatial_idwt_buffer); for(plane_index=0; plane_index<3; plane_index++){ Plane *p= &s->plane[plane_index]; @@ -2199,10 +2199,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac y = FFMIN(p->height, slice_starty); end_y = FFMIN(p->height, slice_h); while(y < end_y) - slice_buffer_release(&s->sb, y++); + ff_slice_buffer_release(&s->sb, y++); } - slice_buffer_flush(&s->sb); + ff_slice_buffer_flush(&s->sb); } } @@ -2228,7 +2228,7 @@ static av_cold int decode_end(AVCodecContext *avctx) { SnowContext *s = avctx->priv_data; - slice_buffer_destroy(&s->sb); + ff_slice_buffer_destroy(&s->sb); common_end(s); @@ -2829,9 +2829,9 @@ static int get_block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index, con * to improve the score of the whole frame, thus iterative motion * estimation does not always converge. */ if(s->avctx->me_cmp == FF_CMP_W97) - distortion = w97_32_c(&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32); + distortion = ff_w97_32_c(&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32); else if(s->avctx->me_cmp == FF_CMP_W53) - distortion = w53_32_c(&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32); + distortion = ff_w53_32_c(&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32); else{ distortion = 0; for(i=0; i<4; i++){ |