diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:12:29 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:12:29 +0000 |
commit | be6ed6fff4cace79a2c17094ad716bc0944a4274 (patch) | |
tree | 7f152718973ecd354ebd9cde2bfc16ad9ed37c23 /libavcodec/snow.c | |
parent | 8233b75041c4fca97dd71087ba888576be86a0f9 (diff) | |
download | ffmpeg-be6ed6fff4cace79a2c17094ad716bc0944a4274.tar.gz |
move some CFLAGS settings away from config.* writing section
Originally committed as revision 7043 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index 6bc9a8f1ae..f93d5ab050 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -3001,9 +3001,9 @@ static int get_block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index, con * improve the score of the whole frame, so iterative motion est * doesn't 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++){ |