Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
161bfc4b
Commit
161bfc4b
authored
Feb 17, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
faad: call decoder_initialized() after libfaad initialization
Don't wait for the first frame to be decoded. We already have the sample rate and the channel count from faacDecInit().
parent
a72c7a7b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
18 deletions
+27
-18
faad_plugin.c
src/decoder/faad_plugin.c
+27
-18
No files found.
src/decoder/faad_plugin.c
View file @
161bfc4b
...
...
@@ -348,6 +348,7 @@ faad_stream_decode(struct decoder *mpd_decoder, struct input_stream *is)
float
file_time
;
float
total_time
=
0
;
faacDecHandle
decoder
;
struct
audio_format
audio_format
;
faacDecFrameInfo
frame_info
;
faacDecConfigurationPtr
config
;
uint32_t
sample_rate
;
...
...
@@ -358,7 +359,6 @@ faad_stream_decode(struct decoder *mpd_decoder, struct input_stream *is)
size_t
decoded_length
;
uint16_t
bit_rate
=
0
;
struct
decoder_buffer
*
buffer
;
bool
initialized
=
false
;
enum
decoder_command
cmd
;
buffer
=
decoder_buffer_new
(
mpd_decoder
,
is
,
...
...
@@ -392,6 +392,20 @@ faad_stream_decode(struct decoder *mpd_decoder, struct input_stream *is)
return
;
}
audio_format
=
(
struct
audio_format
){
.
bits
=
16
,
.
channels
=
channels
,
.
sample_rate
=
sample_rate
,
};
if
(
!
audio_format_valid
(
&
audio_format
))
{
g_warning
(
"invalid audio format
\n
"
);
faacDecClose
(
decoder
);
return
;
}
decoder_initialized
(
mpd_decoder
,
&
audio_format
,
false
,
total_time
);
file_time
=
0
.
0
;
do
{
...
...
@@ -406,26 +420,21 @@ faad_stream_decode(struct decoder *mpd_decoder, struct input_stream *is)
faacDecGetErrorMessage
(
frame_info
.
error
));
break
;
}
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
sample_rate
=
frame_info
.
samplerate
;
#endif
if
(
!
initialized
)
{
const
struct
audio_format
audio_format
=
{
.
bits
=
16
,
.
channels
=
frame_info
.
channels
,
.
sample_rate
=
sample_rate
,
};
if
(
!
audio_format_valid
(
&
audio_format
))
{
g_warning
(
"invalid audio format
\n
"
);
break
;
}
if
(
frame_info
.
channels
!=
channels
)
{
g_warning
(
"channel count changed from %u to %u"
,
channels
,
frame_info
.
channels
);
break
;
}
decoder_initialized
(
mpd_decoder
,
&
audio_format
,
false
,
total_time
);
initialized
=
true
;
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
if
(
frame_info
.
samplerate
!=
sample_rate
)
{
g_warning
(
"sample rate changed from %u to %lu"
,
sample_rate
,
(
unsigned
long
)
frame_info
.
samplerate
);
break
;
}
#endif
decoder_buffer_consume
(
buffer
,
frame_info
.
bytesconsumed
);
...
...
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