Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
61f6d450
Commit
61f6d450
authored
Nov 22, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: only include header that are needed (and no more stdlib.h, string.h
as vlc/vlc.h include them).
parent
192c8091
Changes
28
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
40 additions
and
139 deletions
+40
-139
modules/codec/a52.c
modules/codec/a52.c
+1
-6
modules/codec/adpcm.c
modules/codec/adpcm.c
+1
-6
modules/codec/araw.c
modules/codec/araw.c
+1
-6
modules/codec/cinepak.c
modules/codec/cinepak.c
+1
-5
modules/codec/dts.c
modules/codec/dts.c
+1
-6
modules/codec/dvbsub.c
modules/codec/dvbsub.c
+2
-4
modules/codec/faad.c
modules/codec/faad.c
+6
-9
modules/codec/ffmpeg/audio.c
modules/codec/ffmpeg/audio.c
+1
-8
modules/codec/ffmpeg/chroma.c
modules/codec/ffmpeg/chroma.c
+1
-3
modules/codec/ffmpeg/encoder.c
modules/codec/ffmpeg/encoder.c
+1
-8
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+1
-5
modules/codec/ffmpeg/postprocess.c
modules/codec/ffmpeg/postprocess.c
+1
-3
modules/codec/ffmpeg/video.c
modules/codec/ffmpeg/video.c
+1
-5
modules/codec/flac.c
modules/codec/flac.c
+3
-3
modules/codec/libmpeg2.c
modules/codec/libmpeg2.c
+1
-5
modules/codec/lpcm.c
modules/codec/lpcm.c
+2
-2
modules/codec/mpeg_audio.c
modules/codec/mpeg_audio.c
+1
-6
modules/codec/quicktime.c
modules/codec/quicktime.c
+2
-4
modules/codec/rawvideo.c
modules/codec/rawvideo.c
+1
-7
modules/codec/speex.c
modules/codec/speex.c
+2
-6
modules/codec/spudec/parse.c
modules/codec/spudec/parse.c
+1
-4
modules/codec/spudec/render.c
modules/codec/spudec/render.c
+1
-3
modules/codec/spudec/spudec.c
modules/codec/spudec/spudec.c
+1
-4
modules/codec/subsdec.c
modules/codec/subsdec.c
+2
-5
modules/codec/tarkin.c
modules/codec/tarkin.c
+1
-2
modules/codec/theora.c
modules/codec/theora.c
+1
-5
modules/codec/vorbis.c
modules/codec/vorbis.c
+1
-5
modules/codec/xvid.c
modules/codec/xvid.c
+1
-4
No files found.
modules/codec/a52.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* a52.c: parse A/52 audio sync info and packetize the stream
*****************************************************************************
* Copyright (C) 2001-2002 VideoLAN
* $Id: a52.c,v 1.3
0 2003/11/16 22:54:12 gbazin
Exp $
* $Id: a52.c,v 1.3
1 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Stphane Borel <stef@via.ecp.fr>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -26,13 +26,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* memcpy() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "vlc_block_helper.h"
...
...
modules/codec/adpcm.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* adpcm.c : adpcm variant audio decoder
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: adpcm.c,v 1.1
6 2003/11/16 21:07:30 gbazin
Exp $
* $Id: adpcm.c,v 1.1
7 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -26,13 +26,8 @@
*
* Documentation: http://www.pcisys.net/~melanson/codecs/adpcm.txt
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "codecs.h"
/*****************************************************************************
* Module descriptor
...
...
modules/codec/araw.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* araw.c: Pseudo audio decoder; for raw pcm data
*****************************************************************************
* Copyright (C) 2001, 2003 VideoLAN
* $Id: araw.c,v 1.2
4 2003/11/16 21:07:30 gbazin
Exp $
* $Id: araw.c,v 1.2
5 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -24,13 +24,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "codecs.h"
/*****************************************************************************
* Module descriptor
...
...
modules/codec/cinepak.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* cinepak.c: cinepak video decoder
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: cinepak.c,v 1.
3 2003/11/16 21:07:30 gbazin
Exp $
* $Id: cinepak.c,v 1.
4 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -24,13 +24,9 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#define CINEPAK_MAXSTRIP 32
...
...
modules/codec/dts.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* dts.c: parse DTS audio sync info and packetize the stream
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: dts.c,v 1.
6 2003/11/16 22:54:12 gbazin
Exp $
* $Id: dts.c,v 1.
7 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -25,13 +25,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* memcpy() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "vlc_block_helper.h"
...
...
modules/codec/dvbsub.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* dvbsub.c : DVB subtitles decoder thread
*****************************************************************************
* Copyright (C) 2003 ANEVIA
* $Id: dvbsub.c,v 1.
3 2003/11/16 21:07:30 gbazin
Exp $
* $Id: dvbsub.c,v 1.
4 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Damien LUCAS <damien.lucas@anevia.com>
*
...
...
@@ -23,13 +23,11 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* memcpy(), memset() */
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include "codecs.h"
#include "codecs.h"
// Wow, that's ugly but very usefull for a memory leak track
// so I just keep it
...
...
modules/codec/faad.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* decoder.c: AAC decoder using libfaad2
*****************************************************************************
* Copyright (C) 2001, 2003 VideoLAN
* $Id: faad.c,v 1.
4 2003/11/16 21:07:30 gbazin
Exp $
* $Id: faad.c,v 1.
5 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -21,25 +21,22 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/aout.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <faad.h>
#include "codecs.h"
/*****************************************************************************
* Module descriptor
*****************************************************************************/
static
int
Open
(
vlc_object_t
*
);
static
void
Close
Decoder
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_description
(
_
(
"AAC audio decoder (using libfaad2)"
)
);
set_capability
(
"decoder"
,
60
);
set_callbacks
(
Open
,
Close
Decoder
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
@@ -301,9 +298,9 @@ static aout_buffer_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
}
/*****************************************************************************
* Close
Decoder
:
* Close:
*****************************************************************************/
static
void
Close
Decoder
(
vlc_object_t
*
p_this
)
static
void
Close
(
vlc_object_t
*
p_this
)
{
decoder_t
*
p_dec
=
(
decoder_t
*
)
p_this
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
...
...
modules/codec/ffmpeg/audio.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* audio.c: audio decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2003 VideoLAN
* $Id: audio.c,v 1.2
4 2003/11/19 13:10:48 gbazin
Exp $
* $Id: audio.c,v 1.2
5 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -25,15 +25,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "codecs.h"
#include "aout_internal.h"
/* ffmpeg header */
#ifdef HAVE_FFMPEG_AVCODEC_H
...
...
modules/codec/ffmpeg/chroma.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* chroma.c: chroma conversion using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: chroma.c,v 1.
3 2003/10/27 01:04:38 gbazin
Exp $
* $Id: chroma.c,v 1.
4 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -24,8 +24,6 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vout.h>
...
...
modules/codec/ffmpeg/encoder.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* encoder.c: video and audio encoder using the ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: encoder.c,v 1.
7 2003/11/16 21:07:31 gbazin
Exp $
* $Id: encoder.c,v 1.
8 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -25,17 +25,10 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/aout.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <vlc/sout.h>
#include "aout_internal.h"
/* ffmpeg header */
#ifdef HAVE_FFMPEG_AVCODEC_H
...
...
modules/codec/ffmpeg/ffmpeg.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* ffmpeg.c: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: ffmpeg.c,v 1.
59 2003/11/16 21:07:31 gbazin
Exp $
* $Id: ffmpeg.c,v 1.
60 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -25,12 +25,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
/* ffmpeg header */
#ifdef HAVE_FFMPEG_AVCODEC_H
...
...
modules/codec/ffmpeg/postprocess.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* postprocess.c: video postprocessing using the ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: postprocess.c,v 1.
2 2003/10/28 14:17:51 gbazin
Exp $
* $Id: postprocess.c,v 1.
3 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -21,8 +21,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/vout.h>
...
...
modules/codec/ffmpeg/video.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* video.c: video decoder using the ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: video.c,v 1.4
7 2003/11/19 13:10:48 gbazin
Exp $
* $Id: video.c,v 1.4
8 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -25,12 +25,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
/* ffmpeg header */
#ifdef HAVE_FFMPEG_AVCODEC_H
...
...
modules/codec/flac.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* flac.c: flac decoder/packetizer/encoder module making use of libflac
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: flac.c,v 1.
4 2003/11/22 12:41:32 gbazin
Exp $
* $Id: flac.c,v 1.
5 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Sigmund Augdal <sigmunau@idi.ntnu.no>
...
...
@@ -11,7 +11,7 @@
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
...
...
@@ -25,9 +25,9 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <FLAC/stream_decoder.h>
#include <FLAC/stream_encoder.h>
...
...
modules/codec/libmpeg2.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: libmpeg2.c,v 1.3
3 2003/11/16 21:07:30 gbazin
Exp $
* $Id: libmpeg2.c,v 1.3
4 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -27,12 +27,8 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/input.h>
#include <vlc/decoder.h>
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* memcpy(), memset() */
#include <mpeg2dec/mpeg2.h>
#include "vout_synchro.h"
...
...
modules/codec/lpcm.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* lpcm.c: lpcm decoder/packetizer module
*****************************************************************************
* Copyright (C) 1999-2003 VideoLAN
* $Id: lpcm.c,v 1.
19 2003/11/22 18:04:10 gbazin
Exp $
* $Id: lpcm.c,v 1.
20 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Henri Fallon <henri@videolan.org>
...
...
@@ -13,7 +13,7 @@
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
...
...
modules/codec/mpeg_audio.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* mpeg_audio.c: parse MPEG audio sync info and packetize the stream
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: mpeg_audio.c,v 1.2
3 2003/11/16 22:54:12 gbazin
Exp $
* $Id: mpeg_audio.c,v 1.2
4 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -27,14 +27,9 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* strdup() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <vlc/aout.h>
#include <vlc/sout.h>
#include "vlc_block_helper.h"
...
...
modules/codec/quicktime.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* quicktime.c: a quicktime decoder that uses the QT library/dll
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: quicktime.c,v 1.1
4 2003/10/01 20:57:34 hartman
Exp $
* $Id: quicktime.c,v 1.1
5 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir at via.ecp.fr>
* Derk-Jan Hartman <thedj at users.sf.net>
...
...
@@ -25,14 +25,12 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/aout.h>
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* strdup() */
#include "codecs.h"
#ifdef SYS_DARWIN
...
...
modules/codec/rawvideo.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* rawvideo.c: Pseudo video decoder/packetizer for raw video data
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: rawvideo.c,v 1.
8 2003/11/16 21:07:30 gbazin
Exp $
* $Id: rawvideo.c,v 1.
9 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -24,14 +24,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* strdup() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "codecs.h"
/*****************************************************************************
* decoder_sys_t : raw video decoder descriptor
...
...
modules/codec/speex.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* speex.c: speex decoder/packetizer module making use of libspeex.
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: speex.c,v 1.
3 2003/11/16 21:07:30 gbazin
Exp $
* $Id: speex.c,v 1.
4 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -10,7 +10,7 @@
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
...
...
@@ -24,12 +24,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* memcpy(), memset() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <ogg/ogg.h>
#include <speex.h>
...
...
modules/codec/spudec/parse.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* parse.c: SPU parser
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: parse.c,v 1.1
4 2003/11/22 19:55:47
fenrir Exp $
* $Id: parse.c,v 1.1
5 2003/11/22 23:39:14
fenrir Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -25,12 +25,9 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "spudec.h"
...
...
modules/codec/spudec/render.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* render.c : SPU renderer
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: render.c,v 1.
7 2003/11/22 19:55:47
fenrir Exp $
* $Id: render.c,v 1.
8 2003/11/22 23:39:14
fenrir Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Rudolf Cornelissen <rag.cornelissen@inter.nl.net>
...
...
@@ -26,8 +26,6 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/decoder.h>
...
...
modules/codec/spudec/spudec.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* spudec.c : SPU decoder thread
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: spudec.c,v 1.
29 2003/11/22 20:15:3
4 fenrir Exp $
* $Id: spudec.c,v 1.
30 2003/11/22 23:39:1
4 fenrir Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -25,12 +25,9 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "spudec.h"
...
...
modules/codec/subsdec.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* subsdec.c : text subtitles decoder
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: subsdec.c,v 1.1
0 2003/11/19 13:25:48 hartman
Exp $
* $Id: subsdec.c,v 1.1
1 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -25,14 +25,11 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* memcpy(), memset() */
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include <osd.h>
#include <codecs.h>
#if defined(HAVE_ICONV)
#include <iconv.h>
...
...
modules/codec/tarkin.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* tarkin.c: tarkin decoder module making use of libtarkin.
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: tarkin.c,v 1.
8 2003/11/22 15:06:50 gbazin
Exp $
* $Id: tarkin.c,v 1.
9 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -25,7 +25,6 @@
* Preamble
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/input.h>
#include <vlc/decoder.h>
#include <ogg/ogg.h>
...
...
modules/codec/theora.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* theora.c: theora decoder module making use of libtheora.
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: theora.c,v 1.1
4 2003/11/16 21:07:30 gbazin
Exp $
* $Id: theora.c,v 1.1
5 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -24,12 +24,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* memcpy(), memset() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <ogg/ogg.h>
...
...
modules/codec/vorbis.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* vorbis.c: vorbis decoder/encoder/packetizer module making use of libvorbis.
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: vorbis.c,v 1.2
3 2003/11/16 22:54:12 gbazin
Exp $
* $Id: vorbis.c,v 1.2
4 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -24,12 +24,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* memcpy(), memset() */
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include <ogg/ogg.h>
...
...
modules/codec/xvid.c
View file @
61f6d450
...
...
@@ -2,7 +2,7 @@
* xvid.c: a decoder for libxvidcore, the Xvid video codec
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: xvid.c,v 1.
7 2003/11/16 21:07:30 gbazin
Exp $
* $Id: xvid.c,v 1.
8 2003/11/22 23:39:14 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -26,11 +26,8 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/input.h>
#include <vlc/decoder.h>
#include <stdlib.h>
#include "codecs.h"
#include <xvid.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment