Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
6c7f5148
Commit
6c7f5148
authored
Apr 12, 2012
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aes3: Remove write only variable.
parent
d70ea1fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
modules/codec/aes3.c
modules/codec/aes3.c
+0
-2
No files found.
modules/codec/aes3.c
View file @
6c7f5148
...
@@ -290,7 +290,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits,
...
@@ -290,7 +290,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits,
uint32_t
h
;
uint32_t
h
;
unsigned
int
i_size
;
unsigned
int
i_size
;
int
i_channels
;
int
i_channels
;
int
i_id
;
int
i_bits
;
int
i_bits
;
if
(
!
pp_block
||
!*
pp_block
)
return
NULL
;
if
(
!
pp_block
||
!*
pp_block
)
return
NULL
;
...
@@ -331,7 +330,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits,
...
@@ -331,7 +330,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits,
h
=
GetDWBE
(
p_block
->
p_buffer
);
h
=
GetDWBE
(
p_block
->
p_buffer
);
i_size
=
(
h
>>
16
)
&
0xffff
;
i_size
=
(
h
>>
16
)
&
0xffff
;
i_channels
=
2
+
2
*
(
(
h
>>
14
)
&
0x03
);
i_channels
=
2
+
2
*
(
(
h
>>
14
)
&
0x03
);
i_id
=
(
h
>>
6
)
&
0xff
;
i_bits
=
16
+
4
*
(
(
h
>>
4
)
&
0x03
);
i_bits
=
16
+
4
*
(
(
h
>>
4
)
&
0x03
);
if
(
AES3_HEADER_LEN
+
i_size
!=
p_block
->
i_buffer
||
i_bits
>
24
)
if
(
AES3_HEADER_LEN
+
i_size
!=
p_block
->
i_buffer
||
i_bits
>
24
)
...
...
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