summaryrefslogtreecommitdiff
path: root/libavcodec/wmv2enc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-10 08:25:12 -0700
committerDiego Biurrun <diego@biurrun.de>2014-08-15 01:26:33 -0700
commit835f798c7d20bca89eb4f3593846251ad0d84e4b (patch)
tree98edb39b65856815da17bcdb0e937bd8b5ad3501 /libavcodec/wmv2enc.c
parenta6a27fede94efe48aad1dcc9d5e000d2de71c7b2 (diff)
mpegvideo: cosmetics: Lowercase ugly uppercase MPV_ function name prefixes
Diffstat (limited to 'libavcodec/wmv2enc.c')
-rw-r--r--libavcodec/wmv2enc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/wmv2enc.c b/libavcodec/wmv2enc.c
index 256c4e546f..9da2b3f324 100644
--- a/libavcodec/wmv2enc.c
+++ b/libavcodec/wmv2enc.c
@@ -54,7 +54,7 @@ static int encode_ext_header(Wmv2Context *w){
static av_cold int wmv2_encode_init(AVCodecContext *avctx){
Wmv2Context * const w= avctx->priv_data;
- if(ff_MPV_encode_init(avctx) < 0)
+ if (ff_mpv_encode_init(avctx) < 0)
return -1;
ff_wmv2_common_init(w);
@@ -217,7 +217,7 @@ AVCodec ff_wmv2_encoder = {
.id = AV_CODEC_ID_WMV2,
.priv_data_size = sizeof(Wmv2Context),
.init = wmv2_encode_init,
- .encode2 = ff_MPV_encode_picture,
- .close = ff_MPV_encode_end,
+ .encode2 = ff_mpv_encode_picture,
+ .close = ff_mpv_encode_end,
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
};