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
5aff31b1
Commit
5aff31b1
authored
Apr 25, 2011
by
Reimar Döffinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vorbisdec: allow selecting float output at runtime.
parent
26d5a4b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
15 deletions
+12
-15
vorbisdec.c
libavcodec/vorbisdec.c
+12
-15
No files found.
libavcodec/vorbisdec.c
View file @
5aff31b1
...
...
@@ -1007,12 +1007,9 @@ static av_cold int vorbis_decode_init(AVCodecContext *avccontext)
avccontext
->
channels
=
vc
->
audio_channels
;
avccontext
->
sample_rate
=
vc
->
audio_samplerate
;
avccontext
->
frame_size
=
FFMIN
(
vc
->
blocksize
[
0
],
vc
->
blocksize
[
1
])
>>
2
;
/* ffdshow custom code */
#if CONFIG_AUDIO_FLOAT
avccontext
->
sample_fmt
=
AV_SAMPLE_FMT_FLT
;
#else
avccontext
->
sample_fmt
=
AV_SAMPLE_FMT_S16
;
#endif
avccontext
->
sample_fmt
=
avccontext
->
request_sample_fmt
==
AV_SAMPLE_FMT_FLT
?
AV_SAMPLE_FMT_FLT
:
AV_SAMPLE_FMT_S16
;
return
0
;
}
...
...
@@ -1640,15 +1637,15 @@ static int vorbis_decode_frame(AVCodecContext *avccontext,
len
*
ff_vorbis_channel_layout_offsets
[
vc
->
audio_channels
-
1
][
i
];
}
/* ffdshow custom code */
#if CONFIG_AUDIO_FLOAT
float_interleave
(
data
,
channel_ptrs
,
len
,
vc
->
audio_channels
);
*
data_size
=
len
*
sizeof
(
float
)
*
vc
->
audio_channels
;
#else
vc
->
fmt_conv
.
float_to_int16_interleave
(
data
,
channel_ptrs
,
len
,
vc
->
audio_channels
);
*
data_size
=
len
*
2
*
vc
->
audio_channels
;
#endif
*
data_size
=
len
*
vc
->
audio_channels
;
if
(
avccontext
->
sample_fmt
==
AV_SAMPLE_FMT_FLT
)
{
float_interleave
(
data
,
channel_ptrs
,
len
,
vc
->
audio_channels
);
*
data_size
*=
sizeof
(
float
)
;
}
else
{
vc
->
fmt_conv
.
float_to_int16_interleave
(
data
,
channel_ptrs
,
len
,
vc
->
audio_channels
);
*
data_size
*=
2
;
}
return
buf_size
;
}
...
...
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