Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
97d95c8d
Commit
97d95c8d
authored
Jan 11, 2005
by
Andre Pang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* theora.c: Fixed weird display artifacts when seeking on Theora videos
parent
376f3495
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
modules/codec/theora.c
modules/codec/theora.c
+8
-0
No files found.
modules/codec/theora.c
View file @
97d95c8d
...
...
@@ -380,6 +380,14 @@ static void *ProcessPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
block_t
*
p_block
=
*
pp_block
;
void
*
p_buf
;
if
(
(
p_block
->
i_flags
&
BLOCK_FLAG_DISCONTINUITY
)
!=
0
)
{
/* Don't send the the first packet after a discontinuity to
* theora_decode, otherwise we get purple/green display artifacts
* appearing in the video output */
return
NULL
;
}
/* Date management */
if
(
p_block
->
i_pts
>
0
&&
p_block
->
i_pts
!=
p_sys
->
i_pts
)
{
...
...
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