diff options
author | phintuka <phintuka> | 2008-06-21 22:33:58 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-06-21 22:33:58 +0000 |
commit | fa7e25f52b875831f30be5e42d16983a4c81853e (patch) | |
tree | fa91adbb32a8e1779752c1c0ce7c14ab7fbe7beb /xine_input_vdr.c | |
parent | ce13aec0aebd6730a6c3c462580ca796a376fd07 (diff) | |
download | xineliboutput-fa7e25f52b875831f30be5e42d16983a4c81853e.tar.gz xineliboutput-fa7e25f52b875831f30be5e42d16983a4c81853e.tar.bz2 |
post_frame_end(): Do not set BUF_FLAG_ASPECT for H.264
(it just does not work ...)
Diffstat (limited to 'xine_input_vdr.c')
-rw-r--r-- | xine_input_vdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index c5794acf..33f7af4f 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.157 2008-06-21 22:26:38 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.158 2008-06-21 22:33:58 phintuka Exp $ * */ @@ -4931,7 +4931,7 @@ static void post_frame_end(vdr_input_plugin_t *this, buf_element_t *vid_buf) bmi->biWidth = size.width; bmi->biHeight = size.height; - if (size.pixel_aspect.num) { + if (!this->h264 && size.pixel_aspect.num) { cbuf->decoder_flags |= BUF_FLAG_ASPECT; /* pixel ratio -> frame ratio */ if(size.pixel_aspect.num > size.height) { |