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
bde96717
Commit
bde96717
authored
Apr 25, 2011
by
Reimar Döffinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dca: allow selecting float output at runtime.
parent
5aff31b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
18 deletions
+10
-18
dca.c
libavcodec/dca.c
+10
-18
No files found.
libavcodec/dca.c
View file @
bde96717
...
...
@@ -1626,12 +1626,8 @@ static int dca_decode_frame(AVCodecContext * avctx,
int
lfe_samples
;
int
num_core_channels
=
0
;
int
i
;
/* ffdshow custom code */
#if CONFIG_AUDIO_FLOAT
float
*
samples
=
data
;
#else
float
*
samples_flt
=
data
;
int16_t
*
samples
=
data
;
#endif
DCAContext
*
s
=
avctx
->
priv_data
;
int
channels
;
int
core_ss_end
;
...
...
@@ -1840,13 +1836,13 @@ static int dca_decode_frame(AVCodecContext * avctx,
}
/* interleave samples */
#if CONFIG_AUDIO_FLOAT
/* ffdshow custom code */
float_interleave
(
samples
,
s
->
samples_chanptr
,
256
,
channels
)
;
#else
s
->
fmt_conv
.
float_to_int16_interleave
(
samples
,
s
->
samples_chanptr
,
256
,
channels
);
#endif
samples
+=
256
*
channels
;
if
(
avctx
->
sample_fmt
==
AV_SAMPLE_FMT_FLT
)
{
float_interleave
(
samples_flt
,
s
->
samples_chanptr
,
256
,
channels
);
samples_flt
+=
256
*
channels
;
}
else
{
s
->
fmt_conv
.
float_to_int16_interleave
(
samples
,
s
->
samples_chanptr
,
256
,
channels
);
samples
+=
256
*
channels
;
}
}
/* update lfe history */
...
...
@@ -1882,12 +1878,8 @@ static av_cold int dca_decode_init(AVCodecContext * avctx)
for
(
i
=
0
;
i
<
DCA_PRIM_CHANNELS_MAX
+
1
;
i
++
)
s
->
samples_chanptr
[
i
]
=
s
->
samples
+
i
*
256
;
/* ffdshow custom code */
#if CONFIG_AUDIO_FLOAT
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_FLT
;
#else
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S16
;
#endif
avctx
->
sample_fmt
=
avctx
->
request_sample_fmt
==
AV_SAMPLE_FMT_FLT
?
AV_SAMPLE_FMT_FLT
:
AV_SAMPLE_FMT_S16
;
s
->
scale_bias
=
1
.
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