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
b43aa847
Commit
b43aa847
authored
Oct 22, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/packetizer/h264.c: oops, forgot to remove a bit of debug code.
parent
313acca3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
modules/packetizer/h264.c
modules/packetizer/h264.c
+2
-4
No files found.
modules/packetizer/h264.c
View file @
b43aa847
...
...
@@ -182,7 +182,7 @@ static int Open( vlc_object_t *p_this )
for
(
i
=
0
;
i
<
i_sps
;
i
++
)
{
int
i_length
=
GetWBE
(
p
);
block_t
*
p_sps
=
nal_get_annexeb
(
p_dec
,
p
+
2
,
i_length
);
block_t
*
p_sps
=
nal_get_annexeb
(
p_dec
,
p
+
2
,
i_length
);
ParseNALBlock
(
p_dec
,
p_sps
);
p
+=
2
+
i_length
;
...
...
@@ -192,7 +192,7 @@ static int Open( vlc_object_t *p_this )
for
(
i
=
0
;
i
<
i_pps
;
i
++
)
{
int
i_length
=
GetWBE
(
p
);
block_t
*
p_pps
=
nal_get_annexeb
(
p_dec
,
p
+
2
,
i_length
);
block_t
*
p_pps
=
nal_get_annexeb
(
p_dec
,
p
+
2
,
i_length
);
ParseNALBlock
(
p_dec
,
p_pps
);
p
+=
2
+
i_length
;
...
...
@@ -209,8 +209,6 @@ static int Open( vlc_object_t *p_this )
p_dec
->
pf_packetize
=
Packetize
;
}
block_ChainRelease
(
p_sys
->
p_frame
);
p_sys
->
p_frame
=
0
;
return
VLC_SUCCESS
;
}
...
...
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