diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-12 13:53:30 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-12 13:53:30 +0000 |
commit | b09c95b2af9688e76963d351ebe8a06c8c2f119a (patch) | |
tree | 4a6782693c76686ed3fee1a3acc95a67af04ac04 /src/xine-engine/video_out.h | |
parent | 6fa3d8cc7c60e9c117df209fc77df2fcb4e3e299 (diff) | |
download | xine-lib-b09c95b2af9688e76963d351ebe8a06c8c2f119a.tar.gz xine-lib-b09c95b2af9688e76963d351ebe8a06c8c2f119a.tar.bz2 |
add a flags member to frame struct (the relevant API versions have already been
increased lately), store flags in video out loop and catch some wrong ratios
CVS patchset: 5275
CVS date: 2003/08/12 13:53:30
Diffstat (limited to 'src/xine-engine/video_out.h')
-rw-r--r-- | src/xine-engine/video_out.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index 0fe4ba2bf..0ba8d9720 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.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.h,v 1.94 2003/08/05 15:03:14 mroi Exp $ + * $Id: video_out.h,v 1.95 2003/08/12 13:53:30 mroi Exp $ * * * xine version of video_out.h @@ -133,6 +133,7 @@ struct vo_frame_s { int format; /* IMGFMT_YV12 or IMGFMT_YUY2 */ int drawn; /* used by decoder, frame has already been drawn */ + int flags; /* remember the frame flags */ int copy_called; /* track use of copy() method */ /* "backward" references to where this frame originates from */ |