Commit 0835e619 authored by takis's avatar takis

Take care of some renames (Doxygen and function name) after the previous pure rename patch.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9820 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 31ad7b1e
...@@ -2560,7 +2560,7 @@ void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { ...@@ -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) #if defined(CONFIG_H264_ENCODER)
/* H264 specific */ /* H264 specific */
void ff_h264dsp_init(DSPContext* c, AVCodecContext *avctx); void ff_h264dspenc_init(DSPContext* c, AVCodecContext *avctx);
#endif /* CONFIG_H264_ENCODER */ #endif /* CONFIG_H264_ENCODER */
static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ 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) ...@@ -4053,7 +4053,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx)
ff_vc1dsp_init(c,avctx); ff_vc1dsp_init(c,avctx);
#endif #endif
#if defined(CONFIG_H264_ENCODER) #if defined(CONFIG_H264_ENCODER)
ff_h264dsp_init(c,avctx); ff_h264dspenc_init(c,avctx);
#endif #endif
c->put_mspel_pixels_tab[0]= put_mspel8_mc00_c; c->put_mspel_pixels_tab[0]= put_mspel8_mc00_c;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
*/ */
/** /**
* @file h264dsp.c * @file h264dspenc.c
* H.264 encoder related DSP utils * H.264 encoder related DSP utils
* *
*/ */
...@@ -74,7 +74,7 @@ static void h264_dct_c(DCTELEM block[4][4]) ...@@ -74,7 +74,7 @@ static void h264_dct_c(DCTELEM block[4][4])
H264_DCT_PART2(3); 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; c->h264_dct = h264_dct_c;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment