[vlc-commits] chromecast: always transcode mpga
Thomas Guillem
git at videolan.org
Wed Apr 18 14:32:36 CEST 2018
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Apr 18 14:05:54 2018 +0200| [cdf276c35bb89085222b48fd29a9789af75591ef] | committer: Thomas Guillem
chromecast: always transcode mpga
Since it can be mp2 codec that is not supported by chromecast devices.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cdf276c35bb89085222b48fd29a9789af75591ef
---
modules/stream_out/chromecast/cast.cpp | 1 -
1 file changed, 1 deletion(-)
diff --git a/modules/stream_out/chromecast/cast.cpp b/modules/stream_out/chromecast/cast.cpp
index 8b1c690dd2..b8a5840347 100644
--- a/modules/stream_out/chromecast/cast.cpp
+++ b/modules/stream_out/chromecast/cast.cpp
@@ -818,7 +818,6 @@ bool sout_stream_sys_t::canDecodeAudio( sout_stream_t *p_stream,
if ( i_codec == VLC_FOURCC('h', 'a', 'a', 'c') ||
i_codec == VLC_FOURCC('l', 'a', 'a', 'c') ||
i_codec == VLC_FOURCC('s', 'a', 'a', 'c') ||
- i_codec == VLC_CODEC_MPGA ||
i_codec == VLC_CODEC_MP4A )
{
return p_fmt->i_channels <= 2;
More information about the vlc-commits
mailing list