Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
a562e2e6
Commit
a562e2e6
authored
17 years ago
by
Vitor Sessak
Browse files
Options
Downloads
Patches
Plain Diff
Remove some duplicated code
Originally committed as revision 9575 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0d79efeb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/alac.c
+12
-45
12 additions, 45 deletions
libavcodec/alac.c
with
12 additions
and
45 deletions
libavcodec/alac.c
+
12
−
45
View file @
a562e2e6
...
...
@@ -460,6 +460,10 @@ static int alac_decode_frame(AVCodecContext *avctx,
int
channels
;
int32_t
outputsamples
;
int
hassize
;
int
readsamplesize
;
int
wasted_bytes
;
int
isnotcompressed
;
/* short-circuit null buffers */
if
(
!
inbuffer
||
!
input_buffer_size
)
...
...
@@ -479,24 +483,10 @@ static int alac_decode_frame(AVCodecContext *avctx,
alac
->
context_initialized
=
1
;
}
outputsamples
=
alac
->
setinfo_max_samples_per_frame
;
init_get_bits
(
&
alac
->
gb
,
inbuffer
,
input_buffer_size
*
8
);
channels
=
get_bits
(
&
alac
->
gb
,
3
);
*
outputsize
=
outputsamples
*
alac
->
bytespersample
;
switch
(
channels
)
{
case
0
:
{
/* 1 channel */
int
hassize
;
int
isnotcompressed
;
int
readsamplesize
;
int
wasted_bytes
;
int
ricemodifier
;
/* 2^result = something to do with output waiting.
* perhaps matters if we read > 1 frame in a pass?
*/
...
...
@@ -514,10 +504,15 @@ static int alac_decode_frame(AVCodecContext *avctx,
/* now read the number of samples,
* as a 32bit integer */
outputsamples
=
get_bits
(
&
alac
->
gb
,
32
);
*
outputsize
=
outputsamples
*
alac
->
bytespersample
;
}
}
else
outputsamples
=
alac
->
setinfo_max_samples_per_frame
;
readsamplesize
=
alac
->
setinfo_sample_size
-
(
wasted_bytes
*
8
);
*
outputsize
=
outputsamples
*
alac
->
bytespersample
;
readsamplesize
=
alac
->
setinfo_sample_size
-
(
wasted_bytes
*
8
)
+
channels
;
switch
(
channels
)
{
case
0
:
{
/* 1 channel */
int
ricemodifier
;
if
(
!
isnotcompressed
)
{
/* so it is compressed */
...
...
@@ -628,37 +623,9 @@ static int alac_decode_frame(AVCodecContext *avctx,
break
;
}
case
1
:
{
/* 2 channels */
int
hassize
;
int
isnotcompressed
;
int
readsamplesize
;
int
wasted_bytes
;
uint8_t
interlacing_shift
;
uint8_t
interlacing_leftweight
;
/* 2^result = something to do with output waiting.
* perhaps matters if we read > 1 frame in a pass?
*/
get_bits
(
&
alac
->
gb
,
4
);
get_bits
(
&
alac
->
gb
,
12
);
/* unknown, skip 12 bits */
hassize
=
get_bits
(
&
alac
->
gb
,
1
);
/* the output sample size is stored soon */
wasted_bytes
=
get_bits
(
&
alac
->
gb
,
2
);
/* unknown ? */
isnotcompressed
=
get_bits
(
&
alac
->
gb
,
1
);
/* whether the frame is compressed */
if
(
hassize
)
{
/* now read the number of samples,
* as a 32bit integer */
outputsamples
=
get_bits
(
&
alac
->
gb
,
32
);
*
outputsize
=
outputsamples
*
alac
->
bytespersample
;
}
readsamplesize
=
alac
->
setinfo_sample_size
-
(
wasted_bytes
*
8
)
+
1
;
if
(
!
isnotcompressed
)
{
/* compressed */
int16_t
predictor_coef_table_a
[
32
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment