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
1fc22d15
Commit
1fc22d15
authored
May 07, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced DIRAC_EOS by BLOCK_FLAG_END_OF_SEQUENCE.
parent
f7a8bc79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
modules/packetizer/dirac.c
modules/packetizer/dirac.c
+2
-3
No files found.
modules/packetizer/dirac.c
View file @
1fc22d15
...
...
@@ -185,7 +185,6 @@ enum {
};
enum
{
DIRAC_EOS
=
0x02000000
,
DIRAC_NON_DATED
=
0x04000000
,
DIRAC_DISCARD
=
0x08000000
,
};
...
...
@@ -854,7 +853,7 @@ static int dirac_InspectDataUnit( decoder_t *p_dec, block_t **pp_block, block_t
return
DIRAC_DU_IN_EU
;
}
/* p_block is an EOS packet */
p_eu
->
i_flags
|=
DIRAC_EOS
;
p_eu
->
i_flags
|=
BLOCK_FLAG_END_OF_SEQUENCE
;
/* for the moment, let this end an encapsulation unit */
/* seeing an eos packet requires a flush of the packetizer
* this is detected by the caller of this function */
...
...
@@ -1063,7 +1062,7 @@ static int dirac_TimeGenPush( decoder_t *p_dec, block_t *p_block_in )
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
dirac_block_encap_t
*
dbe
;
if
(
p_block_in
->
i_flags
&
DIRAC_EOS
)
if
(
p_block_in
->
i_flags
&
BLOCK_FLAG_END_OF_SEQUENCE
)
{
/* NB, this test occurs after the timegen push, so as to
* push the block into the output queue */
...
...
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