diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-07-28 18:26:43 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-07-28 18:26:43 +0000 |
commit | edecaff8c24fa29aa231305162b9d05a2ac34477 (patch) | |
tree | 8722b66af4dbc2572b0f216279081f477a6bda89 | |
parent | bd38efffe89d39ca475bd14508fbfe09ad3979ce (diff) | |
download | ffmpeg-edecaff8c24fa29aa231305162b9d05a2ac34477.tar.gz |
Take care of some renames (Doxygen and function name) after the previous pure rename patch.
Originally committed as revision 9820 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dsputil.c | 4 | ||||
-rw-r--r-- | libavcodec/h264dspenc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index a03c08312e..ace487dfed 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2560,7 +2560,7 @@ void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { #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 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) 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 --git a/libavcodec/h264dspenc.c b/libavcodec/h264dspenc.c index 4f18afac4a..061de5e10e 100644 --- a/libavcodec/h264dspenc.c +++ b/libavcodec/h264dspenc.c @@ -21,7 +21,7 @@ */ /** - * @file h264dsp.c + * @file h264dspenc.c * H.264 encoder related DSP utils * */ @@ -74,7 +74,7 @@ static void h264_dct_c(DCTELEM block[4][4]) 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; } |