Ticket #8937: 0001-Trim-8-pixels-from-1080i-when-it-s-1088-high-take-2.patch

File 0001-Trim-8-pixels-from-1080i-when-it-s-1088-high-take-2.patch, 1.0 KB (added by beirdo, 14 years ago)
  • mythtv/libs/libmythtv/previewgenerator.cpp

    From e4baf7227c011fa66a8502da4d92e7bc6e26b96f Mon Sep 17 00:00:00 2001
    From: Gavin Hurlbut <gjhurlbu@gmail.com>
    Date: Tue, 14 Sep 2010 16:59:18 -0700
    Subject: [PATCH] Trim 8 pixels from 1080i when it's 1088 high (take 2)
    
    
    diff --git a/mythtv/libs/libmythtv/previewgenerator.cpp b/mythtv/libs/libmythtv/previewgenerator.cpp
    index e08c606..c60a100 100644
    a b bool PreviewGenerator::SavePreview(QString filename, 
    531531    if (!data || !width || !height)
    532532        return false;
    533533
     534    if( width == 1920 && height == 1088 )
     535    {
     536        // Remove the extra 8 pixels at the bottom of 1080i recordings that
     537        // decode to 1088 rows as these are bogus pixels and make the previews
     538        // look a bit wrong.  The worst offender seems to be H.264 captures
     539        // from HDPVR.
     540        height = 1080;
     541    }
     542
    534543    const QImage img((unsigned char*) data,
    535544                     width, height, QImage::Format_RGB32);
    536545