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
43711312
Commit
43711312
authored
Apr 07, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iss: set channel layout
parent
41a2d959
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
iss.c
libavformat/iss.c
+8
-1
No files found.
libavformat/iss.c
View file @
43711312
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
* @see http://wiki.multimedia.cx/index.php?title=FunCom_ISS
* @see http://wiki.multimedia.cx/index.php?title=FunCom_ISS
*/
*/
#include "libavutil/channel_layout.h"
#include "avformat.h"
#include "avformat.h"
#include "internal.h"
#include "internal.h"
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
...
@@ -94,7 +95,13 @@ static av_cold int iss_read_header(AVFormatContext *s)
...
@@ -94,7 +95,13 @@ static av_cold int iss_read_header(AVFormatContext *s)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
st
->
codec
->
codec_type
=
AVMEDIA_TYPE_AUDIO
;
st
->
codec
->
codec_type
=
AVMEDIA_TYPE_AUDIO
;
st
->
codec
->
codec_id
=
AV_CODEC_ID_ADPCM_IMA_ISS
;
st
->
codec
->
codec_id
=
AV_CODEC_ID_ADPCM_IMA_ISS
;
st
->
codec
->
channels
=
stereo
?
2
:
1
;
if
(
stereo
)
{
st
->
codec
->
channels
=
2
;
st
->
codec
->
channel_layout
=
AV_CH_LAYOUT_STEREO
;
}
else
{
st
->
codec
->
channels
=
1
;
st
->
codec
->
channel_layout
=
AV_CH_LAYOUT_MONO
;
}
st
->
codec
->
sample_rate
=
44100
;
st
->
codec
->
sample_rate
=
44100
;
if
(
rate_divisor
>
0
)
if
(
rate_divisor
>
0
)
st
->
codec
->
sample_rate
/=
rate_divisor
;
st
->
codec
->
sample_rate
/=
rate_divisor
;
...
...
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