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
4f3ee7be
Commit
4f3ee7be
authored
Oct 02, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/cinepak.c: ported the cinepak decoder to the new api.
parent
2f24327b
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
754 additions
and
87 deletions
+754
-87
configure.ac
configure.ac
+1
-2
modules/codec/Modules.am
modules/codec/Modules.am
+1
-0
modules/codec/cinepak.c
modules/codec/cinepak.c
+752
-0
modules/codec/cinepak/.cvsignore
modules/codec/cinepak/.cvsignore
+0
-11
modules/codec/cinepak/Modules.am
modules/codec/cinepak/Modules.am
+0
-4
modules/codec/cinepak/cinepak.h
modules/codec/cinepak/cinepak.h
+0
-70
No files found.
configure.ac
View file @
4f3ee7be
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.
79 2003/10/01 22:19:57
gbazin Exp $
dnl $Id: configure.ac,v 1.
80 2003/10/02 21:12:45
gbazin Exp $
AC_INIT(vlc,0.6.3-cvs)
...
...
@@ -3311,7 +3311,6 @@ AC_OUTPUT([
modules/codec/a52old/Makefile
modules/codec/a52old/downmix/Makefile
modules/codec/a52old/imdct/Makefile
modules/codec/cinepak/Makefile
modules/codec/faad/Makefile
modules/codec/ffmpeg/Makefile
modules/codec/ffmpeg/postprocessing/Makefile
...
...
modules/codec/Modules.am
View file @
4f3ee7be
SOURCES_a52 = a52.c
SOURCES_cinepak = cinepak.c
SOURCES_dts = dts.c
SOURCES_flacdec = flacdec.c
SOURCES_lpcm = lpcm.c
...
...
modules/codec/cinepak
/cinepak
.c
→
modules/codec/cinepak.c
View file @
4f3ee7be
This diff is collapsed.
Click to expand it.
modules/codec/cinepak/.cvsignore
deleted
100644 → 0
View file @
2f24327b
.deps
.dirstamp
*.lo
*.la
*.dll
*.dylib
*.sl
*.so
Makefile.am
Makefile.in
Makefile
modules/codec/cinepak/Modules.am
deleted
100644 → 0
View file @
2f24327b
SOURCES_cinepak = \
cinepak.c \
cinepak.h \
$(NULL)
modules/codec/cinepak/cinepak.h
deleted
100644 → 0
View file @
2f24327b
/*****************************************************************************
* cinepak.h: Cinepak video decoder
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: cinepak.h,v 1.2 2002/11/27 13:17:27 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* 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
* 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#define CINEPAK_MAXSTRIP 32
typedef
struct
cinepak_codebook_s
{
u8
i_y
[
4
];
u8
i_u
,
i_v
;
}
cinepak_codebook_t
;
typedef
struct
cinepak_context_s
{
int
b_grayscale
;
/* force to grayscale */
int
i_width
;
int
i_height
;
int
i_stride_x
;
int
i_stride_y
;
u8
*
p_y
,
*
p_u
,
*
p_v
;
int
i_stride
[
3
];
/* our 3 planes */
int
i_lines
[
3
];
u8
*
p_pix
[
3
];
cinepak_codebook_t
codebook_v1
[
CINEPAK_MAXSTRIP
][
256
];
cinepak_codebook_t
codebook_v4
[
CINEPAK_MAXSTRIP
][
256
];
}
cinepak_context_t
;
typedef
struct
videodec_thread_s
{
decoder_fifo_t
*
p_fifo
;
vout_thread_t
*
p_vout
;
cinepak_context_t
*
p_context
;
/* private */
mtime_t
i_pts
;
u8
*
p_buffer
;
/* buffer for gather pes */
\
int
i_buffer
;
/* size of allocated p_framedata */
// int i_framesize;
// byte_t *p_framedata;
}
videodec_thread_t
;
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