Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
1e159600
Commit
1e159600
authored
Mar 08, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop aborted SNOW codec
This is not supported in libavcodec anymore.
parent
f8ebe373
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
9 deletions
+0
-9
include/vlc_fourcc.h
include/vlc_fourcc.h
+0
-1
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+0
-2
modules/mux/ogg.c
modules/mux/ogg.c
+0
-1
src/misc/fourcc.c
src/misc/fourcc.c
+0
-5
No files found.
include/vlc_fourcc.h
View file @
1e159600
...
...
@@ -52,7 +52,6 @@
#define VLC_CODEC_VC1 VLC_FOURCC('V','C','-','1')
#define VLC_CODEC_THEORA VLC_FOURCC('t','h','e','o')
#define VLC_CODEC_TARKIN VLC_FOURCC('t','a','r','k')
#define VLC_CODEC_SNOW VLC_FOURCC('S','N','O','W')
#define VLC_CODEC_DIRAC VLC_FOURCC('d','r','a','c')
#define VLC_CODEC_CAVS VLC_FOURCC('C','A','V','S')
#define VLC_CODEC_NUV VLC_FOURCC('N','J','P','G')
...
...
modules/codec/avcodec/fourcc.c
View file @
1e159600
...
...
@@ -144,8 +144,6 @@ static const struct
{
VLC_CODEC_TRUEMOTION1
,
CODEC_ID_TRUEMOTION1
,
VIDEO_ES
},
{
VLC_CODEC_TRUEMOTION2
,
CODEC_ID_TRUEMOTION2
,
VIDEO_ES
},
{
VLC_CODEC_SNOW
,
CODEC_ID_SNOW
,
VIDEO_ES
},
{
VLC_CODEC_QTRLE
,
CODEC_ID_QTRLE
,
VIDEO_ES
},
{
VLC_CODEC_QDRAW
,
CODEC_ID_QDRAW
,
VIDEO_ES
},
...
...
modules/mux/ogg.c
View file @
1e159600
...
...
@@ -309,7 +309,6 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
case
VLC_CODEC_WMV1
:
case
VLC_CODEC_WMV2
:
case
VLC_CODEC_WMV3
:
case
VLC_CODEC_SNOW
:
p_stream
->
p_oggds_header
=
calloc
(
1
,
sizeof
(
oggds_header_t
)
);
if
(
!
p_stream
->
p_oggds_header
)
{
...
...
src/misc/fourcc.c
View file @
1e159600
...
...
@@ -618,11 +618,6 @@ static const staticentry_t p_list_video[] = {
B
(
VLC_CODEC_TRUEMOTION2
,
"Duck TrueMotion v2.0 Video"
),
A
(
"TM20"
),
/* FFMPEG's SNOW wavelet codec */
B
(
VLC_CODEC_SNOW
,
"FFMpeg SNOW wavelet Video"
),
A
(
"SNOW"
),
A
(
"snow"
),
B
(
VLC_CODEC_QTRLE
,
"Apple QuickTime RLE Video"
),
A
(
"rle "
),
...
...
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