[vlc-commits] DTS to S/PDIF: Update copyright holders
Jean-Baptiste Kempf
git at videolan.org
Mon Nov 12 14:46:27 CET 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Nov 12 14:00:02 2012 +0100| [fe06bee1348c84bb47ad9aff095ccf414385e777] | committer: Jean-Baptiste Kempf
DTS to S/PDIF: Update copyright holders
And comments
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fe06bee1348c84bb47ad9aff095ccf414385e777
---
modules/audio_filter/converter/dtstospdif.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/modules/audio_filter/converter/dtstospdif.c b/modules/audio_filter/converter/dtstospdif.c
index 198d8f6..71dd6cd 100644
--- a/modules/audio_filter/converter/dtstospdif.c
+++ b/modules/audio_filter/converter/dtstospdif.c
@@ -1,10 +1,15 @@
/*****************************************************************************
* dtstospdif.c : encapsulates DTS frames into S/PDIF packets
*****************************************************************************
- * Copyright (C) 2003, 2006 the VideoLAN team
+ * Copyright (C) 2003-2009 the VideoLAN team
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl at nanocrew.net>
+ * Gildas Bazin
+ * Derk-Jan Hartman
+ * Pierre d'Herbemont
+ * Rémi Denis-Courmont
+ * Rafaël Carré
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -41,7 +46,7 @@ struct filter_sys_t
{
mtime_t start_date;
- /* 3 DTS frames have to be packed into an S/PDIF frame.
+ /* 3 DTS frames (max 2048) have to be packed into an S/PDIF frame (6144).
* We accumulate DTS frames from the decoder until we have enough to
* send. */
size_t i_frame_size;
@@ -86,6 +91,7 @@ static int Create( vlc_object_t *p_this )
p_sys = p_filter->p_sys = malloc( sizeof(*p_sys) );
if( !p_sys )
return VLC_ENOMEM;
+
p_sys->p_buf = NULL;
p_sys->i_frame_size = 0;
p_sys->i_frames = 0;
More information about the vlc-commits
mailing list