diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-13 16:00:16 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-13 16:00:16 +0000 |
commit | 62f8ce9ec67fb85da1023b5db90a0a5f1609cff7 (patch) | |
tree | 29f34f2046868859c8c2ba995e676badc66db84e /src/dxr3/video_out_dxr3.c | |
parent | 6ed20eae1c478e08ff54f96fd7b8c801b37663d9 (diff) | |
download | xine-lib-62f8ce9ec67fb85da1023b5db90a0a5f1609cff7.tar.gz xine-lib-62f8ce9ec67fb85da1023b5db90a0a5f1609cff7.tar.bz2 |
* trying to fix a longstanding problem: 4:3 progressive content on DXR3's
TV out results in the lower third of the image being shaky; this fix might
raise other problems, but since we only play with the progressive flag,
the worst that could happen is that the card gets the interlaced vs.
progressive state wrong and this is almost never noticable on TV out
* report codec information for dxr3 video decoder
* while I am at it: small beautification to video_out_dxr3.c
CVS patchset: 6685
CVS date: 2004/06/13 16:00:16
Diffstat (limited to 'src/dxr3/video_out_dxr3.c')
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index 083f19d11..8fc8c4ec2 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_dxr3.c,v 1.101 2004/04/15 14:42:35 mroi Exp $ + * $Id: video_out_dxr3.c,v 1.102 2004/06/13 16:00:17 mroi Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -729,7 +729,7 @@ static void dxr3_update_frame_format(vo_driver_t *this_gen, vo_frame_t *frame_ge int i, image_size; /* calculate pitch and size including black bars */ - frame->vo_frame.pitches[0] = 32*((width + 15) / 16); + frame->vo_frame.pitches[0] = 32 * ((width + 15) / 16); image_size = frame->vo_frame.pitches[0] * oheight; /* planar format, only base[0] */ |