]> git.sesse.net Git - vlc/commitdiff
Fixed printf format for size_t.
authorLaurent Aimar <fenrir@videolan.org>
Sun, 20 Jul 2008 20:24:50 +0000 (22:24 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 20 Jul 2008 20:24:50 +0000 (22:24 +0200)
modules/codec/schroedinger.c

index de41b73ac7c9816b6d77cc829c758764a2fd8d55..5886988cefaf9e640600dc3057a5c35c55a1fbd5 100644 (file)
@@ -250,6 +250,7 @@ static void SchroFrameFree( SchroFrame *frame, void *priv)
     if( !p_pic )
         return;
 
+    /* FIXME it is wrong, you should call pf_vout_buffer_del */
     if( p_pic->pf_release ) p_pic->pf_release( p_pic );
     (void)frame;
 }
@@ -449,7 +450,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
                 b_bail = 1;
             }
 
-            msg_Dbg( p_dec, "Inserting bytes into decoder len=%d of %d pts=%"PRId64,
+            msg_Dbg( p_dec, "Inserting bytes into decoder len=%zu of %zu pts=%"PRId64,
                      i_pulen, p_block->i_buffer, p_block->i_pts);
             /* this stops the same block being fed back into this function if
              * we were on the next iteration of this loop to output a picture */