/usr/include/libinstpatch-1.0/libinstpatch/IpatchSample.h is in libinstpatch-dev 1.0.0-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | /*
* libInstPatch
* Copyright (C) 1999-2010 Joshua "Element" Green <jgreen@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; version 2.1
* of the License only.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA or on the web at http://www.gnu.org.
*/
/**
* SECTION: IpatchSample
* @short_description: Sample audio interface
* @see_also:
* @stability: Stable
*
* This interface provides a basic API for accessing audio of sample objects.
*/
#ifndef __IPATCH_SAMPLE_H__
#define __IPATCH_SAMPLE_H__
#include <glib.h>
#include <glib-object.h>
#include <libinstpatch/IpatchSampleTransform.h>
/* forward type declarations */
typedef struct _IpatchSample IpatchSample; /* dummy typedef */
typedef struct _IpatchSampleIface IpatchSampleIface;
typedef struct _IpatchSampleHandle IpatchSampleHandle;
#include <libinstpatch/IpatchSampleData.h>
#define IPATCH_TYPE_SAMPLE (ipatch_sample_get_type ())
#define IPATCH_SAMPLE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), IPATCH_TYPE_SAMPLE, \
IpatchSample))
#define IPATCH_SAMPLE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), IPATCH_TYPE_SAMPLE, \
IpatchSampleIface))
#define IPATCH_IS_SAMPLE(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), IPATCH_TYPE_SAMPLE))
#define IPATCH_SAMPLE_GET_IFACE(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE ((obj), IPATCH_TYPE_SAMPLE, \
IpatchSampleIface))
/**
* IpatchSampleHandleOpenFunc:
* @handle: Caller supplied structure to initialize
* @err: Location to store error information
*
* #IpatchSample interface method function type to open a sample for reading
* or writing. This method is optional for an #IpatchSample interface and if
* not specified then it is assumed that the open was successful and nothing
* additional need be done. All fields of @handle structure are already
* initialized, except <structfield>data1</structfield>,
* <structfield>data2</structfield> and <structfield>data3</structfield>
* which are available for the interface implementation.
*
* Returns: %TRUE on success, %FALSE otherwise (in which case an error should
* optionally be stored in @err).
*/
typedef gboolean (*IpatchSampleHandleOpenFunc)(IpatchSampleHandle *handle,
GError **err);
/**
* IpatchSampleHandleCloseFunc:
* @handle: Sample handle to close (as returned from #IpatchSampleHandleOpenFunc)
*
* #IpatchSample interface method to free any resources allocated in
* #IpatchSampleOpenFunc to @handle. This method is optional for an
* #IpatchSample interface and need not be specified if nothing needs to be done
* to release any resources allocated by #IpatchSampleHandleOpenFunc.
*/
typedef void (*IpatchSampleHandleCloseFunc)(IpatchSampleHandle *handle);
/**
* IpatchSampleHandleReadFunc:
* @handle: Handle to read from (as returned from #IpatchSampleOpenFunc)
* @offset: Offset in sample to start read from (in frames), use
* #IPATCH_SAMPLE_CUROFS to use current offset (starts at 0 if not specified)
* @frames: Size of sample data to read (in frames)
* @buf: Buffer to store sample data in
* @err: Location to store error information
*
* #IpatchSample interface method function type to read data from a
* sample handle. Can be %NULL in #IpatchSampleIface if sample data is not
* readable. Sample data should be stored in its native format.
*
* Returns: Should return %TRUE on success, %FALSE otherwise (in which case
* an error should optionally be stored in @err).
*/
typedef gboolean (*IpatchSampleHandleReadFunc)(IpatchSampleHandle *handle,
guint offset, guint frames,
gpointer buf, GError **err);
/**
* IpatchSampleHandleWriteFunc:
* @handle: Handle to write to (as returned from #IpatchSampleOpenFunc)
* @offset: Offset in sample to start write to (in frames), use
* #IPATCH_SAMPLE_CUROFS to use current offset (starts at 0 if not specified)
* @frames: Size of sample data to write (in frames)
* @buf: Buffer to store sample data in
* @err: Location to store error information
*
* #IpatchSample interface method function type to write data to a
* sample handle. Can be %NULL in #IpatchSampleIface if sample data is not
* writable. Sample data will be supplied in its native format.
*
* Returns: Should return %TRUE on success, %FALSE otherwise (in which case
* an error should optionally be stored in @err).
*/
typedef gboolean (*IpatchSampleHandleWriteFunc)(IpatchSampleHandle *handle,
guint offset, guint frames,
gconstpointer buf, GError **err);
/* Sample interface */
struct _IpatchSampleIface
{
GTypeInterface parent_class;
IpatchSampleHandleOpenFunc open;
IpatchSampleHandleCloseFunc close;
IpatchSampleHandleReadFunc read;
IpatchSampleHandleWriteFunc write;
int *loop_types; /* -1 terminated array of supp. loop types (NULL = none) */
};
/* Sample handle for I/O operations */
struct _IpatchSampleHandle
{
IpatchSample *sample; /* The sample which this handle applies to */
IpatchSampleTransform *transform; /* Set if sample is being converted */
IpatchSampleHandleReadFunc read; /* Read method pointer (copied from IpatchItem interface) */
IpatchSampleHandleWriteFunc write; /* Write method pointer (copied from IpatchItem interface) */
IpatchSampleHandleCloseFunc close; /* Write method pointer (copied from IpatchItem interface) */
guint32 read_mode : 1; /* TRUE if read mode, FALSE if write mode */
guint32 manual_transform : 1; /* Methods handle sample transform */
guint32 release_transform : 1; /* TRUE if transform should be released from transform pool */
guint32 format : 12; /* Format to transform to */
guint32 reserved : 17;
guint32 channel_map; /* Channel map for multi-channel audio transform */
gpointer data1; /* sample interface defined */
gpointer data2; /* sample interface defined */
gpointer data3; /* sample interface defined */
gpointer data4; /* sample interface defined */
guint32 reserved2;
};
/**
* IpatchSampleLoopType:
* @IPATCH_SAMPLE_LOOP_NONE: No loop.
* @IPATCH_SAMPLE_LOOP_STANDARD: Standard loop.
* @IPATCH_SAMPLE_LOOP_RELEASE: Loop till note release stage.
* @IPATCH_SAMPLE_LOOP_PINGPONG: Play forward and then in reverse continously.
*
* Sample looping type.
*/
typedef enum
{
IPATCH_SAMPLE_LOOP_NONE,
IPATCH_SAMPLE_LOOP_STANDARD,
IPATCH_SAMPLE_LOOP_RELEASE,
IPATCH_SAMPLE_LOOP_PINGPONG
} IpatchSampleLoopType;
/**
* IPATCH_SAMPLE_FORMAT_DEFAULT:
*
* Default sample format for #IpatchSample interface.
*/
#define IPATCH_SAMPLE_FORMAT_DEFAULT (IPATCH_SAMPLE_16BIT | IPATCH_SAMPLE_MONO \
| IPATCH_SAMPLE_LENDIAN | IPATCH_SAMPLE_SIGNED)
/**
* IPATCH_SAMPLE_RATE_MIN:
*
* Minimum sample rate.
*/
#define IPATCH_SAMPLE_RATE_MIN 8000
/**
* IPATCH_SAMPLE_RATE_MAX:
*
* Maximum sample rate.
*/
#define IPATCH_SAMPLE_RATE_MAX 192000
/**
* IPATCH_SAMPLE_RATE_DEFAULT:
*
* Default sample rate.
*/
#define IPATCH_SAMPLE_RATE_DEFAULT 44100
/**
* IPATCH_SAMPLE_ROOT_NOTE_DEFAULT:
*
* Default root note.
*/
#define IPATCH_SAMPLE_ROOT_NOTE_DEFAULT 60
/**
* IPATCH_SAMPLE_LOOP_TYPE_TERM:
*
* Value used for terminating list of supported loop types.
*/
#define IPATCH_SAMPLE_LOOP_TYPE_TERM (-1)
/**
* IPATCH_SAMPLE_HANDLE_FORMAT:
* @handle: Sample handle
*
* Macro to access transform sample format of a sample handle.
*
* Returns: Sample transform format.
*/
#define IPATCH_SAMPLE_HANDLE_FORMAT(handle) ((handle)->format)
/* some convenient loop_type arrays for use by IpatchSample interfaces */
extern int ipatch_sample_loop_types_standard[];
extern int ipatch_sample_loop_types_standard_release[];
GType ipatch_sample_get_type (void);
int *ipatch_sample_get_loop_types (IpatchSample *sample);
int *ipatch_sample_type_get_loop_types (GType type);
void ipatch_sample_set_format (IpatchSample *sample, int format);
int ipatch_sample_get_format (IpatchSample *sample);
void ipatch_sample_set_size (IpatchSample *sample, guint size);
guint ipatch_sample_get_size (IpatchSample *sample, guint *bytes);
int ipatch_sample_get_frame_size (IpatchSample *sample);
IpatchSampleData *ipatch_sample_get_sample_data (IpatchSample *sample);
gboolean ipatch_sample_set_sample_data (IpatchSample *sample,
IpatchSampleData *sampledata);
gboolean ipatch_sample_read (IpatchSample *sample, guint offset, guint frames,
gpointer buf, GError **err);
gboolean ipatch_sample_write (IpatchSample *sample, guint offset, guint frames,
gconstpointer buf, GError **err);
gboolean ipatch_sample_read_transform (IpatchSample *sample, guint offset, guint frames,
gpointer buf, int format, guint32 channel_map,
GError **err);
gboolean ipatch_sample_write_transform (IpatchSample *sample, guint offset, guint frames,
gconstpointer buf, int format, guint32 channel_map,
GError **err);
gboolean ipatch_sample_copy (IpatchSample *dest_sample, IpatchSample *src_sample,
guint32 channel_map, GError **err);
gboolean ipatch_sample_save_to_file (IpatchSample *sample, const char *filename,
int file_format, int sub_format, GError **err);
gboolean ipatch_sample_handle_open (IpatchSample *sample,
IpatchSampleHandle *handle, char mode,
int format, guint32 channel_map, GError **err);
void ipatch_sample_handle_close (IpatchSampleHandle *handle);
IpatchSampleTransform *ipatch_sample_handle_get_transform (IpatchSampleHandle *handle);
void ipatch_sample_handle_set_transform (IpatchSampleHandle *handle,
IpatchSampleTransform *transform);
int ipatch_sample_handle_get_format (IpatchSampleHandle *handle);
int ipatch_sample_handle_get_frame_size (IpatchSampleHandle *handle);
guint ipatch_sample_handle_get_max_frames (IpatchSampleHandle *handle);
gpointer ipatch_sample_handle_read (IpatchSampleHandle *handle, guint offset, guint frames,
gpointer buf, GError **err);
gboolean ipatch_sample_handle_write (IpatchSampleHandle *handle, guint offset, guint frames,
gconstpointer buf, GError **err);
gboolean ipatch_sample_handle_cascade_open (IpatchSampleHandle *handle,
IpatchSample *sample, GError **err);
GParamSpec *ipatch_sample_install_property (GObjectClass *oclass,
guint property_id,
const char *property_name);
GParamSpec *ipatch_sample_install_property_readonly (GObjectClass *oclass,
guint property_id,
const char *property_name);
GParamSpec *ipatch_sample_new_property_param_spec (const char *property_name,
GParamFlags flags);
#endif
|