diff options
author | Reinhard Tartler <siretart@tauware.de> | 2010-05-29 14:34:37 +0000 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2010-05-29 14:34:37 +0000 |
commit | 8f3504c3ca87f75e2eee437678b670ffa0b67ad1 (patch) | |
tree | 17eb3610027f971e4ae82da77fdbb82eb254b7d4 | |
parent | bf20d5e4bba3d2056eb4dfeac8f82a8d32c033fd (diff) | |
download | ffmpeg-8f3504c3ca87f75e2eee437678b670ffa0b67ad1.tar.gz |
Mark vorbis encoder as experimental.
backport r23339 by cehoyos
Originally committed as revision 23381 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
-rw-r--r-- | libavcodec/vorbis_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c index 2bc0a24096..934463d1e1 100644 --- a/libavcodec/vorbis_enc.c +++ b/libavcodec/vorbis_enc.c @@ -1099,7 +1099,7 @@ AVCodec vorbis_encoder = { vorbis_encode_init, vorbis_encode_frame, vorbis_encode_close, - .capabilities= CODEC_CAP_DELAY, + .capabilities= CODEC_CAP_DELAY | CODEC_CAP_EXPERIMENTAL, .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("Vorbis"), }; |