# HG changeset patch # User takis # Date 1185647203 0 # Node ID 362aec4ef93242af8c277dd9b0391a33039fcfad # Parent 1efd5aa20168e23e95c22af5f0957072af701b7d Take care of some renames (Doxygen and function name) after the previous pure rename patch. diff -r 1efd5aa20168 -r 362aec4ef932 dsputil.c --- a/dsputil.c Sat Jul 28 18:23:35 2007 +0000 +++ b/dsputil.c Sat Jul 28 18:26:43 2007 +0000 @@ -2560,7 +2560,7 @@ #if defined(CONFIG_H264_ENCODER) /* H264 specific */ -void ff_h264dsp_init(DSPContext* c, AVCodecContext *avctx); +void ff_h264dspenc_init(DSPContext* c, AVCodecContext *avctx); #endif /* CONFIG_H264_ENCODER */ static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ @@ -4053,7 +4053,7 @@ ff_vc1dsp_init(c,avctx); #endif #if defined(CONFIG_H264_ENCODER) - ff_h264dsp_init(c,avctx); + ff_h264dspenc_init(c,avctx); #endif c->put_mspel_pixels_tab[0]= put_mspel8_mc00_c; diff -r 1efd5aa20168 -r 362aec4ef932 h264dspenc.c --- a/h264dspenc.c Sat Jul 28 18:23:35 2007 +0000 +++ b/h264dspenc.c Sat Jul 28 18:26:43 2007 +0000 @@ -21,7 +21,7 @@ */ /** - * @file h264dsp.c + * @file h264dspenc.c * H.264 encoder related DSP utils * */ @@ -74,7 +74,7 @@ H264_DCT_PART2(3); } -void ff_h264dsp_init(DSPContext* c, AVCodecContext *avctx) +void ff_h264dspenc_init(DSPContext* c, AVCodecContext *avctx) { c->h264_dct = h264_dct_c; }