avcodec: Add utils test

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-02-28 12:35:33 +01:00
parent 9f9ed79d4c
commit 0be09f54fb
2 changed files with 21 additions and 0 deletions

View File

@ -952,6 +952,7 @@ TESTPROGS = imgconvert \
jpeg2000dwt \
mathops \
options \
utils \
avfft \
TESTPROGS-$(CONFIG_CABAC) += cabac

View File

@ -3679,3 +3679,23 @@ AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx)
return props;
}
#ifdef TEST
int main(void){
avcodec_register_all();
AVCodec *codec = NULL;
int ret = 0;
while (codec = av_codec_next(codec)) {
if (av_codec_is_encoder(codec)) {
if (codec->type == AVMEDIA_TYPE_AUDIO) {
if (!codec->sample_fmts) {
av_log(NULL, AV_LOG_FATAL, "Encoder %s is missing the sample_fmts field\n", codec->name);
ret = 1;
}
}
}
}
return ret;
}
#endif /* TEST */