summaryrefslogtreecommitdiff
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index e6609ef9b2..8652b17ee7 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -4172,23 +4172,3 @@ int avcodec_parameters_to_context(AVCodecContext *codec,
return 0;
}
-
-#ifdef TEST
-int main(void){
- AVCodec *codec = NULL;
- int ret = 0;
- avcodec_register_all();
-
- 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 */