Commit 4919ff27 authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/ffmpeg/ffmpeg.c: support for PNG/PPM/PGM/PGMYUV/PAM image formats.

parent f6f06645
......@@ -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
*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment