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
d9666c8a
Commit
d9666c8a
authored
Feb 14, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for Indeo 5
May Kostya Shishkov be praised for this.
parent
f561f73c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
2 deletions
+14
-2
NEWS
NEWS
+3
-2
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-0
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+5
-0
src/misc/fourcc.c
src/misc/fourcc.c
+5
-0
No files found.
NEWS
View file @
d9666c8a
...
...
@@ -22,12 +22,13 @@ Decoders:
* HD dvb subtitles - Display Definition Segment support
* PGS subtitles for Blu-Ray
* Invmem module improvements
* Support for Atrac1 codec
* Support for Atrac1
audio
codec
* Support for SSE3 and SSE4 capabilities
* Multiple improvements for subtitles styles .SRT and .SSA
* Support for DxVA2 for H.264 decoding on GPU on Windows Vista and 7
* Support for VAAPI for H.264 decoding on GPU on GNU/Linux
* Multiple improvements for subtitles styles .SRT and .SSA
* Audio/Video decoder using OpenMAX IL components
* Support for Indeo5 video codec
Demuxers:
* Support for ADPCM in .flv streams
...
...
include/vlc_fourcc.h
View file @
d9666c8a
...
...
@@ -112,6 +112,7 @@
#define VLC_CODEC_CDG VLC_FOURCC('C','D','G',' ')
#define VLC_CODEC_FRWU VLC_FOURCC('F','R','W','U')
#define VLC_CODEC_AMV VLC_FOURCC('A','M','V',' ')
#define VLC_CODEC_INDEO5 VLC_FOURCC('I','V','5','0')
/* Planar YUV 4:1:0 Y:V:U */
...
...
modules/codec/avcodec/fourcc.c
View file @
d9666c8a
...
...
@@ -200,6 +200,10 @@ static const struct
{
VLC_CODEC_FRWU
,
CODEC_ID_FRWU
,
VIDEO_ES
},
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 53, 0 )
{
VLC_CODEC_INDEO5
,
CODEC_ID_INDEO5
,
VIDEO_ES
},
#endif
/* Videogames Codecs */
{
VLC_CODEC_INTERPLAY
,
CODEC_ID_INTERPLAY_VIDEO
,
VIDEO_ES
},
...
...
@@ -216,6 +220,7 @@ static const struct
{
VLC_CODEC_AMV
,
CODEC_ID_AMV
,
VIDEO_ES
},
#if 0
/* UNTESTED VideoGames*/
{ VLC_FOURCC('W','C','3','V'), CODEC_ID_XAN_WC3,
...
...
src/misc/fourcc.c
View file @
d9666c8a
...
...
@@ -607,6 +607,11 @@ static const entry_t p_list_video[] = {
B
(
VLC_CODEC_FRWU
,
"Forward Uncompressed"
),
A
(
"FRWU"
),
B
(
VLC_CODEC_INDEO5
,
"Indeo Video v5"
),
A
(
"IV50"
),
A
(
"iv50"
),
/* */
B
(
VLC_CODEC_YV12
,
"Planar 4:2:0 YVU"
),
A
(
"YV12"
),
...
...
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