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
10fef6bd
Commit
10fef6bd
authored
Jan 24, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aud: simplify header parsing
also allows for removing some unused context fields
parent
0e6a8b5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
22 deletions
+27
-22
westwood_aud.c
libavformat/westwood_aud.c
+27
-22
No files found.
libavformat/westwood_aud.c
View file @
10fef6bd
...
@@ -42,10 +42,8 @@
...
@@ -42,10 +42,8 @@
#define AUD_CHUNK_SIGNATURE 0x0000DEAF
#define AUD_CHUNK_SIGNATURE 0x0000DEAF
typedef
struct
WsAudDemuxContext
{
typedef
struct
WsAudDemuxContext
{
int
audio_samplerate
;
int
audio_channels
;
int
audio_channels
;
int
audio_bits
;
int
audio_samplerate
;
enum
CodecID
audio_type
;
int
audio_stream_index
;
int
audio_stream_index
;
int64_t
audio_frame_counter
;
int64_t
audio_frame_counter
;
}
WsAudDemuxContext
;
}
WsAudDemuxContext
;
...
@@ -97,37 +95,44 @@ static int wsaud_read_header(AVFormatContext *s,
...
@@ -97,37 +95,44 @@ static int wsaud_read_header(AVFormatContext *s,
AVIOContext
*
pb
=
s
->
pb
;
AVIOContext
*
pb
=
s
->
pb
;
AVStream
*
st
;
AVStream
*
st
;
unsigned
char
header
[
AUD_HEADER_SIZE
];
unsigned
char
header
[
AUD_HEADER_SIZE
];
int
sample_rate
,
channels
,
codec
;
if
(
avio_read
(
pb
,
header
,
AUD_HEADER_SIZE
)
!=
AUD_HEADER_SIZE
)
if
(
avio_read
(
pb
,
header
,
AUD_HEADER_SIZE
)
!=
AUD_HEADER_SIZE
)
return
AVERROR
(
EIO
);
return
AVERROR
(
EIO
);
wsaud
->
audio_samplerate
=
AV_RL16
(
&
header
[
0
]);
if
(
header
[
11
]
==
99
)
wsaud
->
audio_type
=
CODEC_ID_ADPCM_IMA_WS
;
else
if
(
header
[
11
]
==
1
)
wsaud
->
audio_type
=
CODEC_ID_WESTWOOD_SND1
;
else
return
AVERROR_INVALIDDATA
;
/* flag 0 indicates stereo */
sample_rate
=
AV_RL16
(
&
header
[
0
]);
wsaud
->
audio_channels
=
(
header
[
10
]
&
0x1
)
+
1
;
channels
=
(
header
[
10
]
&
0x1
)
+
1
;
/* flag 1 indicates 16 bit audio */
codec
=
header
[
11
];
wsaud
->
audio_bits
=
(((
header
[
10
]
&
0x2
)
>>
1
)
+
1
)
*
8
;
/* initialize the audio decoder stream */
/* initialize the audio decoder stream */
st
=
avformat_new_stream
(
s
,
NULL
);
st
=
avformat_new_stream
(
s
,
NULL
);
if
(
!
st
)
if
(
!
st
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
avpriv_set_pts_info
(
st
,
64
,
1
,
wsaud
->
audio_samplerate
);
st
->
codec
->
codec_type
=
AVMEDIA_TYPE_AUDIO
;
switch
(
codec
)
{
st
->
codec
->
codec_id
=
wsaud
->
audio_type
;
case
1
:
st
->
codec
->
codec_tag
=
0
;
/* no tag */
if
(
channels
!=
1
)
{
st
->
codec
->
channels
=
wsaud
->
audio_channels
;
av_log_ask_for_sample
(
s
,
"Stereo WS-SND1 is not supported.
\n
"
);
st
->
codec
->
sample_rate
=
wsaud
->
audio_samplerate
;
return
AVERROR_PATCHWELCOME
;
if
(
st
->
codec
->
codec_id
==
CODEC_ID_ADPCM_IMA_WS
)
{
}
st
->
codec
->
codec_id
=
CODEC_ID_WESTWOOD_SND1
;
break
;
case
99
:
st
->
codec
->
codec_id
=
CODEC_ID_ADPCM_IMA_WS
;
st
->
codec
->
bits_per_coded_sample
=
4
;
st
->
codec
->
bits_per_coded_sample
=
4
;
st
->
codec
->
bit_rate
=
st
->
codec
->
channels
*
st
->
codec
->
sample_rate
*
4
;
st
->
codec
->
bit_rate
=
channels
*
sample_rate
*
4
;
break
;
default:
av_log_ask_for_sample
(
s
,
"Unknown codec: %d
\n
"
,
codec
);
return
AVERROR_PATCHWELCOME
;
}
}
avpriv_set_pts_info
(
st
,
64
,
1
,
sample_rate
);
st
->
codec
->
codec_type
=
AVMEDIA_TYPE_AUDIO
;
st
->
codec
->
channels
=
channels
;
st
->
codec
->
sample_rate
=
sample_rate
;
wsaud
->
audio_channels
=
channels
;
wsaud
->
audio_samplerate
=
sample_rate
;
wsaud
->
audio_stream_index
=
st
->
index
;
wsaud
->
audio_stream_index
=
st
->
index
;
wsaud
->
audio_frame_counter
=
0
;
wsaud
->
audio_frame_counter
=
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