comparison vorbis_enc.c @ 11776:906fdc96cdf4 libavcodec

Mark vorbis encoder as experimental.
author cehoyos
date Wed, 26 May 2010 18:54:59 +0000
parents b02a8a91e27d
children b7d5e6078e04
comparison
equal deleted inserted replaced
11775:0a4431996742 11776:906fdc96cdf4
1097 CODEC_ID_VORBIS, 1097 CODEC_ID_VORBIS,
1098 sizeof(vorbis_enc_context), 1098 sizeof(vorbis_enc_context),
1099 vorbis_encode_init, 1099 vorbis_encode_init,
1100 vorbis_encode_frame, 1100 vorbis_encode_frame,
1101 vorbis_encode_close, 1101 vorbis_encode_close,
1102 .capabilities= CODEC_CAP_DELAY, 1102 .capabilities= CODEC_CAP_DELAY | CODEC_CAP_EXPERIMENTAL,
1103 .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, 1103 .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
1104 .long_name = NULL_IF_CONFIG_SMALL("Vorbis"), 1104 .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
1105 }; 1105 };