[vlc-commits] demux: asf: send AAC through packetizer
Francois Cartegnie
git at videolan.org
Thu Feb 23 11:58:36 CET 2017
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Feb 23 11:57:27 2017 +0100| [5bca8d753ca089d9eec5ae97c4ea018df72edee7] | committer: Francois Cartegnie
demux: asf: send AAC through packetizer
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5bca8d753ca089d9eec5ae97c4ea018df72edee7
---
modules/demux/asf/asf.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/modules/demux/asf/asf.c b/modules/demux/asf/asf.c
index 26468a8..4e20a54 100644
--- a/modules/demux/asf/asf.c
+++ b/modules/demux/asf/asf.c
@@ -1132,6 +1132,9 @@ static int DemuxInit( demux_t *p_demux )
fmt.b_packetized = false;
}
+ if( fmt.i_codec == VLC_CODEC_MP4A )
+ fmt.b_packetized = false;
+
tk->i_cat = tk->info.i_cat = fmt.i_cat;
if( fmt.i_cat != UNKNOWN_ES )
{
More information about the vlc-commits
mailing list