Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
5359dc31
Commit
5359dc31
authored
Sep 29, 2011
by
Martin Storsjö
Committed by
Jean-Baptiste Kempf
Sep 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264_nal: Make the p_nal_size parameter optional
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
7489d59d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/codec/h264_nal.h
modules/codec/h264_nal.h
+2
-1
No files found.
modules/codec/h264_nal.h
View file @
5359dc31
...
...
@@ -37,7 +37,8 @@ static int convert_sps_pps( decoder_t *p_dec, const uint8_t *p_buf,
/* Read infos in first 6 bytes */
i_profile
=
(
p_buf
[
1
]
<<
16
)
|
(
p_buf
[
2
]
<<
8
)
|
p_buf
[
3
];
*
p_nal_size
=
(
p_buf
[
4
]
&
0x03
)
+
1
;
if
(
p_nal_size
)
*
p_nal_size
=
(
p_buf
[
4
]
&
0x03
)
+
1
;
p_buf
+=
5
;
i_data_size
-=
5
;
...
...
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