From: Jaroslav Kysela Date: Thu, 27 Apr 2017 09:38:36 +0000 (+0200) Subject: profile: add missing MP4/av-lib muxer for transcoding X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbf4decf9147c9c5ee2e094b253107e2a6f73115;p=thirdparty%2Ftvheadend.git profile: add missing MP4/av-lib muxer for transcoding --- diff --git a/src/profile.c b/src/profile.c index 6226f6907..0dd96ac5d 100644 --- a/src/profile.c +++ b/src/profile.c @@ -1721,6 +1721,7 @@ profile_class_mc_list ( void *o, const char *lang ) { N_("Raw Audio Stream"), MC_MPEG2AUDIO }, { N_("Matroska (mkv)/av-lib"), MC_AVMATROSKA }, { N_("WEBM/av-lib"), MC_AVWEBM }, + { N_("MP4/av-lib"), MC_AVMP4 }, }; return strtab2htsmsg(tab, 1, lang); } @@ -2142,6 +2143,7 @@ profile_transcode_mc_valid(int mc) case MC_AAC: case MC_VORBIS: case MC_AVMATROSKA: + case MC_AVMP4: return 1; default: return 0;