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
bfbd22f9
Commit
bfbd22f9
authored
13 years ago
by
Mashiat Sarker Shakkhar
Browse files
Options
Downloads
Patches
Plain Diff
Cosmetics: Fix some whitespace errors and indentation
parent
6ca1016b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/wmalosslessdec.c
+3
-3
3 additions, 3 deletions
libavcodec/wmalosslessdec.c
with
3 additions
and
3 deletions
libavcodec/wmalosslessdec.c
+
3
−
3
View file @
bfbd22f9
...
@@ -224,7 +224,7 @@ typedef struct WmallDecodeCtx {
...
@@ -224,7 +224,7 @@ typedef struct WmallDecodeCtx {
WmallChannelCtx
channel
[
WMALL_MAX_CHANNELS
];
///< per channel data
WmallChannelCtx
channel
[
WMALL_MAX_CHANNELS
];
///< per channel data
// WMA lossless
// WMA lossless
uint8_t
do_arith_coding
;
uint8_t
do_arith_coding
;
uint8_t
do_ac_filter
;
uint8_t
do_ac_filter
;
uint8_t
do_inter_ch_decorr
;
uint8_t
do_inter_ch_decorr
;
...
@@ -583,7 +583,7 @@ static int my_log2(unsigned int i)
...
@@ -583,7 +583,7 @@ static int my_log2(unsigned int i)
{
{
unsigned
int
iLog2
=
0
;
unsigned
int
iLog2
=
0
;
while
((
i
>>
iLog2
)
>
1
)
while
((
i
>>
iLog2
)
>
1
)
iLog2
++
;
iLog2
++
;
return
iLog2
;
return
iLog2
;
}
}
...
@@ -598,7 +598,7 @@ static void decode_ac_filter(WmallDecodeCtx *s)
...
@@ -598,7 +598,7 @@ static void decode_ac_filter(WmallDecodeCtx *s)
s
->
acfilter_scaling
=
get_bits
(
&
s
->
gb
,
4
);
s
->
acfilter_scaling
=
get_bits
(
&
s
->
gb
,
4
);
for
(
i
=
0
;
i
<
s
->
acfilter_order
;
i
++
)
{
for
(
i
=
0
;
i
<
s
->
acfilter_order
;
i
++
)
{
s
->
acfilter_coeffs
[
i
]
=
get_bits
(
&
s
->
gb
,
s
->
acfilter_scaling
)
+
1
;
s
->
acfilter_coeffs
[
i
]
=
get_bits
(
&
s
->
gb
,
s
->
acfilter_scaling
)
+
1
;
}
}
}
}
...
...
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