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
dc7fd052
Commit
dc7fd052
authored
Jul 25, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Output a gathered picture before parsing the next SPS/PPS.
parent
053b0208
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/packetizer/h264.c
modules/packetizer/h264.c
+6
-6
No files found.
modules/packetizer/h264.c
View file @
dc7fd052
...
@@ -732,6 +732,9 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
...
@@ -732,6 +732,9 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
bs_t
s
;
bs_t
s
;
int
i_tmp
;
int
i_tmp
;
if
(
p_sys
->
b_slice
)
p_pic
=
OutputPicture
(
p_dec
);
if
(
!
p_sys
->
b_sps
)
msg_Dbg
(
p_dec
,
"found NAL_SPS"
);
if
(
!
p_sys
->
b_sps
)
msg_Dbg
(
p_dec
,
"found NAL_SPS"
);
p_sys
->
b_sps
=
true
;
p_sys
->
b_sps
=
true
;
...
@@ -846,9 +849,6 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
...
@@ -846,9 +849,6 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
free
(
dec
);
free
(
dec
);
if
(
p_sys
->
b_slice
)
p_pic
=
OutputPicture
(
p_dec
);
/* We have a new SPS */
/* We have a new SPS */
if
(
p_sys
->
p_sps
)
block_Release
(
p_sys
->
p_sps
);
if
(
p_sys
->
p_sps
)
block_Release
(
p_sys
->
p_sps
);
p_sys
->
p_sps
=
p_frag
;
p_sys
->
p_sps
=
p_frag
;
...
@@ -860,6 +860,9 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
...
@@ -860,6 +860,9 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
{
{
bs_t
s
;
bs_t
s
;
if
(
p_sys
->
b_slice
)
p_pic
=
OutputPicture
(
p_dec
);
bs_init
(
&
s
,
&
p_frag
->
p_buffer
[
5
],
p_frag
->
i_buffer
-
5
);
bs_init
(
&
s
,
&
p_frag
->
p_buffer
[
5
],
p_frag
->
i_buffer
-
5
);
bs_read_ue
(
&
s
);
// pps id
bs_read_ue
(
&
s
);
// pps id
bs_read_ue
(
&
s
);
// sps id
bs_read_ue
(
&
s
);
// sps id
...
@@ -871,9 +874,6 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
...
@@ -871,9 +874,6 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
/* TODO */
/* TODO */
if
(
p_sys
->
b_slice
)
p_pic
=
OutputPicture
(
p_dec
);
/* We have a new PPS */
/* We have a new PPS */
if
(
p_sys
->
p_pps
)
block_Release
(
p_sys
->
p_pps
);
if
(
p_sys
->
p_pps
)
block_Release
(
p_sys
->
p_pps
);
p_sys
->
p_pps
=
p_frag
;
p_sys
->
p_pps
=
p_frag
;
...
...
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