From: Dietmar Konermann Date: Tue, 2 Jan 2018 14:33:23 +0000 (+0100) Subject: transcode: set AVFILTER_AUTO_CONVERT_ALL, issue #4797 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40250c1335a6bfc4d72b763704a3e778d38d1c17;p=thirdparty%2Ftvheadend.git transcode: set AVFILTER_AUTO_CONVERT_ALL, issue #4797 --- diff --git a/src/transcoding/transcode/context.c b/src/transcoding/transcode/context.c index a035bafa3..098f05c7a 100644 --- a/src/transcoding/transcode/context.c +++ b/src/transcoding/transcode/context.c @@ -603,7 +603,7 @@ tvh_context_open_filters(TVHContext *self, } avfilter_graph_set_auto_convert(self->avfltgraph, - AVFILTER_AUTO_CONVERT_NONE); + AVFILTER_AUTO_CONVERT_ALL); if ((ret = avfilter_graph_config(self->avfltgraph, &logctx)) < 0) { tvh_context_log(self, LOG_ERR, "filters: failed to config filter graph");