mirror of https://github.com/mpv-player/mpv
Allow dpx image files as input.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29489 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a2dd68d6b4
commit
bcb5c78ce3
|
@ -338,6 +338,14 @@ videocodec ffbmp
|
|||
dll bmp
|
||||
out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8
|
||||
|
||||
videocodec ffdpx
|
||||
info "FFmpeg DPX"
|
||||
status working
|
||||
fourcc "dpx " ; "dpx " is an internal MPlayer FOURCC
|
||||
driver ffmpeg
|
||||
dll dpx
|
||||
out RG48BE,RG48LE
|
||||
|
||||
videocodec ffgif
|
||||
info "FFmpeg GIF"
|
||||
status working
|
||||
|
|
|
@ -82,6 +82,7 @@ static const struct {
|
|||
uint32_t format;
|
||||
} type2format[] = {
|
||||
{ "bmp", mmioFOURCC('b', 'm', 'p', ' ') },
|
||||
{ "dpx", mmioFOURCC('d', 'p', 'x', ' ') },
|
||||
{ "jpeg", mmioFOURCC('I', 'J', 'P', 'G') },
|
||||
{ "jpg", mmioFOURCC('I', 'J', 'P', 'G') },
|
||||
{ "jls", mmioFOURCC('I', 'J', 'P', 'G') },
|
||||
|
|
Loading…
Reference in New Issue