mirror of
https://github.com/mpv-player/mpv
synced 2025-03-11 08:37:59 +00:00
mpeg2 chroma422/444 support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12563 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b14227ecfb
commit
ffce5bb4b4
@ -50,6 +50,7 @@ videocodec ffmpeg2
|
||||
driver ffmpeg
|
||||
dll "mpeg2video"
|
||||
out YV12,I420,IYUV
|
||||
out 422P,444P
|
||||
|
||||
; for backward compatibility
|
||||
videocodec ffmpeg12
|
||||
@ -63,6 +64,7 @@ videocodec ffmpeg12
|
||||
driver ffmpeg
|
||||
dll "mpegvideo"
|
||||
out YV12,I420,IYUV
|
||||
out 422P,444P
|
||||
|
||||
videocodec ffmpeg12mc
|
||||
info "FFmpeg MPEG 1/2 (XvMC)"
|
||||
|
@ -58,8 +58,10 @@ static int header_process_sequence_extension (mp_mpeg_header_t * picture,
|
||||
unsigned char * buffer)
|
||||
{
|
||||
/* check chroma format, size extensions, marker bit */
|
||||
if (((buffer[1] & 0x07) != 0x02) || (buffer[2] & 0xe0) ||
|
||||
((buffer[3] & 0x01) != 0x01))
|
||||
|
||||
if ( ((buffer[1] & 0x06) == 0x00) ||
|
||||
((buffer[1] & 0x01) != 0x00) || (buffer[2] & 0xe0) ||
|
||||
((buffer[3] & 0x01) != 0x01) )
|
||||
return 1;
|
||||
|
||||
picture->progressive_sequence = (buffer[1] >> 3) & 1;
|
||||
|
Loading…
Reference in New Issue
Block a user