summaryrefslogtreecommitdiff
path: root/gtk2_ardour/canvas-waveview.h
diff options
context:
space:
mode:
authorThomas Brand <tom@trellis.ch>2017-07-01 18:42:24 +0200
committerRobin Gareus <robin@gareus.org>2017-07-01 19:28:26 +0200
commit63ea7b6516dbd7554d1eff6c98de50cf61fc9a72 (patch)
tree82fa339e009bc082dd8023916990800bea437081 /gtk2_ardour/canvas-waveview.h
parentf413b83cb9fa50954969a3d849999e1890ce6690 (diff)
NO-OP whitespace (updated GH PR #357)
Diffstat (limited to 'gtk2_ardour/canvas-waveview.h')
-rw-r--r--gtk2_ardour/canvas-waveview.h128
1 files changed, 64 insertions, 64 deletions
diff --git a/gtk2_ardour/canvas-waveview.h b/gtk2_ardour/canvas-waveview.h
index daa907e110..cd640bcb9d 100644
--- a/gtk2_ardour/canvas-waveview.h
+++ b/gtk2_ardour/canvas-waveview.h
@@ -48,17 +48,17 @@ typedef struct _GnomeCanvasWaveViewCache GnomeCanvasWaveViewCache;
struct _GnomeCanvasWaveViewCacheEntry
{
- float min;
- float max;
+ float min;
+ float max;
};
struct _GnomeCanvasWaveViewCache
{
- GnomeCanvasWaveViewCacheEntry* data;
- guint32 allocated;
- guint64 data_size;
- gulong start;
- gulong end;
+ GnomeCanvasWaveViewCacheEntry* data;
+ guint32 allocated;
+ guint64 data_size;
+ gulong start;
+ gulong end;
};
GnomeCanvasWaveViewCache* gnome_canvas_waveview_cache_new (void);
@@ -73,63 +73,63 @@ typedef void (*waveview_peak_function_t)(void*,gulong,gulong,gulong,gpointer,gu
struct _GnomeCanvasWaveView
{
- GnomeCanvasItem item;
-
- GnomeCanvasWaveViewCache *cache;
- gboolean cache_updater;
- gint screen_width;
-
- void *data_src;
- guint32 channel;
- waveview_peak_function_t peak_function;
- waveview_length_function_t length_function;
- waveview_sourcefile_length_function_t sourcefile_length_function;
- waveview_gain_curve_function_t gain_curve_function;
- void *gain_src;
-
- /** x-axis: samples per canvas unit. */
- double samples_per_unit;
-
- /** y-axis: amplitude_above_axis.
- *
- * the default is that an (scaled, normalized -1.0 ... +1.0) amplitude of 1.0
- * corresponds to the top of the area assigned to the waveview.
- *
- * larger values will expand the vertical scale, cutting off the peaks/troughs.
- * smaller values will decrease the vertical scale, moving peaks/troughs toward
- * the middle of the area assigned to the waveview.
- */
- double amplitude_above_axis;
-
- double x;
- double y;
- double height;
- double half_height;
- uint32_t wave_color;
- uint32_t clip_color;
- uint32_t zero_color;
- uint32_t fill_color;
-
- char filled;
- char rectified;
- char zero_line;
- char logscaled;
-
- /* These are updated by the update() routine
- to optimize the render() routine, which may
- be called several times after a single update().
- */
-
- int32_t bbox_ulx;
- int32_t bbox_uly;
- int32_t bbox_lrx;
- int32_t bbox_lry;
- unsigned char wave_r, wave_g, wave_b, wave_a;
- unsigned char clip_r, clip_g, clip_b, clip_a;
- unsigned char fill_r, fill_g, fill_b, fill_a;
- uint32_t samples;
- uint32_t region_start;
- int32_t reload_cache_in_render;
+ GnomeCanvasItem item;
+
+ GnomeCanvasWaveViewCache *cache;
+ gboolean cache_updater;
+ gint screen_width;
+
+ void *data_src;
+ guint32 channel;
+ waveview_peak_function_t peak_function;
+ waveview_length_function_t length_function;
+ waveview_sourcefile_length_function_t sourcefile_length_function;
+ waveview_gain_curve_function_t gain_curve_function;
+ void *gain_src;
+
+ /** x-axis: samples per canvas unit. */
+ double samples_per_unit;
+
+ /** y-axis: amplitude_above_axis.
+ *
+ * the default is that an (scaled, normalized -1.0 ... +1.0) amplitude of 1.0
+ * corresponds to the top of the area assigned to the waveview.
+ *
+ * larger values will expand the vertical scale, cutting off the peaks/troughs.
+ * smaller values will decrease the vertical scale, moving peaks/troughs toward
+ * the middle of the area assigned to the waveview.
+ */
+ double amplitude_above_axis;
+
+ double x;
+ double y;
+ double height;
+ double half_height;
+ uint32_t wave_color;
+ uint32_t clip_color;
+ uint32_t zero_color;
+ uint32_t fill_color;
+
+ char filled;
+ char rectified;
+ char zero_line;
+ char logscaled;
+
+ /* These are updated by the update() routine
+ to optimize the render() routine, which may
+ be called several times after a single update().
+ */
+
+ int32_t bbox_ulx;
+ int32_t bbox_uly;
+ int32_t bbox_lrx;
+ int32_t bbox_lry;
+ unsigned char wave_r, wave_g, wave_b, wave_a;
+ unsigned char clip_r, clip_g, clip_b, clip_a;
+ unsigned char fill_r, fill_g, fill_b, fill_a;
+ uint32_t samples;
+ uint32_t region_start;
+ int32_t reload_cache_in_render;
};
struct _GnomeCanvasWaveViewClass {