From ba6d58ee308949b96975c3081bd1c5411dd6966c Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 23 Dec 2015 14:30:19 +0100 Subject: [PATCH] Add yet another PAL mode. --- bmusb.cpp | 2 +- formats.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bmusb.cpp b/bmusb.cpp index 29bfeb1..ddecb04 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 || video_format == 0xe809) { + if (video_format == 0xe909 || video_format == 0xe9c9 || video_format == 0xe809 || video_format == 0xebe9) { *width = 720; *height = 576; *extra_lines_top = 22; diff --git a/formats.txt b/formats.txt index 7e200b8..6085477 100644 --- a/formats.txt +++ b/formats.txt @@ -9,7 +9,7 @@ NTSC - 0xe901 (also seen 0xe9c1, 0xe801) NTSC 23.98 - 0xe901 -PAL - 0xe909 (also seen 0xe9c9) +PAL - 0xe909 (also seen 0xe9c9 and 0xebe9) 1080p 23.98 - 0xe8ad 1080p 24 - 0xe88b 1080p 25 - 0xe86b -- 2.39.2