Commit 09775901 authored by Rafaël Carré's avatar Rafaël Carré

avcodec: do not flush buffers if codec hasn't been opened

Reported-by: Konstantin Pavlov (thresh)
parent 89f778a6
...@@ -715,6 +715,8 @@ void EndVideoDec( decoder_t *p_dec ) ...@@ -715,6 +715,8 @@ void EndVideoDec( decoder_t *p_dec )
{ {
decoder_sys_t *p_sys = p_dec->p_sys; decoder_sys_t *p_sys = p_dec->p_sys;
/* do not flush buffers if codec hasn't been opened (theora/vorbis/VC1) */
if( p_sys->p_context->codec )
avcodec_flush_buffers( p_sys->p_context ); avcodec_flush_buffers( p_sys->p_context );
if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic ); if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
......
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