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
586e5bd9
Commit
586e5bd9
authored
Jul 18, 2007
by
Vitor Sessak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics: indentation
Originally committed as revision 9729 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a1301f29
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
68 deletions
+67
-68
alac.c
libavcodec/alac.c
+67
-68
No files found.
libavcodec/alac.c
View file @
586e5bd9
...
...
@@ -499,15 +499,16 @@ static int alac_decode_frame(AVCodecContext *avctx,
get_bits
(
&
alac
->
gb
,
12
);
/* unknown, skip 12 bits */
hassize
=
get_bits
(
&
alac
->
gb
,
1
);
/* the output sample size is stored soon */
/* the output sample size is stored soon */
hassize
=
get_bits
(
&
alac
->
gb
,
1
);
wasted_bytes
=
get_bits
(
&
alac
->
gb
,
2
);
/* unknown ? */
isnotcompressed
=
get_bits
(
&
alac
->
gb
,
1
);
/* whether the frame is compressed */
/* whether the frame is compressed */
isnotcompressed
=
get_bits
(
&
alac
->
gb
,
1
);
if
(
hassize
)
{
/* now read the number of samples,
* as a 32bit integer */
/* now read the number of samples as a 32bit integer */
outputsamples
=
get_bits
(
&
alac
->
gb
,
32
);
}
else
outputsamples
=
alac
->
setinfo_max_samples_per_frame
;
...
...
@@ -522,7 +523,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
int
prediction_type
[
channels
];
int
prediction_quantitization
[
channels
];
int
ricemodifier
[
channels
];
int
i
,
chan
;
interlacing_shift
=
get_bits
(
&
alac
->
gb
,
8
);
...
...
@@ -638,7 +638,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
break
;
}
return
input_buffer_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