diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-10 08:25:12 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-15 01:26:33 -0700 |
commit | 835f798c7d20bca89eb4f3593846251ad0d84e4b (patch) | |
tree | 98edb39b65856815da17bcdb0e937bd8b5ad3501 /libavcodec/x86 | |
parent | a6a27fede94efe48aad1dcc9d5e000d2de71c7b2 (diff) | |
download | ffmpeg-835f798c7d20bca89eb4f3593846251ad0d84e4b.tar.gz |
mpegvideo: cosmetics: Lowercase ugly uppercase MPV_ function name prefixes
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/mpegvideo.c | 2 | ||||
-rw-r--r-- | libavcodec/x86/mpegvideoenc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/mpegvideo.c b/libavcodec/x86/mpegvideo.c index db94ffabb0..1395156a36 100644 --- a/libavcodec/x86/mpegvideo.c +++ b/libavcodec/x86/mpegvideo.c @@ -444,7 +444,7 @@ __asm__ volatile( #endif /* HAVE_INLINE_ASM */ -av_cold void ff_MPV_common_init_x86(MpegEncContext *s) +av_cold void ff_mpv_common_init_x86(MpegEncContext *s) { #if HAVE_INLINE_ASM int cpu_flags = av_get_cpu_flags(); diff --git a/libavcodec/x86/mpegvideoenc.c b/libavcodec/x86/mpegvideoenc.c index 2e4f06c8dc..47349d17ec 100644 --- a/libavcodec/x86/mpegvideoenc.c +++ b/libavcodec/x86/mpegvideoenc.c @@ -193,7 +193,7 @@ static void denoise_dct_sse2(MpegEncContext *s, int16_t *block){ } #endif /* HAVE_INLINE_ASM */ -av_cold void ff_MPV_encode_init_x86(MpegEncContext *s) +av_cold void ff_mpv_encode_init_x86(MpegEncContext *s) { const int dct_algo = s->avctx->dct_algo; int i; |