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
4fe5c533
Commit
4fe5c533
authored
Apr 06, 2005
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* h264: less debug.
parent
06438cff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
modules/packetizer/h264.c
modules/packetizer/h264.c
+8
-2
No files found.
modules/packetizer/h264.c
View file @
4fe5c533
...
...
@@ -68,6 +68,7 @@ struct decoder_sys_t
block_t
*
p_frame
;
vlc_bool_t
b_sps
;
vlc_bool_t
b_pps
;
/* avcC data */
int
i_avcC_length_size
;
...
...
@@ -150,6 +151,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
b_slice
=
VLC_FALSE
;
p_sys
->
p_frame
=
NULL
;
p_sys
->
b_sps
=
VLC_FALSE
;
p_sys
->
b_pps
=
VLC_FALSE
;
p_sys
->
i_nal_type
=
-
1
;
p_sys
->
i_nal_ref_idc
=
-
1
;
...
...
@@ -528,7 +530,8 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
bs_t
s
;
int
i_tmp
;
msg_Dbg
(
p_dec
,
"found NAL_SPS"
);
if
(
!
p_sys
->
b_sps
)
msg_Dbg
(
p_dec
,
"found NAL_SPS"
);
p_sys
->
b_sps
=
VLC_TRUE
;
...
...
@@ -644,8 +647,11 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
bs_t
s
;
bs_init
(
&
s
,
&
p_frag
->
p_buffer
[
4
],
p_frag
->
i_buffer
-
4
);
if
(
!
p_sys
->
b_pps
)
msg_Dbg
(
p_dec
,
"found NAL_PPS"
);
p_sys
->
b_pps
=
VLC_TRUE
;
/* TODO */
msg_Dbg
(
p_dec
,
"found NAL_PPS"
);
if
(
p_sys
->
b_slice
)
OUTPUT
;
...
...
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