[vlc-devel] commit: Added a debug message on first entry point in VC1 packetizer. ( Laurent Aimar )
git version control
git at videolan.org
Tue Apr 28 22:32:20 CEST 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Apr 28 22:23:19 2009 +0200| [48182abfadf943b34434dbb0d7789b7ab5a177bb] | committer: Laurent Aimar
Added a debug message on first entry point in VC1 packetizer.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=48182abfadf943b34434dbb0d7789b7ab5a177bb
---
modules/packetizer/vc1.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/modules/packetizer/vc1.c b/modules/packetizer/vc1.c
index f8edd3a..3bd126e 100644
--- a/modules/packetizer/vc1.c
+++ b/modules/packetizer/vc1.c
@@ -529,6 +529,9 @@ static block_t *ParseIDU( decoder_t *p_dec, bool *pb_used_ts, block_t *p_frag )
block_Release( p_sys->ep.p_ep );
p_sys->ep.p_ep = block_Duplicate( p_frag );
+ if( !p_sys->b_entry_point )
+ msg_Dbg( p_dec, "found entry point" );
+
p_sys->b_entry_point = true;
BuildExtraData( p_dec );
}
More information about the vlc-devel
mailing list