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
0899262b
Commit
0899262b
authored
Sep 16, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for ProRes through Libavc
Thanks Elvis
parent
d11ea136
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
NEWS
NEWS
+2
-1
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-1
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 @
0899262b
...
...
@@ -60,11 +60,12 @@ Codecs:
* Experimental Hardware decoding using Broadcom CrystalHD cards
* New module for decoding EBU subtitles (.stl)
* Support for 9bits and 10bits H.264/AVC decoding
* Support for Lagarith Lossless video codec
* Support for 20-bits PCM and DAT-12 (digital magnetic tapes) from RTP
* New module for Dirac encoding, using the faster libschroedinger
The Schroedinger module should be prefered to the Dirac one
* Support for WMV Images, aka WMVP and WVP2, as used by Photo Story
* Support for Lagarith Lossless video codec
* Support for ProRes 422 video codec in 10bits
* EIA-608 closed captions improvements
* Support for JPEG 2000 and Motion JPEG 2000 in the Windows and Mac binaries
...
...
include/vlc_fourcc.h
View file @
0899262b
...
...
@@ -118,7 +118,7 @@
#define VLC_CODEC_JPEG2000 VLC_FOURCC('J','P','2','K')
#define VLC_CODEC_LAGARITH VLC_FOURCC('L','A','G','S')
#define VLC_CODEC_FLASHSV2 VLC_FOURCC('F','S','V','2')
#define VLC_CODEC_PRORES VLC_FOURCC('a','p','c','n')
/* Planar YUV 4:1:0 Y:V:U */
#define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9')
...
...
modules/codec/avcodec/fourcc.c
View file @
0899262b
...
...
@@ -231,6 +231,11 @@ static const struct
{
VLC_CODEC_WMVP2
,
CODEC_ID_VC1IMAGE
,
VIDEO_ES
},
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 53, 15, 0 )
{
VLC_CODEC_PRORES
,
CODEC_ID_PRORES
,
VIDEO_ES
},
#endif
#if 0
/* UNTESTED VideoGames*/
{ VLC_FOURCC('W','C','3','V'), CODEC_ID_XAN_WC3,
...
...
src/misc/fourcc.c
View file @
0899262b
...
...
@@ -651,6 +651,11 @@ static const entry_t p_list_video[] = {
A
(
"IV50"
),
A
(
"iv50"
),
B
(
VLC_CODEC_PRORES
,
"Apple ProRes 422"
),
E
(
"apch"
,
"Apple ProRes 422 HQ"
),
E
(
"apcs"
,
"Apple ProRes 422 LT"
),
E
(
"apco"
,
"Apple ProRes 422 Proxy"
),
E
(
"ap4c"
,
"Apple ProRes 4444"
),
/* */
B
(
VLC_CODEC_YV12
,
"Planar 4:2:0 YVU"
),
...
...
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