diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-30 04:22:41 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-30 04:22:41 +0000 |
commit | 78c8b4b758e0e5eb582aa9929e7dca2837f931e2 (patch) | |
tree | 2213d29b9c72d371cdcc677f0d9215534eab38e5 /libavcodec/libvorbis.c | |
parent | 281bf84fbd27ddab1290bb284bb49662a247fc26 (diff) | |
download | ffmpeg-78c8b4b758e0e5eb582aa9929e7dca2837f931e2.tar.gz |
Add audio flag to libvorbis AVOption.
Originally committed as revision 26165 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libvorbis.c')
-rw-r--r-- | libavcodec/libvorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libvorbis.c b/libavcodec/libvorbis.c index 7e75d1d7cb..ef56c25ac9 100644 --- a/libavcodec/libvorbis.c +++ b/libavcodec/libvorbis.c @@ -55,7 +55,7 @@ typedef struct OggVorbisContext { } OggVorbisContext ; static const AVOption options[]={ -{"iblock", "Sets the impulse block bias", offsetof(OggVorbisContext, iblock), FF_OPT_TYPE_DOUBLE, 0, -15, 0, AV_OPT_FLAG_ENCODING_PARAM}, +{"iblock", "Sets the impulse block bias", offsetof(OggVorbisContext, iblock), FF_OPT_TYPE_DOUBLE, 0, -15, 0, AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_ENCODING_PARAM}, {NULL} }; static const AVClass class = { "libvorbis", av_default_item_name, options, LIBAVUTIL_VERSION_INT }; |