diff options
Diffstat (limited to 'ext/ffmpeg/gstffmpegenc.c')
-rw-r--r-- | ext/ffmpeg/gstffmpegenc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/ffmpeg/gstffmpegenc.c b/ext/ffmpeg/gstffmpegenc.c index 1ea66b6..ed5cad3 100644 --- a/ext/ffmpeg/gstffmpegenc.c +++ b/ext/ffmpeg/gstffmpegenc.c @@ -1183,7 +1183,8 @@ gst_ffmpegenc_register (GstPlugin * plugin) /* first make sure we've got a supported type */ if (!(srccaps = gst_ffmpeg_codecid_to_caps (in_plugin->id, NULL, TRUE))) { - GST_WARNING ("Couldn't get source caps for encoder %s", in_plugin->name); + GST_DEBUG ("Couldn't get source caps for encoder '%s', skipping codec", + in_plugin->name); goto next; } @@ -1195,7 +1196,8 @@ gst_ffmpegenc_register (GstPlugin * plugin) in_plugin->id, TRUE, in_plugin); } if (!sinkcaps) { - GST_WARNING ("Couldn't get sink caps for encoder %s", in_plugin->name); + GST_DEBUG ("Couldn't get sink caps for encoder '%s', skipping codec", + in_plugin->name); goto next; } /* construct the type */ |