Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
e42670fc
Commit
e42670fc
authored
Mar 24, 2013
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: on encoding, try to match vlc and avcodec formats
This can avoid unnecessary format conversion.
parent
c62b9b03
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
modules/codec/avcodec/encoder.c
modules/codec/avcodec/encoder.c
+18
-2
No files found.
modules/codec/avcodec/encoder.c
View file @
e42670fc
...
...
@@ -598,21 +598,37 @@ int OpenEncoder( vlc_object_t *p_this )
p_codec
->
sample_fmts
[
0
]
:
AV_SAMPLE_FMT_S16
;
/* Try to match avcodec input format to vlc format so we could avoid one
format conversion */
if
(
GetVlcAudioFormat
(
p_context
->
sample_fmt
)
!=
p_enc
->
fmt_in
.
i_codec
)
{
msg_Dbg
(
p_enc
,
"Trying to find more suitable sample format instead of %s"
,
av_get_sample_fmt_name
(
p_context
->
sample_fmt
)
);
for
(
unsigned
int
i
=
0
;
p_codec
->
sample_fmts
[
i
]
!=
-
1
;
i
++
)
{
if
(
GetVlcAudioFormat
(
p_codec
->
sample_fmts
[
i
]
)
==
p_enc
->
fmt_in
.
i_codec
)
{
p_context
->
sample_fmt
=
p_codec
->
sample_fmts
[
i
];
msg_Dbg
(
p_enc
,
"Using %s as new sample format"
,
av_get_sample_fmt_name
(
p_context
->
sample_fmt
)
);
break
;
}
}
}
// Try if we can use interleaved format for codec input as VLC doesn't really do planar audio yet
// FIXME: Remove when planar/interleaved audio in vlc is equally supported
if
(
av_sample_fmt_is_planar
(
p_context
->
sample_fmt
)
)
{
msg_Dbg
(
p_enc
,
"Trying to find packet sample format instead of %s"
,
av_get_sample_fmt_name
(
p_context
->
sample_fmt
)
);
msg_Dbg
(
p_enc
,
"Trying to find packet sample format instead of
planar
%s"
,
av_get_sample_fmt_name
(
p_context
->
sample_fmt
)
);
for
(
unsigned
int
i
=
0
;
p_codec
->
sample_fmts
[
i
]
!=
-
1
;
i
++
)
{
if
(
!
av_sample_fmt_is_planar
(
p_codec
->
sample_fmts
[
i
]
)
)
{
p_context
->
sample_fmt
=
p_codec
->
sample_fmts
[
i
];
msg_Dbg
(
p_enc
,
"
Using
%s as new sample format"
,
av_get_sample_fmt_name
(
p_context
->
sample_fmt
)
);
msg_Dbg
(
p_enc
,
"
Changing to packet format
%s as new sample format"
,
av_get_sample_fmt_name
(
p_context
->
sample_fmt
)
);
break
;
}
}
}
msg_Dbg
(
p_enc
,
"Ended up using %s as sample format"
,
av_get_sample_fmt_name
(
p_context
->
sample_fmt
)
);
p_enc
->
fmt_in
.
i_codec
=
GetVlcAudioFormat
(
p_context
->
sample_fmt
);
p_context
->
sample_rate
=
p_enc
->
fmt_out
.
audio
.
i_rate
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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