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
4c7ad768
Commit
4c7ad768
authored
Apr 25, 2011
by
Reimar Döffinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ac3dec: allow selecting float output at runtime.
parent
5e9de76f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
27 deletions
+27
-27
ac3dec.c
libavcodec/ac3dec.c
+18
-27
avcodec.h
libavcodec/avcodec.h
+8
-0
options.c
libavcodec/options.c
+1
-0
No files found.
libavcodec/ac3dec.c
View file @
4c7ad768
...
@@ -185,14 +185,6 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
...
@@ -185,14 +185,6 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
ff_fmt_convert_init
(
&
s
->
fmt_conv
,
avctx
);
ff_fmt_convert_init
(
&
s
->
fmt_conv
,
avctx
);
av_lfg_init
(
&
s
->
dith_state
,
0
);
av_lfg_init
(
&
s
->
dith_state
,
0
);
/* ffdshow custom code */
#if CONFIG_AUDIO_FLOAT
s
->
mul_bias
=
1
.
0
f
;
#else
/* set scale value for float to int16 conversion */
s
->
mul_bias
=
32767
.
0
f
;
#endif
/* allow downmixing to stereo or mono */
/* allow downmixing to stereo or mono */
if
(
avctx
->
channels
>
0
&&
avctx
->
request_channels
>
0
&&
if
(
avctx
->
channels
>
0
&&
avctx
->
request_channels
>
0
&&
avctx
->
request_channels
<
avctx
->
channels
&&
avctx
->
request_channels
<
avctx
->
channels
&&
...
@@ -201,12 +193,14 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
...
@@ -201,12 +193,14 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
}
}
s
->
downmixed
=
1
;
s
->
downmixed
=
1
;
/* ffdshow custom code */
if
(
avctx
->
request_sample_fmt
==
AV_SAMPLE_FMT_FLT
)
{
#if CONFIG_AUDIO_FLOAT
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_FLT
;
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_FLT
;
#else
s
->
mul_bias
=
1
.
0
f
;
}
else
{
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S16
;
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S16
;
#endif
/* set scale value for float to int16 conversion */
s
->
mul_bias
=
32767
.
0
f
;
}
return
0
;
return
0
;
}
}
...
@@ -1301,12 +1295,8 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
...
@@ -1301,12 +1295,8 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
const
uint8_t
*
buf
=
avpkt
->
data
;
const
uint8_t
*
buf
=
avpkt
->
data
;
int
buf_size
=
avpkt
->
size
;
int
buf_size
=
avpkt
->
size
;
AC3DecodeContext
*
s
=
avctx
->
priv_data
;
AC3DecodeContext
*
s
=
avctx
->
priv_data
;
/* ffdshow custom code */
float
*
out_samples_flt
=
(
float
*
)
data
;
#if CONFIG_AUDIO_FLOAT
float
*
out_samples
=
(
float
*
)
data
;
#else
int16_t
*
out_samples
=
(
int16_t
*
)
data
;
int16_t
*
out_samples
=
(
int16_t
*
)
data
;
#endif
int
blk
,
ch
,
err
;
int
blk
,
ch
,
err
;
const
uint8_t
*
channel_map
;
const
uint8_t
*
channel_map
;
const
float
*
output
[
AC3_MAX_CHANNELS
];
const
float
*
output
[
AC3_MAX_CHANNELS
];
...
@@ -1412,15 +1402,16 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
...
@@ -1412,15 +1402,16 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
av_log
(
avctx
,
AV_LOG_ERROR
,
"error decoding the audio block
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"error decoding the audio block
\n
"
);
err
=
1
;
err
=
1
;
}
}
/* ffdshow custom code */
if
(
avctx
->
sample_fmt
==
AV_SAMPLE_FMT_FLT
)
{
#if CONFIG_AUDIO_FLOAT
float_interleave_noscale
(
out_samples_flt
,
output
,
256
,
s
->
out_channels
);
float_interleave_noscale
(
out_samples
,
output
,
256
,
s
->
out_channels
)
;
out_samples_flt
+=
256
*
s
->
out_channels
;
#else
}
else
{
s
->
fmt_conv
.
float_to_int16_interleave
(
out_samples
,
output
,
256
,
s
->
out_channels
);
s
->
fmt_conv
.
float_to_int16_interleave
(
out_samples
,
output
,
256
,
s
->
out_channels
);
#endif
out_samples
+=
256
*
s
->
out_channels
;
out_samples
+=
256
*
s
->
out_channels
;
}
}
*
data_size
=
s
->
num_blocks
*
256
*
avctx
->
channels
*
sizeof
(
out_samples
[
0
]);
/* ffdshow custom code */
}
*
data_size
=
s
->
num_blocks
*
256
*
avctx
->
channels
;
*
data_size
*=
avctx
->
sample_fmt
==
AV_SAMPLE_FMT_FLT
?
sizeof
(
*
out_samples_flt
)
:
sizeof
(
*
out_samples
);
return
FFMIN
(
buf_size
,
s
->
frame_size
);
return
FFMIN
(
buf_size
,
s
->
frame_size
);
}
}
...
...
libavcodec/avcodec.h
View file @
4c7ad768
...
@@ -2877,6 +2877,14 @@ typedef struct AVCodecContext {
...
@@ -2877,6 +2877,14 @@ typedef struct AVCodecContext {
int64_t
pts_correction_last_pts
;
/// PTS of the last frame
int64_t
pts_correction_last_pts
;
/// PTS of the last frame
int64_t
pts_correction_last_dts
;
/// DTS of the last frame
int64_t
pts_correction_last_dts
;
/// DTS of the last frame
/**
* desired sample format
* - encoding: Not used.
* - decoding: Set by user.
* Decoder will decode to this format if it can.
*/
enum
AVSampleFormat
request_sample_fmt
;
}
AVCodecContext
;
}
AVCodecContext
;
/**
/**
...
...
libavcodec/options.c
View file @
4c7ad768
...
@@ -447,6 +447,7 @@ static const AVOption options[]={
...
@@ -447,6 +447,7 @@ static const AVOption options[]={
{
"em"
,
"Emergency"
,
0
,
FF_OPT_TYPE_CONST
,
AV_AUDIO_SERVICE_TYPE_EMERGENCY
,
INT_MIN
,
INT_MAX
,
A
|
E
,
"audio_service_type"
},
{
"em"
,
"Emergency"
,
0
,
FF_OPT_TYPE_CONST
,
AV_AUDIO_SERVICE_TYPE_EMERGENCY
,
INT_MIN
,
INT_MAX
,
A
|
E
,
"audio_service_type"
},
{
"vo"
,
"Voice Over"
,
0
,
FF_OPT_TYPE_CONST
,
AV_AUDIO_SERVICE_TYPE_VOICE_OVER
,
INT_MIN
,
INT_MAX
,
A
|
E
,
"audio_service_type"
},
{
"vo"
,
"Voice Over"
,
0
,
FF_OPT_TYPE_CONST
,
AV_AUDIO_SERVICE_TYPE_VOICE_OVER
,
INT_MIN
,
INT_MAX
,
A
|
E
,
"audio_service_type"
},
{
"ka"
,
"Karaoke"
,
0
,
FF_OPT_TYPE_CONST
,
AV_AUDIO_SERVICE_TYPE_KARAOKE
,
INT_MIN
,
INT_MAX
,
A
|
E
,
"audio_service_type"
},
{
"ka"
,
"Karaoke"
,
0
,
FF_OPT_TYPE_CONST
,
AV_AUDIO_SERVICE_TYPE_KARAOKE
,
INT_MIN
,
INT_MAX
,
A
|
E
,
"audio_service_type"
},
{
"request_sample_fmt"
,
"sample format audio decoders should prefer"
,
OFFSET
(
request_sample_fmt
),
FF_OPT_TYPE_INT
,
AV_SAMPLE_FMT_NONE
,
AV_SAMPLE_FMT_NONE
,
AV_SAMPLE_FMT_NB
-
1
,
A
|
D
},
{
NULL
},
{
NULL
},
};
};
...
...
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