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
c3d01577
Commit
c3d01577
authored
Mar 21, 2013
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flvdec: use the correct audio codec id when parsing metadata
parent
0afcf97e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
flvdec.c
libavformat/flvdec.c
+2
-1
No files found.
libavformat/flvdec.c
View file @
c3d01577
...
...
@@ -417,7 +417,8 @@ static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vst
flv_set_video_codec
(
s
,
vstream
,
num_val
,
0
);
}
else
if
(
!
strcmp
(
key
,
"audiocodecid"
)
&&
acodec
)
{
flv_set_audio_codec
(
s
,
astream
,
acodec
,
num_val
);
int
id
=
((
int
)
num_val
)
<<
FLV_AUDIO_CODECID_OFFSET
;
flv_set_audio_codec
(
s
,
astream
,
acodec
,
id
);
}
else
if
(
!
strcmp
(
key
,
"audiosamplerate"
)
&&
acodec
)
{
acodec
->
sample_rate
=
num_val
;
...
...
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