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
2725ce7c
Commit
2725ce7c
authored
Aug 25, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmalossless: output in planar sample format
parent
7ebfe5b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
wmalosslessdec.c
libavcodec/wmalosslessdec.c
+9
-8
No files found.
libavcodec/wmalosslessdec.c
View file @
2725ce7c
...
@@ -186,9 +186,9 @@ static av_cold int decode_init(AVCodecContext *avctx)
...
@@ -186,9 +186,9 @@ static av_cold int decode_init(AVCodecContext *avctx)
channel_mask
=
AV_RL32
(
edata_ptr
+
2
);
channel_mask
=
AV_RL32
(
edata_ptr
+
2
);
s
->
bits_per_sample
=
AV_RL16
(
edata_ptr
);
s
->
bits_per_sample
=
AV_RL16
(
edata_ptr
);
if
(
s
->
bits_per_sample
==
16
)
if
(
s
->
bits_per_sample
==
16
)
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S16
;
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S16
P
;
else
if
(
s
->
bits_per_sample
==
24
)
{
else
if
(
s
->
bits_per_sample
==
24
)
{
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S32
;
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S32
P
;
av_log_missing_feature
(
avctx
,
"bit-depth higher than 16"
,
0
);
av_log_missing_feature
(
avctx
,
"bit-depth higher than 16"
,
0
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
else
{
}
else
{
...
@@ -984,11 +984,9 @@ static int decode_subframe(WmallDecodeCtx *s)
...
@@ -984,11 +984,9 @@ static int decode_subframe(WmallDecodeCtx *s)
for
(
j
=
0
;
j
<
subframe_len
;
j
++
)
{
for
(
j
=
0
;
j
<
subframe_len
;
j
++
)
{
if
(
s
->
bits_per_sample
==
16
)
{
if
(
s
->
bits_per_sample
==
16
)
{
*
s
->
samples_16
[
c
]
=
(
int16_t
)
s
->
channel_residues
[
c
][
j
]
<<
padding_zeroes
;
*
s
->
samples_16
[
c
]
++
=
(
int16_t
)
s
->
channel_residues
[
c
][
j
]
<<
padding_zeroes
;
s
->
samples_16
[
c
]
+=
s
->
num_channels
;
}
else
{
}
else
{
*
s
->
samples_32
[
c
]
=
s
->
channel_residues
[
c
][
j
]
<<
padding_zeroes
;
*
s
->
samples_32
[
c
]
++
=
s
->
channel_residues
[
c
][
j
]
<<
padding_zeroes
;
s
->
samples_32
[
c
]
+=
s
->
num_channels
;
}
}
}
}
}
}
...
@@ -1025,8 +1023,8 @@ static int decode_frame(WmallDecodeCtx *s)
...
@@ -1025,8 +1023,8 @@ static int decode_frame(WmallDecodeCtx *s)
return
ret
;
return
ret
;
}
}
for
(
i
=
0
;
i
<
s
->
num_channels
;
i
++
)
{
for
(
i
=
0
;
i
<
s
->
num_channels
;
i
++
)
{
s
->
samples_16
[
i
]
=
(
int16_t
*
)
s
->
frame
.
data
[
0
]
+
i
;
s
->
samples_16
[
i
]
=
(
int16_t
*
)
s
->
frame
.
extended_data
[
i
]
;
s
->
samples_32
[
i
]
=
(
int32_t
*
)
s
->
frame
.
data
[
0
]
+
i
;
s
->
samples_32
[
i
]
=
(
int32_t
*
)
s
->
frame
.
extended_data
[
i
]
;
}
}
/* get frame length */
/* get frame length */
...
@@ -1296,4 +1294,7 @@ AVCodec ff_wmalossless_decoder = {
...
@@ -1296,4 +1294,7 @@ AVCodec ff_wmalossless_decoder = {
.
flush
=
flush
,
.
flush
=
flush
,
.
capabilities
=
CODEC_CAP_SUBFRAMES
|
CODEC_CAP_DR1
|
CODEC_CAP_DELAY
,
.
capabilities
=
CODEC_CAP_SUBFRAMES
|
CODEC_CAP_DR1
|
CODEC_CAP_DELAY
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Windows Media Audio Lossless"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Windows Media Audio Lossless"
),
.
sample_fmts
=
(
const
enum
AVSampleFormat
[])
{
AV_SAMPLE_FMT_S16P
,
AV_SAMPLE_FMT_S32P
,
AV_SAMPLE_FMT_NONE
},
};
};
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