[nut]: r137 - in trunk/nututils: demux_avi.c demux_nut.c demux_ogg.c framer_mpeg4.c framer_vorbis.c nutindex.c nutmerge.c nutmerge.h

Author: ods15 Date: Sun Sep 17 11:46:03 2006 New Revision: 137 Modified: trunk/nututils/demux_avi.c trunk/nututils/demux_nut.c trunk/nututils/demux_ogg.c trunk/nututils/framer_mpeg4.c trunk/nututils/framer_vorbis.c trunk/nututils/nutindex.c trunk/nututils/nutmerge.c trunk/nututils/nutmerge.h Log: Add license headers to nututils.. Modified: trunk/nututils/demux_avi.c ============================================================================== --- trunk/nututils/demux_avi.c (original) +++ trunk/nututils/demux_avi.c Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include "nutmerge.h" #include <string.h> Modified: trunk/nututils/demux_nut.c ============================================================================== --- trunk/nututils/demux_nut.c (original) +++ trunk/nututils/demux_nut.c Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include "nutmerge.h" #define ABS(x) MAX(x,-x) Modified: trunk/nututils/demux_ogg.c ============================================================================== --- trunk/nututils/demux_ogg.c (original) +++ trunk/nututils/demux_ogg.c Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include <stdio.h> #include <string.h> #include <inttypes.h> Modified: trunk/nututils/framer_mpeg4.c ============================================================================== --- trunk/nututils/framer_mpeg4.c (original) +++ trunk/nututils/framer_mpeg4.c Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include "nutmerge.h" struct framer_priv_s { Modified: trunk/nututils/framer_vorbis.c ============================================================================== --- trunk/nututils/framer_vorbis.c (original) +++ trunk/nututils/framer_vorbis.c Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include <string.h> #include "nutmerge.h" Modified: trunk/nututils/nutindex.c ============================================================================== --- trunk/nututils/nutindex.c (original) +++ trunk/nututils/nutindex.c Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include <stdio.h> #include <stdlib.h> #include <inttypes.h> Modified: trunk/nututils/nutmerge.c ============================================================================== --- trunk/nututils/nutmerge.c (original) +++ trunk/nututils/nutmerge.c Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include "nutmerge.h" #include <math.h> #include <string.h> Modified: trunk/nututils/nutmerge.h ============================================================================== --- trunk/nututils/nutmerge.h (original) +++ trunk/nututils/nutmerge.h Sun Sep 17 11:46:03 2006 @@ -1,3 +1,6 @@ +// (C) 2005-2006 Oded Shimon +// This file is available under the MIT/X license, see LICENSE + #include <inttypes.h> #include <stdlib.h> #include <stdio.h>
participants (1)
-
ods15