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
15f53b19
Commit
15f53b19
authored
Jan 11, 2005
by
Andre Pang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* theora.c: Eliminate display artifacts when the very first frame of the
stream isn't a keyframe
parent
97d95c8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
modules/codec/theora.c
modules/codec/theora.c
+18
-2
No files found.
modules/codec/theora.c
View file @
15f53b19
...
...
@@ -53,6 +53,11 @@ struct decoder_sys_t
theora_comment
tc
;
/* theora comment header */
theora_state
td
;
/* theora bitstream user comments */
/*
* Decoding properties
*/
vlc_bool_t
b_decoded_first_keyframe
;
/*
* Common properties
*/
...
...
@@ -139,6 +144,7 @@ static int OpenDecoder( vlc_object_t *p_this )
p_dec
->
p_sys
->
b_packetizer
=
VLC_FALSE
;
p_sys
->
i_pts
=
0
;
p_sys
->
b_decoded_first_keyframe
=
VLC_FALSE
;
/* Set output properties */
p_dec
->
fmt_out
.
i_cat
=
VIDEO_ES
;
...
...
@@ -436,8 +442,18 @@ static picture_t *DecodePacket( decoder_t *p_dec, ogg_packet *p_oggpacket )
theora_decode_packetin
(
&
p_sys
->
td
,
p_oggpacket
);
/* Decode */
theora_decode_YUVout
(
&
p_sys
->
td
,
&
yuv
);
if
(
theora_packet_iskeyframe
(
p_oggpacket
)
==
1
)
p_sys
->
b_decoded_first_keyframe
=
VLC_TRUE
;
/* If we haven't seen a single keyframe yet, don't let Theora decode
* anything, otherwise we'll get display artifacts. (This is impossible
* in the general case, but can happen if e.g. we play a network stream
* using a timed URL, such that the server doesn't start the video with a
* keyframe). */
if
(
p_sys
->
b_decoded_first_keyframe
)
theora_decode_YUVout
(
&
p_sys
->
td
,
&
yuv
);
else
return
NULL
;
/* Get a new picture */
p_pic
=
p_dec
->
pf_vout_buffer_new
(
p_dec
);
...
...
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