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

avformat mux: check correctly for *info member

It was added in svn r25418 of FFmpeg
minor was bumped to 81 in r25444
parent 32b6b5b1
......@@ -185,7 +185,7 @@ void CloseMux( vlc_object_t *p_this )
{
av_free( p_sys->oc->streams[i]->codec->extradata );
av_free( p_sys->oc->streams[i]->codec );
#if( LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT( 50, 32, 3 ) )
#if( LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT( 52, 81, 0 ) )
av_free( p_sys->oc->streams[i]->info );
#endif
av_free( p_sys->oc->streams[i] );
......
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