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
7ebdd5ba
Commit
7ebdd5ba
authored
Mar 24, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Added fourcc 'MSS1' which is equivalent to 'WMV2'
parent
eb0eac06
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+2
-1
modules/codec/ffmpeg/ffmpeg.h
modules/codec/ffmpeg/ffmpeg.h
+2
-1
modules/codec/ffmpeg/video.c
modules/codec/ffmpeg/video.c
+2
-1
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
7ebdd5ba
...
...
@@ -2,7 +2,7 @@
* ffmpeg.c: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: ffmpeg.c,v 1.2
7 2003/03/13 16:09:20
hartman Exp $
* $Id: ffmpeg.c,v 1.2
8 2003/03/24 13:50:55
hartman Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -497,6 +497,7 @@ static int ffmpeg_GetFfmpegCodec( vlc_fourcc_t i_fourcc,
psz_name
=
"Windows Media Video 1"
;
break
;
case
FOURCC_WMV2
:
case
FOURCC_MSS1
:
i_cat
=
VIDEO_ES
;
i_codec
=
CODEC_ID_WMV2
;
psz_name
=
"Windows Media Video 2"
;
...
...
modules/codec/ffmpeg/ffmpeg.h
View file @
7ebdd5ba
...
...
@@ -2,7 +2,7 @@
* ffmpeg_vdec.h: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: ffmpeg.h,v 1.1
4 2003/03/13 16:09:20
hartman Exp $
* $Id: ffmpeg.h,v 1.1
5 2003/03/24 13:50:55
hartman Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -149,6 +149,7 @@ int E_( GetPESData )( u8 *p_buf, int i_max, pes_packet_t *p_pes );
/* wmv */
#define FOURCC_WMV1 VLC_FOURCC('W','M','V','1')
#define FOURCC_WMV2 VLC_FOURCC('W','M','V','2')
#define FOURCC_MSS1 VLC_FOURCC('M','S','S','1')
#define FOURCC_dvsl VLC_FOURCC('d','v','s','l')
#define FOURCC_dvsd VLC_FOURCC('d','v','s','d')
...
...
modules/codec/ffmpeg/video.c
View file @
7ebdd5ba
...
...
@@ -2,7 +2,7 @@
* video.c: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: video.c,v 1.1
8 2003/03/15 18:44:31 fenrir
Exp $
* $Id: video.c,v 1.1
9 2003/03/24 13:50:55 hartman
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -280,6 +280,7 @@ int E_( InitThread_Video )( vdec_thread_t *p_vdec )
p_vdec
->
p_fifo
->
i_fourcc
==
FOURCC_M4S2
||
p_vdec
->
p_fifo
->
i_fourcc
==
FOURCC_m4s2
||
p_vdec
->
p_fifo
->
i_fourcc
==
FOURCC_WMV2
||
p_vdec
->
p_fifo
->
i_fourcc
==
FOURCC_MSS1
||
p_vdec
->
p_fifo
->
i_fourcc
==
FOURCC_MJPG
||
p_vdec
->
p_fifo
->
i_fourcc
==
FOURCC_mjpg
||
p_vdec
->
p_fifo
->
i_fourcc
==
FOURCC_mjpa
||
...
...
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