Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
85e5b866
Commit
85e5b866
authored
May 03, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avplay: properly close/reopen AVAudioResampleContext on channel layout change
fixes Bug#280
parent
f1322480
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
avplay.c
avplay.c
+3
-1
No files found.
avplay.c
View file @
85e5b866
...
...
@@ -2060,15 +2060,17 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr)
dec
->
channel_layout
!=
is
->
resample_channel_layout
;
if
((
!
is
->
avr
&&
audio_resample
)
||
resample_changed
)
{
int
ret
;
if
(
is
->
avr
)
avresample_close
(
is
->
avr
);
else
if
(
audio_resample
)
{
int
ret
;
is
->
avr
=
avresample_alloc_context
();
if
(
!
is
->
avr
)
{
fprintf
(
stderr
,
"error allocating AVAudioResampleContext
\n
"
);
break
;
}
}
if
(
audio_resample
)
{
av_opt_set_int
(
is
->
avr
,
"in_channel_layout"
,
dec
->
channel_layout
,
0
);
av_opt_set_int
(
is
->
avr
,
"in_sample_fmt"
,
dec
->
sample_fmt
,
0
);
av_opt_set_int
(
is
->
avr
,
"in_sample_rate"
,
dec
->
sample_rate
,
0
);
...
...
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