vlc | branch: master | Steve Lhomme <[email protected]> | Wed Jul 5 15:18:32 2017 +0200| [4fb068d1466dd2432335ab3289ace3f3db3bb281] | committer: Jean-Baptiste Kempf
dca: reset the ES to AUDIO_ES on error rather than UNKNOWN_ES Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4fb068d1466dd2432335ab3289ace3f3db3bb281 --- modules/codec/dca.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/codec/dca.c b/modules/codec/dca.c index db8c0bfcdc..8415c8f3bb 100644 --- a/modules/codec/dca.c +++ b/modules/codec/dca.c @@ -331,7 +331,7 @@ static int Open( vlc_object_t *p_this ) if( decoder_UpdateAudioFormat( p_dec ) ) { - es_format_Init( &p_dec->fmt_out, UNKNOWN_ES, 0 ); + es_format_Init( &p_dec->fmt_out, AUDIO_ES, 0 ); Close( p_this ); return VLC_EGENERIC; } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
