mirror of https://github.com/mpv-player/mpv
- raw rgb1, rgb4 added
- mapping raw yuv formats added - fourcc 'alaw' fo rmov files added - version bumped git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7772 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
454110ceea
commit
db7183458a
|
@ -3,7 +3,7 @@
|
|||
; Before editing this file, please read DOCS/tech/codecs.conf.txt !
|
||||
;=============================================================================
|
||||
|
||||
release 20020910
|
||||
release 20021016
|
||||
|
||||
;=============================================================================
|
||||
; VIDEO CODECS
|
||||
|
@ -1092,11 +1092,29 @@ videocodec rawbgr15
|
|||
format 0x4247520F
|
||||
out BGR15 flip
|
||||
|
||||
videocodec rawbgr8
|
||||
info "RAW BGR8"
|
||||
status working
|
||||
driver raw
|
||||
format 0x0
|
||||
format 0x20776172
|
||||
format 0x4247520F
|
||||
out BGR8 flip
|
||||
|
||||
videocodec rawbgr1
|
||||
info "RAW BGR8"
|
||||
status working
|
||||
driver raw
|
||||
format 0x0
|
||||
format 0x20776172
|
||||
format 0x4247520F
|
||||
out BGR1 flip
|
||||
|
||||
videocodec rawyuy2
|
||||
info "RAW YUY2"
|
||||
status working
|
||||
driver raw
|
||||
format 0x0
|
||||
format 0x0 0x32595559
|
||||
format 0x20776172
|
||||
fourcc yuy2,YUY2
|
||||
out YUY2
|
||||
|
@ -1105,7 +1123,7 @@ videocodec rawuyvy
|
|||
info "RAW UYVY"
|
||||
status working
|
||||
driver raw
|
||||
format 0x0
|
||||
format 0x0 0x59565955
|
||||
format 0x20776172
|
||||
fourcc uyvy,UYVY
|
||||
out UYVY
|
||||
|
@ -1114,7 +1132,7 @@ videocodec rawyv12
|
|||
info "RAW YV12"
|
||||
status working
|
||||
driver raw
|
||||
format 0x0
|
||||
format 0x0 0x32315659
|
||||
format 0x20776172
|
||||
fourcc yv12,YV12
|
||||
out YV12
|
||||
|
@ -1123,7 +1141,7 @@ videocodec rawi420
|
|||
info "RAW I420"
|
||||
status working
|
||||
driver raw
|
||||
format 0x0
|
||||
format 0x0 0x30323449
|
||||
format 0x20776172
|
||||
fourcc i420,I420
|
||||
fourcc IYUV,iyuv
|
||||
|
@ -1133,7 +1151,7 @@ videocodec rawyvu9
|
|||
info "RAW YVU9"
|
||||
status working
|
||||
driver raw
|
||||
format 0x0
|
||||
format 0x0 0x39555659
|
||||
format 0x20776172
|
||||
fourcc yvu9,YVU9
|
||||
out YVU9
|
||||
|
@ -1335,6 +1353,7 @@ audiocodec alaw
|
|||
info "aLaw"
|
||||
status working
|
||||
format 0x6
|
||||
format 0x77616C61 ; 'alaw', .mov files
|
||||
driver alaw
|
||||
|
||||
audiocodec ulaw
|
||||
|
|
Loading…
Reference in New Issue