From 12f3a4bf68f49fc9a552656ad8851b89073521a7 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 22 Sep 2007 08:12:57 +0000 Subject: fix header and comments Original commit message from CVS: fix header and comments --- sys/directdraw/gstdirectdrawsink.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'sys/directdraw/gstdirectdrawsink.h') diff --git a/sys/directdraw/gstdirectdrawsink.h b/sys/directdraw/gstdirectdrawsink.h index 0026eb35..9cb5f788 100644 --- a/sys/directdraw/gstdirectdrawsink.h +++ b/sys/directdraw/gstdirectdrawsink.h @@ -1,9 +1,7 @@ /* GStreamer - * Copyright (C) 2005 Sebastien Moutte + * Copyright (C) 2005 Sebastien Moutte * Copyright (C) 2007 Pioneers of the Inevitable * - * gstdirectdrawsink.h: - * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either @@ -24,7 +22,6 @@ * */ - #ifndef __GST_DIRECTDRAWSINK_H__ #define __GST_DIRECTDRAWSINK_H__ @@ -38,6 +35,7 @@ #include G_BEGIN_DECLS + #define GST_TYPE_DIRECTDRAW_SINK (gst_directdraw_sink_get_type()) #define GST_DIRECTDRAW_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DIRECTDRAW_SINK,GstDirectDrawSink)) #define GST_DIRECTDRAW_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DIRECTDRAW_SINK,GstDirectDrawSinkClass)) @@ -118,14 +116,14 @@ struct _GstDirectDrawSink /* thread processing our default window messages */ GThread *window_thread; - /* TRUE when directdraw objects are setup */ + /* TRUE when directdraw object is set up */ gboolean setup; - /* TRUE if the hardware support blitting from one colorspace to another */ + /* TRUE if the hardware supports blitting from one colorspace to another */ gboolean can_blit_between_colorspace; - /* this flag is used to force re-creation of our offscreen surface - * it's need when hardware doesn't support fourcc blit and the bit deph + /* This flag is used to force re-creation of our offscreen surface. + * It's needed when hardware doesn't support fourcc blit and the bit depth * of the current display mode changes. */ gboolean must_recreate_offscreen; @@ -139,4 +137,5 @@ struct _GstDirectDrawSinkClass GType gst_directdraw_sink_get_type (void); G_END_DECLS + #endif /* __GST_DIRECTDRAWSINK_H__ */ -- cgit