From: Steinar H. Gunderson Date: Mon, 23 Nov 2015 01:03:17 +0000 (+0100) Subject: Add a missing PAL mode. X-Git-Tag: 0.4~29 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=dccdc1c2f2e828b9ff0e705375d179fa1e087591;p=bmusb Add a missing PAL mode. --- diff --git a/bmusb.cpp b/bmusb.cpp index d083f25..29bfeb1 100644 --- a/bmusb.cpp +++ b/bmusb.cpp @@ -1165,7 +1165,7 @@ bool decode_video_format(uint16_t video_format, unsigned *width, unsigned *heigh } // PAL (576i50, I suppose). A special case, see below. - if (video_format == 0xe909 || video_format == 0xe9c9) { + if (video_format == 0xe909 || video_format == 0xe9c9 || video_format == 0xe809) { *width = 720; *height = 576; *extra_lines_top = 22;