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
5ac673b5
Commit
5ac673b5
authored
Oct 18, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atrac3: use AVCodecContext.channels instead of keeping a private copy
parent
aefdb735
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
21 deletions
+20
-21
atrac3.c
libavcodec/atrac3.c
+20
-21
No files found.
libavcodec/atrac3.c
View file @
5ac673b5
...
@@ -89,7 +89,6 @@ typedef struct ATRAC3Context {
...
@@ -89,7 +89,6 @@ typedef struct ATRAC3Context {
GetBitContext
gb
;
GetBitContext
gb
;
//@{
//@{
/** stream data */
/** stream data */
int
channels
;
int
coding_mode
;
int
coding_mode
;
int
bit_rate
;
int
bit_rate
;
int
sample_rate
;
int
sample_rate
;
...
@@ -716,9 +715,10 @@ static int decode_channel_sound_unit(ATRAC3Context *q, GetBitContext *gb,
...
@@ -716,9 +715,10 @@ static int decode_channel_sound_unit(ATRAC3Context *q, GetBitContext *gb,
return
0
;
return
0
;
}
}
static
int
decode_frame
(
A
TRAC3Context
*
q
,
const
uint8_t
*
databuf
,
static
int
decode_frame
(
A
VCodecContext
*
avctx
,
const
uint8_t
*
databuf
,
float
**
out_samples
)
float
**
out_samples
)
{
{
ATRAC3Context
*
q
=
avctx
->
priv_data
;
int
ret
,
i
;
int
ret
,
i
;
uint8_t
*
ptr1
;
uint8_t
*
ptr1
;
...
@@ -782,11 +782,11 @@ static int decode_frame(ATRAC3Context *q, const uint8_t *databuf,
...
@@ -782,11 +782,11 @@ static int decode_frame(ATRAC3Context *q, const uint8_t *databuf,
}
else
{
}
else
{
/* normal stereo mode or mono */
/* normal stereo mode or mono */
/* Decode the channel sound units. */
/* Decode the channel sound units. */
for
(
i
=
0
;
i
<
q
->
channels
;
i
++
)
{
for
(
i
=
0
;
i
<
avctx
->
channels
;
i
++
)
{
/* Set the bitstream reader at the start of a channel sound unit. */
/* Set the bitstream reader at the start of a channel sound unit. */
init_get_bits
(
&
q
->
gb
,
init_get_bits
(
&
q
->
gb
,
databuf
+
i
*
q
->
bytes_per_frame
/
q
->
channels
,
databuf
+
i
*
q
->
bytes_per_frame
/
avctx
->
channels
,
q
->
bits_per_frame
/
q
->
channels
);
q
->
bits_per_frame
/
avctx
->
channels
);
ret
=
decode_channel_sound_unit
(
q
,
&
q
->
gb
,
&
q
->
units
[
i
],
ret
=
decode_channel_sound_unit
(
q
,
&
q
->
gb
,
&
q
->
units
[
i
],
out_samples
[
i
],
i
,
q
->
coding_mode
);
out_samples
[
i
],
i
,
q
->
coding_mode
);
...
@@ -796,7 +796,7 @@ static int decode_frame(ATRAC3Context *q, const uint8_t *databuf,
...
@@ -796,7 +796,7 @@ static int decode_frame(ATRAC3Context *q, const uint8_t *databuf,
}
}
/* Apply the iQMF synthesis filter. */
/* Apply the iQMF synthesis filter. */
for
(
i
=
0
;
i
<
q
->
channels
;
i
++
)
{
for
(
i
=
0
;
i
<
avctx
->
channels
;
i
++
)
{
float
*
p1
=
out_samples
[
i
];
float
*
p1
=
out_samples
[
i
];
float
*
p2
=
p1
+
256
;
float
*
p2
=
p1
+
256
;
float
*
p3
=
p2
+
256
;
float
*
p3
=
p2
+
256
;
...
@@ -839,7 +839,7 @@ static int atrac3_decode_frame(AVCodecContext *avctx, void *data,
...
@@ -839,7 +839,7 @@ static int atrac3_decode_frame(AVCodecContext *avctx, void *data,
databuf
=
buf
;
databuf
=
buf
;
}
}
ret
=
decode_frame
(
q
,
databuf
,
(
float
**
)
q
->
frame
.
extended_data
);
ret
=
decode_frame
(
avctx
,
databuf
,
(
float
**
)
q
->
frame
.
extended_data
);
if
(
ret
)
{
if
(
ret
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"Frame decoding error!
\n
"
);
av_log
(
NULL
,
AV_LOG_ERROR
,
"Frame decoding error!
\n
"
);
return
ret
;
return
ret
;
...
@@ -861,11 +861,15 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
...
@@ -861,11 +861,15 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
/* Take data from the AVCodecContext (RM container). */
/* Take data from the AVCodecContext (RM container). */
q
->
sample_rate
=
avctx
->
sample_rate
;
q
->
sample_rate
=
avctx
->
sample_rate
;
q
->
channels
=
avctx
->
channels
;
q
->
bit_rate
=
avctx
->
bit_rate
;
q
->
bit_rate
=
avctx
->
bit_rate
;
q
->
bits_per_frame
=
avctx
->
block_align
*
8
;
q
->
bits_per_frame
=
avctx
->
block_align
*
8
;
q
->
bytes_per_frame
=
avctx
->
block_align
;
q
->
bytes_per_frame
=
avctx
->
block_align
;
if
(
avctx
->
channels
<=
0
||
avctx
->
channels
>
2
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Channel configuration error!
\n
"
);
return
AVERROR
(
EINVAL
);
}
/* Take care of the codec-specific extradata. */
/* Take care of the codec-specific extradata. */
if
(
avctx
->
extradata_size
==
14
)
{
if
(
avctx
->
extradata_size
==
14
)
{
/* Parse the extradata, WAV format */
/* Parse the extradata, WAV format */
...
@@ -880,18 +884,18 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
...
@@ -880,18 +884,18 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
bytestream_get_le16
(
&
edata_ptr
));
// Unknown always 0
bytestream_get_le16
(
&
edata_ptr
));
// Unknown always 0
/* setup */
/* setup */
q
->
samples_per_frame
=
SAMPLES_PER_FRAME
*
q
->
channels
;
q
->
samples_per_frame
=
SAMPLES_PER_FRAME
*
avctx
->
channels
;
q
->
version
=
4
;
q
->
version
=
4
;
q
->
delay
=
0x88E
;
q
->
delay
=
0x88E
;
q
->
coding_mode
=
q
->
coding_mode
?
JOINT_STEREO
:
STEREO
;
q
->
coding_mode
=
q
->
coding_mode
?
JOINT_STEREO
:
STEREO
;
q
->
scrambled_stream
=
0
;
q
->
scrambled_stream
=
0
;
if
(
q
->
bytes_per_frame
!=
96
*
q
->
channels
*
q
->
frame_factor
&&
if
(
q
->
bytes_per_frame
!=
96
*
avctx
->
channels
*
q
->
frame_factor
&&
q
->
bytes_per_frame
!=
152
*
q
->
channels
*
q
->
frame_factor
&&
q
->
bytes_per_frame
!=
152
*
avctx
->
channels
*
q
->
frame_factor
&&
q
->
bytes_per_frame
!=
192
*
q
->
channels
*
q
->
frame_factor
)
{
q
->
bytes_per_frame
!=
192
*
avctx
->
channels
*
q
->
frame_factor
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unknown frame/channel/frame_factor "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unknown frame/channel/frame_factor "
"configuration %d/%d/%d
\n
"
,
q
->
bytes_per_frame
,
q
->
channels
,
"configuration %d/%d/%d
\n
"
,
q
->
bytes_per_frame
,
q
->
frame_factor
);
avctx
->
channels
,
q
->
frame_factor
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
}
else
if
(
avctx
->
extradata_size
==
10
)
{
}
else
if
(
avctx
->
extradata_size
==
10
)
{
...
@@ -900,7 +904,7 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
...
@@ -900,7 +904,7 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
q
->
samples_per_frame
=
bytestream_get_be16
(
&
edata_ptr
);
q
->
samples_per_frame
=
bytestream_get_be16
(
&
edata_ptr
);
q
->
delay
=
bytestream_get_be16
(
&
edata_ptr
);
q
->
delay
=
bytestream_get_be16
(
&
edata_ptr
);
q
->
coding_mode
=
bytestream_get_be16
(
&
edata_ptr
);
q
->
coding_mode
=
bytestream_get_be16
(
&
edata_ptr
);
q
->
samples_per_channel
=
q
->
samples_per_frame
/
q
->
channels
;
q
->
samples_per_channel
=
q
->
samples_per_frame
/
avctx
->
channels
;
q
->
scrambled_stream
=
1
;
q
->
scrambled_stream
=
1
;
}
else
{
}
else
{
...
@@ -938,11 +942,6 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
...
@@ -938,11 +942,6 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
if
(
avctx
->
channels
<=
0
||
avctx
->
channels
>
2
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Channel configuration error!
\n
"
);
return
AVERROR
(
EINVAL
);
}
if
(
avctx
->
block_align
>=
UINT_MAX
/
2
)
if
(
avctx
->
block_align
>=
UINT_MAX
/
2
)
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
...
@@ -1000,7 +999,7 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
...
@@ -1000,7 +999,7 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
avpriv_float_dsp_init
(
&
q
->
fdsp
,
avctx
->
flags
&
CODEC_FLAG_BITEXACT
);
avpriv_float_dsp_init
(
&
q
->
fdsp
,
avctx
->
flags
&
CODEC_FLAG_BITEXACT
);
ff_fmt_convert_init
(
&
q
->
fmt_conv
,
avctx
);
ff_fmt_convert_init
(
&
q
->
fmt_conv
,
avctx
);
q
->
units
=
av_mallocz
(
sizeof
(
ChannelUnit
)
*
q
->
channels
);
q
->
units
=
av_mallocz
(
sizeof
(
ChannelUnit
)
*
avctx
->
channels
);
if
(
!
q
->
units
)
{
if
(
!
q
->
units
)
{
atrac3_decode_close
(
avctx
);
atrac3_decode_close
(
avctx
);
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
...
...
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