[vlc-commits] avcodec encoder: aac ssr profile is supported

Rafaël Carré git at videolan.org
Wed Feb 19 19:34:21 CET 2014


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Wed Feb 19 19:33:45 2014 +0100| [7691335f7568d5938efbcd4ff6ec6fab24605593] | committer: Rafaël Carré

avcodec encoder: aac ssr profile is supported

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7691335f7568d5938efbcd4ff6ec6fab24605593
---

 modules/codec/avcodec/encoder.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/modules/codec/avcodec/encoder.c b/modules/codec/avcodec/encoder.c
index 9ba3e14..5c30211 100644
--- a/modules/codec/avcodec/encoder.c
+++ b/modules/codec/avcodec/encoder.c
@@ -393,10 +393,8 @@ int OpenEncoder( vlc_object_t *p_this )
             p_sys->i_aac_profile = FF_PROFILE_AAC_MAIN;
         else if( !strncmp( psz_val, "low", 3 ) )
             p_sys->i_aac_profile = FF_PROFILE_AAC_LOW;
-#if 0    /* Not supported by FAAC encoder */
         else if( !strncmp( psz_val, "ssr", 3 ) )
             p_sys->i_aac_profile = FF_PROFILE_AAC_SSR;
-#endif
         else if( !strncmp( psz_val, "ltp", 3 ) )
             p_sys->i_aac_profile = FF_PROFILE_AAC_LTP;
 #if LIBAVCODEC_VERSION_CHECK( 54, 19, 0, 35, 100 )



More information about the vlc-commits mailing list