Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
4919ff27
Commit
4919ff27
authored
Dec 13, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/ffmpeg/ffmpeg.c: support for PNG/PPM/PGM/PGMYUV/PAM image formats.
parent
f6f06645
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+17
-0
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
4919ff27
...
...
@@ -755,6 +755,23 @@ static struct
VIDEO_ES
,
"FFMpeg SNOW wavelet Video"
},
#endif
/*
* Image codecs
*/
#if LIBAVCODEC_BUILD >= 4731
{
VLC_FOURCC
(
'p'
,
'n'
,
'g'
,
' '
),
CODEC_ID_PNG
,
VIDEO_ES
,
"PNG Image"
},
{
VLC_FOURCC
(
'p'
,
'p'
,
'm'
,
' '
),
CODEC_ID_PPM
,
VIDEO_ES
,
"PPM Image"
},
{
VLC_FOURCC
(
'p'
,
'g'
,
'm'
,
' '
),
CODEC_ID_PGM
,
VIDEO_ES
,
"PGM Image"
},
{
VLC_FOURCC
(
'p'
,
'g'
,
'm'
,
'y'
),
CODEC_ID_PGMYUV
,
VIDEO_ES
,
"PGM YUV Image"
},
{
VLC_FOURCC
(
'p'
,
'a'
,
'm'
,
' '
),
CODEC_ID_PAM
,
VIDEO_ES
,
"PAM Image"
},
#endif
/*
* Audio Codecs
*/
...
...
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