Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
3ca269d6
Commit
3ca269d6
authored
Feb 19, 2014
by
Rafaël Carré
Browse files
avcodec encoder: add more aac profiles
parent
7691335f
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/avcodec/encoder.c
View file @
3ca269d6
...
...
@@ -403,6 +403,10 @@ int OpenEncoder( vlc_object_t *p_this )
p_sys
->
i_aac_profile
=
FF_PROFILE_AAC_HE_V2
;
else
if
(
!
strncmp
(
psz_val
,
"hev1"
,
4
)
)
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
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment