Commit 3ca269d6 authored by Rafaël Carré's avatar Rafaël Carré

avcodec encoder: add more aac profiles

parent 7691335f
...@@ -403,6 +403,10 @@ int OpenEncoder( vlc_object_t *p_this ) ...@@ -403,6 +403,10 @@ int OpenEncoder( vlc_object_t *p_this )
p_sys->i_aac_profile = FF_PROFILE_AAC_HE_V2; p_sys->i_aac_profile = FF_PROFILE_AAC_HE_V2;
else if( !strncmp( psz_val, "hev1", 4 ) ) else if( !strncmp( psz_val, "hev1", 4 ) )
p_sys->i_aac_profile = FF_PROFILE_AAC_HE; p_sys->i_aac_profile = FF_PROFILE_AAC_HE;
else if( !strncmp( psz_val, "ld", 2 ) )
p_sys->i_aac_profile = FF_PROFILE_AAC_LD;
else if( !strncmp( psz_val, "eld", 3 ) )
p_sys->i_aac_profile = FF_PROFILE_AAC_ELD;
#endif #endif
else else
{ {
......
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