Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
7fcfedbc
Commit
7fcfedbc
authored
Mar 13, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m4a packetizer: remove (comment) unused parameter
parent
0633bc89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/packetizer/mpeg4audio.c
modules/packetizer/mpeg4audio.c
+2
-2
No files found.
modules/packetizer/mpeg4audio.c
View file @
7fcfedbc
...
...
@@ -331,11 +331,11 @@ static int ADTSSyncInfo( decoder_t * p_dec, const byte_t * p_buf,
unsigned
int
*
pi_frame_length
,
unsigned
int
*
pi_header_size
)
{
int
i_
id
,
i_
profile
,
i_sample_rate_idx
,
i_frame_size
;
int
i_profile
,
i_sample_rate_idx
,
i_frame_size
;
vlc_bool_t
b_crc
;
/* Fixed header between frames */
i_id
=
(
(
p_buf
[
1
]
>>
3
)
&
0x01
)
?
2
:
4
;
/* MPEG-2 or 4 */
//int
i_id = ( (p_buf[1] >> 3) & 0x01) ? 2 : 4; /* MPEG-2 or 4 */
b_crc
=
!
(
p_buf
[
1
]
&
0x01
);
i_profile
=
p_buf
[
2
]
>>
6
;
i_sample_rate_idx
=
(
p_buf
[
2
]
>>
2
)
&
0x0f
;
...
...
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