Commit a00419ea authored by Christophe Mutricy's avatar Christophe Mutricy

Better a compile warning than a bug. Thanks to Robert Stepanek.

parent 8856dd0d
......@@ -802,7 +802,7 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
frame.pts = AV_NOPTS_VALUE;
}
if ( frame.pts != (signed int) AV_NOPTS_VALUE && frame.pts != 0 )
if ( frame.pts != AV_NOPTS_VALUE && frame.pts != 0 )
{
if ( p_sys->i_last_pts == frame.pts )
{
......
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