diff options
| author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-05 15:07:42 +0000 |
|---|---|---|
| committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-05 15:07:42 +0000 |
| commit | f6bce01c57ef131738ad84a6e1ef717c2873e6bd (patch) | |
| tree | b85d02a92a0cfc72c307a0004967492d4e9dc7df /src/dxr3/video_out_dxr3.h | |
| parent | a0dbaea3368ba4c327e0ae08e2dcfe9e314966dd (diff) | |
| download | xine-lib-f6bce01c57ef131738ad84a6e1ef717c2873e6bd.tar.gz xine-lib-f6bce01c57ef131738ad84a6e1ef717c2873e6bd.tar.bz2 | |
- adapt dxr3 code to new float aspects, use separate pan&scan flagging to
handle pan&scan information independently from the aspect
- proper DVD button group handling in dxr3 spu decoder
CVS patchset: 5248
CVS date: 2003/08/05 15:07:42
Diffstat (limited to 'src/dxr3/video_out_dxr3.h')
| -rw-r--r-- | src/dxr3/video_out_dxr3.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dxr3/video_out_dxr3.h b/src/dxr3/video_out_dxr3.h index 3c6c40359..6e78ab86b 100644 --- a/src/dxr3/video_out_dxr3.h +++ b/src/dxr3/video_out_dxr3.h @@ -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.h,v 1.17 2003/08/04 03:47:09 miguelfreitas Exp $ + * $Id: video_out_dxr3.h,v 1.18 2003/08/05 15:07:42 mroi Exp $ */ #ifdef HAVE_CONFIG_H @@ -107,9 +107,9 @@ typedef struct dxr3_driver_s { spu_encoder_t *spu_enc; /* spu encoder */ int need_update; /* the mpeg encoder needs to be updated */ - int video_iheight; /* input height (before adding black bars) */ - int video_oheight; /* output height (after adding black bars) */ - int video_width; + uint32_t video_iheight; /* input height (before adding black bars) */ + uint32_t video_oheight; /* output height (after adding black bars) */ + uint32_t video_width; double video_ratio; int top_bar; /* the height of the upper black bar */ @@ -128,7 +128,7 @@ typedef struct dxr3_driver_s { typedef struct dxr3_frame_s { vo_frame_t vo_frame; - int oheight; + uint32_t oheight; int aspect, pan_scan; uint8_t *mem; /* allocated for YV12 or YUY2 buffers */ uint8_t *real_base[3]; /* yuv/yuy2 buffers in mem aligned on 16 */ |
