aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/libmp3lame.c
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2013-10-23 20:55:29 -0700
committerStefano Sabatini <stefasab@gmail.com>2013-10-24 11:32:56 +0200
commit683d9cb1f28296ab8350a169146b07fd0adc36dd (patch)
tree4d4042c8623c6346b55f43c6132a9199fe7a2516 /libavcodec/libmp3lame.c
parent6879fe4265934ee80d3a1f343ebe94d026663d23 (diff)
downloadandroid_external_ffmpeg-683d9cb1f28296ab8350a169146b07fd0adc36dd.tar.gz
android_external_ffmpeg-683d9cb1f28296ab8350a169146b07fd0adc36dd.tar.bz2
android_external_ffmpeg-683d9cb1f28296ab8350a169146b07fd0adc36dd.zip
lavc/libmp3lame: fix alignment and capitalization in AVOptions
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'libavcodec/libmp3lame.c')
-rw-r--r--libavcodec/libmp3lame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c
index 2204f55c12..6402d3e0e3 100644
--- a/libavcodec/libmp3lame.c
+++ b/libavcodec/libmp3lame.c
@@ -263,8 +263,8 @@ static int mp3lame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
#define OFFSET(x) offsetof(LAMEContext, x)
#define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static const AVOption options[] = {
- { "reservoir", "Use bit reservoir.", OFFSET(reservoir), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
- { "joint_stereo", "Use joint stereo.", OFFSET(joint_stereo), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
+ { "reservoir", "use bit reservoir", OFFSET(reservoir), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
+ { "joint_stereo", "use joint stereo", OFFSET(joint_stereo), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
{ NULL },
};