[vlc-devel] commit: Be sure to set b_packetized in demux_PacketizerNew. (Laurent Aimar )
git version control
git at videolan.org
Thu Apr 30 22:19:22 CEST 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Apr 29 20:40:06 2009 +0200| [c3334ee3b6b5b33cbe625fa1a2a24c12df408c29] | committer: Laurent Aimar
Be sure to set b_packetized in demux_PacketizerNew.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c3334ee3b6b5b33cbe625fa1a2a24c12df408c29
---
src/input/demux.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/input/demux.c b/src/input/demux.c
index dfbcb62..781dfb7 100644
--- a/src/input/demux.c
+++ b/src/input/demux.c
@@ -307,6 +307,7 @@ decoder_t *demux_PacketizerNew( demux_t *p_demux, es_format_t *p_fmt, const char
es_format_Clean( p_fmt );
return NULL;
}
+ p_fmt->b_packetized = false;
p_packetizer->pf_decode_audio = NULL;
p_packetizer->pf_decode_video = NULL;
More information about the vlc-devel
mailing list