Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7c2ff06b
Commit
7c2ff06b
authored
Aug 21, 2019
by
Steven Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/examples/decode_audio: print message about how to play the output file
Signed-off-by:
Steven Liu
<
lq@chinaffmpeg.org
>
parent
17576fda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
0 deletions
+51
-0
decode_audio.c
doc/examples/decode_audio.c
+51
-0
No files found.
doc/examples/decode_audio.c
View file @
7c2ff06b
...
@@ -39,6 +39,35 @@
...
@@ -39,6 +39,35 @@
#define AUDIO_INBUF_SIZE 20480
#define AUDIO_INBUF_SIZE 20480
#define AUDIO_REFILL_THRESH 4096
#define AUDIO_REFILL_THRESH 4096
static
int
get_format_from_sample_fmt
(
const
char
**
fmt
,
enum
AVSampleFormat
sample_fmt
)
{
int
i
;
struct
sample_fmt_entry
{
enum
AVSampleFormat
sample_fmt
;
const
char
*
fmt_be
,
*
fmt_le
;
}
sample_fmt_entries
[]
=
{
{
AV_SAMPLE_FMT_U8
,
"u8"
,
"u8"
},
{
AV_SAMPLE_FMT_S16
,
"s16be"
,
"s16le"
},
{
AV_SAMPLE_FMT_S32
,
"s32be"
,
"s32le"
},
{
AV_SAMPLE_FMT_FLT
,
"f32be"
,
"f32le"
},
{
AV_SAMPLE_FMT_DBL
,
"f64be"
,
"f64le"
},
};
*
fmt
=
NULL
;
for
(
i
=
0
;
i
<
FF_ARRAY_ELEMS
(
sample_fmt_entries
);
i
++
)
{
struct
sample_fmt_entry
*
entry
=
&
sample_fmt_entries
[
i
];
if
(
sample_fmt
==
entry
->
sample_fmt
)
{
*
fmt
=
AV_NE
(
entry
->
fmt_be
,
entry
->
fmt_le
);
return
0
;
}
}
fprintf
(
stderr
,
"sample format %s is not supported as output format
\n
"
,
av_get_sample_fmt_name
(
sample_fmt
));
return
-
1
;
}
static
void
decode
(
AVCodecContext
*
dec_ctx
,
AVPacket
*
pkt
,
AVFrame
*
frame
,
static
void
decode
(
AVCodecContext
*
dec_ctx
,
AVPacket
*
pkt
,
AVFrame
*
frame
,
FILE
*
outfile
)
FILE
*
outfile
)
{
{
...
@@ -172,6 +201,28 @@ int main(int argc, char **argv)
...
@@ -172,6 +201,28 @@ int main(int argc, char **argv)
pkt
->
size
=
0
;
pkt
->
size
=
0
;
decode
(
c
,
pkt
,
decoded_frame
,
outfile
);
decode
(
c
,
pkt
,
decoded_frame
,
outfile
);
/* print output pcm infomations, because there have no metadata of pcm */
enum
AVSampleFormat
sfmt
=
c
->
sample_fmt
;
int
n_channels
=
0
;
const
char
*
fmt
;
if
(
av_sample_fmt_is_planar
(
sfmt
))
{
const
char
*
packed
=
av_get_sample_fmt_name
(
sfmt
);
printf
(
"Warning: the sample format the decoder produced is planar "
"(%s). This example will output the first channel only.
\n
"
,
packed
?
packed
:
"?"
);
sfmt
=
av_get_packed_sample_fmt
(
sfmt
);
}
n_channels
=
c
->
channels
;
if
((
ret
=
get_format_from_sample_fmt
(
&
fmt
,
sfmt
))
<
0
)
goto
end
;
printf
(
"Play the output audio file with the command:
\n
"
"ffplay -f %s -ac %d -ar %d %s
\n
"
,
fmt
,
n_channels
,
c
->
sample_rate
,
outfilename
);
end:
fclose
(
outfile
);
fclose
(
outfile
);
fclose
(
f
);
fclose
(
f
);
...
...
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