Commit a11f0324 authored by Laurent Aimar's avatar Laurent Aimar

Revert [f5060d12] (seek speed improvment)

It creates broken pictures and should be investigated.
parent 3b054a1c
...@@ -500,9 +500,13 @@ picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block ) ...@@ -500,9 +500,13 @@ picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
} }
else if( !b_drawpicture ) else if( !b_drawpicture )
{ {
/* It creates broken picture
* FIXME either our parser or ffmpeg is broken */
#if 0
if( p_sys->b_hurry_up ) if( p_sys->b_hurry_up )
p_sys->p_context->skip_frame = __MAX( p_sys->p_context->skip_frame, p_sys->p_context->skip_frame = __MAX( p_sys->p_context->skip_frame,
AVDISCARD_NONREF ); AVDISCARD_NONREF );
#endif
} }
/* /*
......
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