diff options
author | phintuka <phintuka> | 2009-02-14 20:39:20 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-02-14 20:39:20 +0000 |
commit | e78bad50abe74bd41971dc829aa587d85df5415b (patch) | |
tree | a32346c5fd4e18dde968fa84336227edb2cc44c5 | |
parent | 13ebbf8ec717c5b62afe489d52e5a49d322d4409 (diff) | |
download | xineliboutput-e78bad50abe74bd41971dc829aa587d85df5415b.tar.gz xineliboutput-e78bad50abe74bd41971dc829aa587d85df5415b.tar.bz2 |
int --> uint16_t
-rw-r--r-- | tools/h264.h | 6 | ||||
-rw-r--r-- | tools/mpeg.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/tools/h264.h b/tools/h264.h index a00f9da6..dff36ac9 100644 --- a/tools/h264.h +++ b/tools/h264.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: h264.h,v 1.7 2009-02-10 11:22:26 phintuka Exp $ + * $Id: h264.h,v 1.8 2009-02-14 20:39:20 phintuka Exp $ * */ @@ -35,8 +35,8 @@ extern "C" { typedef struct { - int width; - int height; + uint16_t width; + uint16_t height; mpeg_rational_t pixel_aspect; /* ... */ } h264_sps_data_t; diff --git a/tools/mpeg.h b/tools/mpeg.h index 698727cd..40c57eff 100644 --- a/tools/mpeg.h +++ b/tools/mpeg.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: mpeg.h,v 1.4 2009-02-10 11:23:23 phintuka Exp $ + * $Id: mpeg.h,v 1.5 2009-02-14 20:39:20 phintuka Exp $ * */ @@ -32,8 +32,8 @@ typedef struct { } mpeg_rational_t; typedef struct { - int width; - int height; + uint16_t width; + uint16_t height; mpeg_rational_t pixel_aspect; } video_size_t; |