comparison dsputil.c @ 5411:362aec4ef932 libavcodec

Take care of some renames (Doxygen and function name) after the previous pure rename patch.
author takis
date Sat, 28 Jul 2007 18:26:43 +0000
parents e9a6215f4e3a
children c16a59ef6a86
comparison
equal deleted inserted replaced
5410:1efd5aa20168 5411:362aec4ef932
2558 } 2558 }
2559 #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */ 2559 #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */
2560 2560
2561 #if defined(CONFIG_H264_ENCODER) 2561 #if defined(CONFIG_H264_ENCODER)
2562 /* H264 specific */ 2562 /* H264 specific */
2563 void ff_h264dsp_init(DSPContext* c, AVCodecContext *avctx); 2563 void ff_h264dspenc_init(DSPContext* c, AVCodecContext *avctx);
2564 #endif /* CONFIG_H264_ENCODER */ 2564 #endif /* CONFIG_H264_ENCODER */
2565 2565
2566 static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ 2566 static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){
2567 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; 2567 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
2568 int i; 2568 int i;
4051 #endif 4051 #endif
4052 #if defined(CONFIG_VC1_DECODER) || defined(CONFIG_WMV3_DECODER) 4052 #if defined(CONFIG_VC1_DECODER) || defined(CONFIG_WMV3_DECODER)
4053 ff_vc1dsp_init(c,avctx); 4053 ff_vc1dsp_init(c,avctx);
4054 #endif 4054 #endif
4055 #if defined(CONFIG_H264_ENCODER) 4055 #if defined(CONFIG_H264_ENCODER)
4056 ff_h264dsp_init(c,avctx); 4056 ff_h264dspenc_init(c,avctx);
4057 #endif 4057 #endif
4058 4058
4059 c->put_mspel_pixels_tab[0]= put_mspel8_mc00_c; 4059 c->put_mspel_pixels_tab[0]= put_mspel8_mc00_c;
4060 c->put_mspel_pixels_tab[1]= put_mspel8_mc10_c; 4060 c->put_mspel_pixels_tab[1]= put_mspel8_mc10_c;
4061 c->put_mspel_pixels_tab[2]= put_mspel8_mc20_c; 4061 c->put_mspel_pixels_tab[2]= put_mspel8_mc20_c;