Commit 7691335f authored by Rafaël Carré's avatar Rafaël Carré

avcodec encoder: aac ssr profile is supported

parent 75aace48
...@@ -393,10 +393,8 @@ int OpenEncoder( vlc_object_t *p_this ) ...@@ -393,10 +393,8 @@ int OpenEncoder( vlc_object_t *p_this )
p_sys->i_aac_profile = FF_PROFILE_AAC_MAIN; p_sys->i_aac_profile = FF_PROFILE_AAC_MAIN;
else if( !strncmp( psz_val, "low", 3 ) ) else if( !strncmp( psz_val, "low", 3 ) )
p_sys->i_aac_profile = FF_PROFILE_AAC_LOW; p_sys->i_aac_profile = FF_PROFILE_AAC_LOW;
#if 0 /* Not supported by FAAC encoder */
else if( !strncmp( psz_val, "ssr", 3 ) ) else if( !strncmp( psz_val, "ssr", 3 ) )
p_sys->i_aac_profile = FF_PROFILE_AAC_SSR; p_sys->i_aac_profile = FF_PROFILE_AAC_SSR;
#endif
else if( !strncmp( psz_val, "ltp", 3 ) ) else if( !strncmp( psz_val, "ltp", 3 ) )
p_sys->i_aac_profile = FF_PROFILE_AAC_LTP; p_sys->i_aac_profile = FF_PROFILE_AAC_LTP;
#if LIBAVCODEC_VERSION_CHECK( 54, 19, 0, 35, 100 ) #if LIBAVCODEC_VERSION_CHECK( 54, 19, 0, 35, 100 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment