Commit b5c81d3d authored by Laurent Aimar's avatar Laurent Aimar

Fixed rawvideo packetizer.

parent b35ccb11
......@@ -213,7 +213,8 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
p_block = *pp_block;
if( (!p_block->i_pts || !p_block->i_dts) && !date_Get( &p_sys->pts ) )
if( !p_block->i_pts && !p_block->i_dts && !date_Get( &p_sys->pts ) )
{
/* We've just started the stream, wait for the first PTS. */
block_Release( p_block );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment