Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5db40ebf
Commit
5db40ebf
authored
Aug 04, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./include/vdec_ext-plugins.h: removed this public header and put it
in ./modules/codec/mpeg_video/.
parent
f512682c
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
16 additions
and
30 deletions
+16
-30
extras/Win32_msvc/vlc.dsp
extras/Win32_msvc/vlc.dsp
+0
-4
modules/codec/cinepak/cinepak.c
modules/codec/cinepak/cinepak.c
+1
-2
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+1
-2
modules/codec/mpeg_video/blocks.c
modules/codec/mpeg_video/blocks.c
+2
-3
modules/codec/mpeg_video/decoder.c
modules/codec/mpeg_video/decoder.c
+2
-3
modules/codec/mpeg_video/headers.c
modules/codec/mpeg_video/headers.c
+2
-3
modules/codec/mpeg_video/parser.c
modules/codec/mpeg_video/parser.c
+2
-3
modules/codec/mpeg_video/plugins.h
modules/codec/mpeg_video/plugins.h
+1
-1
modules/codec/mpeg_video/pool.c
modules/codec/mpeg_video/pool.c
+2
-3
modules/codec/mpeg_video/synchro.c
modules/codec/mpeg_video/synchro.c
+2
-3
src/misc/objects.c
src/misc/objects.c
+1
-3
No files found.
extras/Win32_msvc/vlc.dsp
View file @
5db40ebf
...
...
@@ -1592,10 +1592,6 @@ SOURCE=..\..\include\threads.h
# End Source File
# Begin Source File
SOURCE="..\..\include\vdec_ext-plugins.h"
# End Source File
# Begin Source File
SOURCE=..\..\include\video.h
# End Source File
# Begin Source File
...
...
modules/codec/cinepak/cinepak.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* cinepak.c: cinepak video decoder
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: cinepak.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: cinepak.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -42,7 +42,6 @@
# include <sys/times.h>
#endif
#include "vdec_ext-plugins.h"
#include "cinepak.h"
/*****************************************************************************
...
...
modules/codec/ffmpeg/ffmpeg.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* ffmpeg.c: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: ffmpeg.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: ffmpeg.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -42,7 +42,6 @@
# include <sys/times.h>
#endif
#include "vdec_ext-plugins.h"
#include "avcodec.h"
/* ffmpeg */
#include "ffmpeg.h"
...
...
modules/codec/mpeg_video/blocks.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* blocks.c : blocks parsing
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: blocks.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: blocks.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Michel Lespinasse <walken@zoy.org>
* Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
...
...
@@ -32,8 +32,7 @@
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include "vdec_ext-plugins.h"
#include "plugins.h"
#include "decoder.h"
#include "pool.h"
#include "parser.h"
...
...
modules/codec/mpeg_video/decoder.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* video_decoder.c : video decoder thread
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: decoder.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: decoder.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@zoy.org>
...
...
@@ -37,8 +37,7 @@
# include <unistd.h>
/* getpid() */
#endif
#include "vdec_ext-plugins.h"
#include "plugins.h"
#include "decoder.h"
#include "pool.h"
#include "parser.h"
...
...
modules/codec/mpeg_video/headers.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* vpar_headers.c : headers parsing
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: headers.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: headers.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Stphane Borel <stef@via.ecp.fr>
...
...
@@ -32,8 +32,7 @@
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include "vdec_ext-plugins.h"
#include "plugins.h"
#include "decoder.h"
#include "pool.h"
#include "parser.h"
...
...
modules/codec/mpeg_video/parser.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* video_parser.c : video parser thread
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: parser.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: parser.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
...
@@ -42,8 +42,7 @@
# include <sys/times.h>
#endif
#include "vdec_ext-plugins.h"
#include "plugins.h"
#include "decoder.h"
#include "pool.h"
#include "parser.h"
...
...
include/vdec_ext-
plugins.h
→
modules/codec/mpeg_video/
plugins.h
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* vdec_ext-plugins.h : structures from the video decoder exported to plug-ins
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id:
vdec_ext-plugins.h,v 1.14 2002/07/20 18:01
:41 sam Exp $
* $Id:
plugins.h,v 1.1 2002/08/04 18:39
:41 sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
modules/codec/mpeg_video/pool.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* vpar_pool.c : management of the pool of decoder threads
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: pool.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: pool.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -31,8 +31,7 @@
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include "vdec_ext-plugins.h"
#include "plugins.h"
#include "decoder.h"
#include "pool.h"
#include "parser.h"
...
...
modules/codec/mpeg_video/synchro.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* vpar_synchro.c : frame dropping routines
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: synchro.c,v 1.
1 2002/08/04 17:23:42
sam Exp $
* $Id: synchro.c,v 1.
2 2002/08/04 18:39:41
sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
...
@@ -101,8 +101,7 @@
#include <vlc/vout.h>
#include <vlc/decoder.h>
#include "vdec_ext-plugins.h"
#include "plugins.h"
#include "decoder.h"
#include "pool.h"
#include "parser.h"
...
...
src/misc/objects.c
View file @
5db40ebf
...
...
@@ -2,7 +2,7 @@
* objects.c: vlc_object_t handling
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: objects.c,v 1.1
2 2002/07/31 20:56:53
sam Exp $
* $Id: objects.c,v 1.1
3 2002/08/04 18:39:41
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -37,8 +37,6 @@
#include "video.h"
#include "video_output.h"
#include "vdec_ext-plugins.h"
#include "audio_output.h"
#include "vlc_playlist.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