comparison src/mediastreamer/mssoundread.c @ 12029:1c771536a032

[gaim-migrate @ 14322] This _compiles_ for me now. Theres still a bunch of "dereferencing type-punned pointer will break strict-aliasing rules" warning and some redefinition warnings from the various config.h's. The deferencing warnings look like a BE<->LE hack but I left them untouched for the time being. committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Wed, 09 Nov 2005 09:57:33 +0000
parents e67993da8a22
children
comparison
equal deleted inserted replaced
12028:b0ad08e1d492 12029:1c771536a032
28 28
29 } 29 }
30 30
31 void ms_sound_read_class_init(MSSoundReadClass *klass) 31 void ms_sound_read_class_init(MSSoundReadClass *klass)
32 { 32 {
33 int i;
34 ms_filter_class_init(MS_FILTER_CLASS(klass)); 33 ms_filter_class_init(MS_FILTER_CLASS(klass));
35 MS_FILTER_CLASS(klass)->max_foutputs=1; /* one fifo output only */ 34 MS_FILTER_CLASS(klass)->max_foutputs=1; /* one fifo output only */
36 35
37 ms_filter_class_set_attr( MS_FILTER_CLASS(klass),FILTER_IS_SOURCE); 36 ms_filter_class_set_attr( MS_FILTER_CLASS(klass),FILTER_IS_SOURCE);
38 } 37 }