]> git.sesse.net Git - vlc/commitdiff
* theora.c: Eliminate display artifacts when the very first frame of the
authorAndre Pang <andrep@videolan.org>
Tue, 11 Jan 2005 09:17:56 +0000 (09:17 +0000)
committerAndre Pang <andrep@videolan.org>
Tue, 11 Jan 2005 09:17:56 +0000 (09:17 +0000)
  stream isn't a keyframe

modules/codec/theora.c

index 48af9d717db47b406c20bb935bec8ec08a1ebbce..3806d9eaaf9ec3d19c4ddfbdf61c9a15905251a1 100644 (file)
@@ -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 );