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
aeb8f859
Commit
aeb8f859
authored
Jul 21, 2002
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all : enable cinepak decoder, I hope I haven't break anything.
parent
ff3794bc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
474 additions
and
445 deletions
+474
-445
Makefile
Makefile
+4
-0
configure
configure
+456
-443
configure.in
configure.in
+10
-0
include/input_ext-dec.h
include/input_ext-dec.h
+2
-1
src/input/input_programs.c
src/input/input_programs.c
+2
-1
No files found.
Makefile
View file @
aeb8f859
...
...
@@ -27,6 +27,7 @@ PLUGINS_DIR := a52 \
avi
\
beos
\
chroma
\
cinepak
\
directx
\
downmix
\
dsp
\
...
...
@@ -55,6 +56,7 @@ PLUGINS_DIR := a52 \
mpeg_system
\
mpeg_adec
\
mpeg_vdec
\
mp4
\
network
\
ogg
\
qnx
\
...
...
@@ -88,6 +90,7 @@ PLUGINS_TARGETS := a52/a52 \
chroma/chroma_i422_yuy2_mmx
\
chroma/chroma_i420_ymga
\
chroma/chroma_i420_ymga_mmx
\
cinepak/cinepak
\
directx/directx
\
downmix/downmix
\
downmix/downmixsse
\
...
...
@@ -146,6 +149,7 @@ PLUGINS_TARGETS := a52/a52 \
mpeg_system/mpeg_ts_dvbpsi
\
mpeg_adec/mpeg_adec
\
mpeg_vdec/mpeg_vdec
\
mp4/mp4
\
network/ipv4
\
network/ipv6
\
ogg/vorbis
\
...
...
configure
View file @
aeb8f859
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
View file @
aeb8f859
...
...
@@ -1047,6 +1047,16 @@ then
fi
fi
dnl
dnl cinepak plugin
dnl
AC_ARG_ENABLE(cinepak,
[ --enable-cinepak Cinepak decoder (default enabled)])
if test "x${enable_cinepak}" != "xno"
then
PLUGINS="${PLUGINS} cinepak"
fi
dnl
dnl ogg vorbis plugin
dnl
...
...
include/input_ext-dec.h
View file @
aeb8f859
...
...
@@ -2,7 +2,7 @@
* input_ext-dec.h: structures exported to the VideoLAN decoders
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: input_ext-dec.h,v 1.6
2 2002/07/20 18:01:41 sam
Exp $
* $Id: input_ext-dec.h,v 1.6
3 2002/07/21 15:18:29 fenrir
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Kaempf <maxx@via.ecp.fr>
...
...
@@ -41,6 +41,7 @@
#define H263_VIDEO_ES 0x60
#define I263_VIDEO_ES 0x61
#define SVQ1_VIDEO_ES 0x62
#define CINEPAK_VIDEO_ES 0x65
#define UNKNOWN_ES 0xFF
...
...
src/input/input_programs.c
View file @
aeb8f859
...
...
@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
*****************************************************************************
* Copyright (C) 1999-2002 VideoLAN
* $Id: input_programs.c,v 1.9
1 2002/07/16 21:25:43 sam
Exp $
* $Id: input_programs.c,v 1.9
2 2002/07/21 15:18:29 fenrir
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -693,6 +693,7 @@ int input_SelectES( input_thread_t * p_input, es_descriptor_t * p_es )
case
SVQ1_VIDEO_ES
:
case
H263_VIDEO_ES
:
case
I263_VIDEO_ES
:
case
CINEPAK_VIDEO_ES
:
case
DVD_SPU_ES
:
if
(
config_GetInt
(
p_input
,
"video"
)
)
{
...
...
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