Changeset 401
- Timestamp:
- 07/16/06 07:31:31 (2 years ago)
- Files:
-
- libremix/trunk/src/ctxdata/ctxdata.h (modified) (1 diff)
- libremix/trunk/src/examples/cd_list_test.c (modified) (1 diff)
- libremix/trunk/src/libremix/remix_context.c (modified) (1 diff)
- libremix/trunk/src/libremix/remix_plugin.c (modified) (1 diff)
- libremix/trunk/src/libremix/remix_private.h (modified) (1 diff)
- libremix/trunk/src/tests/sndfiletest.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libremix/trunk/src/ctxdata/ctxdata.h
r161 r401 41 41 #define MAX(a,b) ((a)>(b)?(a):(b)) 42 42 43 typedef enum _CDScalarTypeCDScalarType;43 typedef int CDScalarType; 44 44 typedef union _CDScalar CDScalar; 45 45 typedef struct _CDSet CDSet; libremix/trunk/src/examples/cd_list_test.c
r161 r401 44 44 CDList * list, * list2; 45 45 void * ctx; 46 int a=1, b=2, c=3, d=4, e=5, f=6, g=7, h=8, i=9, j=10, k=11, l=12;47 int m=13, n=14, o=15, p=16, q=17, r=18, s=19, t=20, u=21,v=22, w=23;48 int x=24, y=25,z=26;46 int a=1, b=2, d=4, f=6, g=7, k=11; 47 int v=22, w=23; 48 int z=26; 49 49 50 50 ctx = NULL; libremix/trunk/src/libremix/remix_context.c
r339 r401 146 146 ctx->channels = REMIX_MONO; 147 147 148 remix_plugin_ initialise_defaults(env);148 remix_plugin_defaults_initialise (env); 149 149 150 150 return env; libremix/trunk/src/libremix/remix_plugin.c
r375 r401 121 121 122 122 void 123 remix_plugin_ initialise_defaults(RemixEnv * env)123 remix_plugin_defaults_initialise (RemixEnv * env) 124 124 { 125 125 CDList * plugins = cd_list_new (env); libremix/trunk/src/libremix/remix_private.h
r337 r401 360 360 361 361 /* remix_channelset */ 362 void remix_channelset_ initialise_defaults(RemixEnv * env);362 void remix_channelset_defaults_initialise (RemixEnv * env); 363 363 void remix_channelset_defaults_destroy (RemixEnv * env); 364 364 libremix/trunk/src/tests/sndfiletest.c
r318 r401 32 32 CDSet * sf_parms; 33 33 int sf_path_key; 34 CDScalar name; 34 35 35 36 INFO ("Attempting to read non existant file") ; … … 42 43 sf_parms = cd_set_new (env); 43 44 sf_path_key = remix_get_init_parameter_key (env, sf_plugin, "path"); 44 sf_parms = cd_set_insert (env, sf_parms, sf_path_key,45 CD_STRING("bad_file_name.wav"));45 name.s_string = "bad_file_name.wav" ; 46 sf_parms = cd_set_insert (env, sf_parms, sf_path_key, name); 46 47 if (sf_plugin == NULL) { 47 48 FAIL ("Newly created sndfile plugin NULL");
