On Tue, 17 Mar 2015, Vittorio Giovara wrote:
From: Michael Niedermayer <[email protected]>--- This was proposed some time ago, but then there were too many feature requests (some without too much thought in them) and the patch was not pushed in the end. I'd say it'd be wiser to have this in the tree and have separate patches for separate features later. Cheers, Vittorio libavcodec/allcodecs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 4cba5fb..9827719 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -448,7 +448,6 @@ void avcodec_register_all(void) REGISTER_ENCODER(LIBMP3LAME, libmp3lame); REGISTER_ENCDEC (LIBOPENCORE_AMRNB, libopencore_amrnb); REGISTER_DECODER(LIBOPENCORE_AMRWB, libopencore_amrwb); - REGISTER_ENCODER(LIBOPENH264, libopenh264); REGISTER_ENCDEC (LIBOPENJPEG, libopenjpeg); REGISTER_ENCDEC (LIBOPUS, libopus); REGISTER_ENCDEC (LIBSCHROEDINGER, libschroedinger); @@ -467,6 +466,10 @@ void avcodec_register_all(void) REGISTER_ENCODER(LIBXAVS, libxavs); REGISTER_ENCODER(LIBXVID, libxvid); + /* external libraries, that shouldn't be used by default if one of the + * above is available */ + REGISTER_ENCODER(LIBOPENH264, libopenh264); + /* parsers */ REGISTER_PARSER(AAC, aac); REGISTER_PARSER(AAC_LATM, aac_latm); -- 1.9.3 (Apple Git-50)
Ok with me. // Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
