From 47614d31060313ca3b884a02bb62c18310540a75 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 27 May 2011 23:31:27 +0100 Subject: [PATCH] video: sprinkle some G_GNUC_CONST Mark functions that have no effect besides their return value and only inspect their input arguments with G_GNUC_CONST. (We just ignore the g_return_val_if_fail() guards for this) --- gst-libs/gst/video/video.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/gst-libs/gst/video/video.h b/gst-libs/gst/video/video.h index 73a8f19..52e0fea 100644 --- a/gst-libs/gst/video/video.h +++ b/gst-libs/gst/video/video.h @@ -494,45 +494,45 @@ GstCaps * gst_video_format_new_template_caps (GstVideoFormat format); /* format properties */ -GstVideoFormat gst_video_format_from_fourcc (guint32 fourcc); +GstVideoFormat gst_video_format_from_fourcc (guint32 fourcc) G_GNUC_CONST; -guint32 gst_video_format_to_fourcc (GstVideoFormat format); +guint32 gst_video_format_to_fourcc (GstVideoFormat format) G_GNUC_CONST; -gboolean gst_video_format_is_rgb (GstVideoFormat format); +gboolean gst_video_format_is_rgb (GstVideoFormat format) G_GNUC_CONST; -gboolean gst_video_format_is_yuv (GstVideoFormat format); +gboolean gst_video_format_is_yuv (GstVideoFormat format) G_GNUC_CONST; -gboolean gst_video_format_is_gray (GstVideoFormat format); +gboolean gst_video_format_is_gray (GstVideoFormat format) G_GNUC_CONST; -gboolean gst_video_format_has_alpha (GstVideoFormat format); +gboolean gst_video_format_has_alpha (GstVideoFormat format) G_GNUC_CONST; int gst_video_format_get_component_depth (GstVideoFormat format, - int component); + int component) G_GNUC_CONST; int gst_video_format_get_row_stride (GstVideoFormat format, int component, - int width); + int width) G_GNUC_CONST; int gst_video_format_get_pixel_stride (GstVideoFormat format, - int component); + int component) G_GNUC_CONST; int gst_video_format_get_component_width (GstVideoFormat format, int component, - int width); + int width) G_GNUC_CONST; int gst_video_format_get_component_height (GstVideoFormat format, int component, - int height); + int height) G_GNUC_CONST; int gst_video_format_get_component_offset (GstVideoFormat format, int component, int width, - int height); + int height) G_GNUC_CONST; int gst_video_format_get_size (GstVideoFormat format, int width, - int height); + int height) G_GNUC_CONST; gboolean gst_video_get_size_from_caps (const GstCaps * caps, gint * size); -- 2.7.4