# HG changeset patch # User rbultje # Date 1282743748 0 # Node ID 9f06475db098cd35aa5e211b87e25049bda8df37 # Parent 87e6af0a6a5a0367ba55eecf1f6e3435291bebad Move vp6_filter_diag4() from DSPContext to VP56DSPContext. diff -r 87e6af0a6a5a -r 9f06475db098 dsputil.c --- a/dsputil.c Wed Aug 25 11:47:50 2010 +0000 +++ b/dsputil.c Wed Aug 25 13:42:28 2010 +0000 @@ -4428,9 +4428,6 @@ c->vp3_v_loop_filter= ff_vp3_v_loop_filter_c; c->vp3_idct_dc_add= ff_vp3_idct_dc_add_c; } - if (CONFIG_VP6_DECODER) { - c->vp6_filter_diag4= ff_vp6_filter_diag4_c; - } c->h261_loop_filter= h261_loop_filter_c; diff -r 87e6af0a6a5a -r 9f06475db098 dsputil.h --- a/dsputil.h Wed Aug 25 11:47:50 2010 +0000 +++ b/dsputil.h Wed Aug 25 13:42:28 2010 +0000 @@ -91,10 +91,6 @@ void ff_vp3_v_loop_filter_c(uint8_t *src, int stride, int *bounding_values); void ff_vp3_h_loop_filter_c(uint8_t *src, int stride, int *bounding_values); -/* VP6 DSP functions */ -void ff_vp6_filter_diag4_c(uint8_t *dst, uint8_t *src, int stride, - const int16_t *h_weights, const int16_t *v_weights); - /* Bink functions */ void ff_bink_idct_c (DCTELEM *block); void ff_bink_idct_add_c(uint8_t *dest, int linesize, DCTELEM *block); @@ -369,9 +365,6 @@ void (*vp3_v_loop_filter)(uint8_t *src, int stride, int *bounding_values); void (*vp3_h_loop_filter)(uint8_t *src, int stride, int *bounding_values); - void (*vp6_filter_diag4)(uint8_t *dst, uint8_t *src, int stride, - const int16_t *h_weights,const int16_t *v_weights); - /* assume len is a multiple of 4, and arrays are 16-byte aligned */ void (*vorbis_inverse_coupling)(float *mag, float *ang, int blocksize); void (*ac3_downmix)(float (*samples)[256], float (*matrix)[2], int out_ch, int in_ch, int len); diff -r 87e6af0a6a5a -r 9f06475db098 vp56dsp.c --- a/vp56dsp.c Wed Aug 25 11:47:50 2010 +0000 +++ b/vp56dsp.c Wed Aug 25 13:42:28 2010 +0000 @@ -82,7 +82,12 @@ } else { s->edge_filter_hor = vp6_edge_filter_hor; s->edge_filter_ver = vp6_edge_filter_ver; + + if (CONFIG_VP6_DECODER) { + s->vp6_filter_diag4= ff_vp6_filter_diag4_c; + } } if (ARCH_ARM) ff_vp56dsp_init_arm(s, codec); + if (HAVE_MMX) ff_vp56dsp_init_x86(s, codec); } diff -r 87e6af0a6a5a -r 9f06475db098 vp56dsp.h --- a/vp56dsp.h Wed Aug 25 11:47:50 2010 +0000 +++ b/vp56dsp.h Wed Aug 25 13:42:28 2010 +0000 @@ -22,13 +22,21 @@ #define AVCODEC_VP56DSP_H #include +#include "avcodec.h" typedef struct VP56DSPContext { void (*edge_filter_hor)(uint8_t *yuv, int stride, int t); void (*edge_filter_ver)(uint8_t *yuv, int stride, int t); + + void (*vp6_filter_diag4)(uint8_t *dst, uint8_t *src, int stride, + const int16_t *h_weights,const int16_t *v_weights); } VP56DSPContext; +void ff_vp6_filter_diag4_c(uint8_t *dst, uint8_t *src, int stride, + const int16_t *h_weights, const int16_t *v_weights); + void ff_vp56dsp_init(VP56DSPContext *s, enum CodecID codec); void ff_vp56dsp_init_arm(VP56DSPContext *s, enum CodecID codec); +void ff_vp56dsp_init_x86(VP56DSPContext* c, enum CodecID codec); #endif /* AVCODEC_VP56DSP_H */ diff -r 87e6af0a6a5a -r 9f06475db098 vp6.c --- a/vp6.c Wed Aug 25 11:47:50 2010 +0000 +++ b/vp6.c Wed Aug 25 13:42:28 2010 +0000 @@ -559,7 +559,7 @@ vp6_filter_hv4(dst, src+offset1, stride, stride, vp6_block_copy_filter[select][y8]); } else { - s->dsp.vp6_filter_diag4(dst, src+offset1+((mv.x^mv.y)>>31), stride, + s->vp56dsp.vp6_filter_diag4(dst, src+offset1+((mv.x^mv.y)>>31), stride, vp6_block_copy_filter[select][x8], vp6_block_copy_filter[select][y8]); } diff -r 87e6af0a6a5a -r 9f06475db098 vp6dsp.c --- a/vp6dsp.c Wed Aug 25 11:47:50 2010 +0000 +++ b/vp6dsp.c Wed Aug 25 13:42:28 2010 +0000 @@ -22,7 +22,7 @@ */ #include "libavutil/common.h" -#include "dsputil.h" +#include "vp56dsp.h" void ff_vp6_filter_diag4_c(uint8_t *dst, uint8_t *src, int stride, diff -r 87e6af0a6a5a -r 9f06475db098 x86/Makefile --- a/x86/Makefile Wed Aug 25 11:47:50 2010 +0000 +++ b/x86/Makefile Wed Aug 25 13:42:28 2010 +0000 @@ -29,11 +29,13 @@ MMX-OBJS-$(CONFIG_VP3_DECODER) += x86/vp3dsp_mmx.o \ x86/vp3dsp_sse2.o MMX-OBJS-$(CONFIG_VP5_DECODER) += x86/vp3dsp_mmx.o \ - x86/vp3dsp_sse2.o + x86/vp3dsp_sse2.o \ + x86/vp56dsp_init.o MMX-OBJS-$(CONFIG_VP6_DECODER) += x86/vp3dsp_mmx.o \ x86/vp3dsp_sse2.o \ x86/vp6dsp_mmx.o \ - x86/vp6dsp_sse2.o + x86/vp6dsp_sse2.o \ + x86/vp56dsp_init.o YASM-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp.o MMX-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp-init.o MMX-OBJS-$(HAVE_YASM) += x86/dsputil_yasm.o \ diff -r 87e6af0a6a5a -r 9f06475db098 x86/dsputil_mmx.c --- a/x86/dsputil_mmx.c Wed Aug 25 11:47:50 2010 +0000 +++ b/x86/dsputil_mmx.c Wed Aug 25 13:42:28 2010 +0000 @@ -30,8 +30,6 @@ #include "dsputil_mmx.h" #include "vp3dsp_mmx.h" #include "vp3dsp_sse2.h" -#include "vp6dsp_mmx.h" -#include "vp6dsp_sse2.h" #include "idct_xvid.h" //#undef NDEBUG @@ -2626,10 +2624,6 @@ c->put_rv40_chroma_pixels_tab[0]= put_rv40_chroma_mc8_mmx; c->put_rv40_chroma_pixels_tab[1]= put_rv40_chroma_mc4_mmx; - if (CONFIG_VP6_DECODER) { - c->vp6_filter_diag4 = ff_vp6_filter_diag4_mmx; - } - if (mm_flags & FF_MM_MMX2) { c->prefetch = prefetch_mmx2; @@ -2812,10 +2806,6 @@ H264_QPEL_FUNCS(3, 1, sse2); H264_QPEL_FUNCS(3, 2, sse2); H264_QPEL_FUNCS(3, 3, sse2); - - if (CONFIG_VP6_DECODER) { - c->vp6_filter_diag4 = ff_vp6_filter_diag4_sse2; - } } #if HAVE_SSSE3 if(mm_flags & FF_MM_SSSE3){ diff -r 87e6af0a6a5a -r 9f06475db098 x86/vp56dsp_init.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/x86/vp56dsp_init.c Wed Aug 25 13:42:28 2010 +0000 @@ -0,0 +1,42 @@ +/* + * VP6 MMX/SSE2 optimizations + * Copyright (C) 2009 Sebastien Lucas + * Copyright (C) 2009 Zuxy Meng + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "libavutil/x86_cpu.h" +#include "libavcodec/dsputil.h" +#include "libavcodec/vp56dsp.h" +#include "vp6dsp_mmx.h" +#include "vp6dsp_sse2.h" + +av_cold void ff_vp56dsp_init_x86(VP56DSPContext* c, enum CodecID codec) +{ + int mm_flags = mm_support(); + + if (CONFIG_VP6_DECODER && codec == CODEC_ID_VP6) { + if (mm_flags & FF_MM_MMX) { + c->vp6_filter_diag4 = ff_vp6_filter_diag4_mmx; + } + + if (mm_flags & FF_MM_SSE2) { + c->vp6_filter_diag4 = ff_vp6_filter_diag4_sse2; + } + } +}