You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec: Add utils test
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -952,6 +952,7 @@ TESTPROGS = imgconvert \
|
|||||||
jpeg2000dwt \
|
jpeg2000dwt \
|
||||||
mathops \
|
mathops \
|
||||||
options \
|
options \
|
||||||
|
utils \
|
||||||
avfft \
|
avfft \
|
||||||
|
|
||||||
TESTPROGS-$(CONFIG_CABAC) += cabac
|
TESTPROGS-$(CONFIG_CABAC) += cabac
|
||||||
|
@@ -3679,3 +3679,23 @@ AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx)
|
|||||||
|
|
||||||
return props;
|
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 */
|
||||||
|
Reference in New Issue
Block a user