diff src/mediastreamer/msspeexdec.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
line wrap: on
line diff
--- a/src/mediastreamer/msspeexdec.c	Wed Nov 09 09:02:43 2005 +0000
+++ b/src/mediastreamer/msspeexdec.c	Wed Nov 09 09:57:33 2005 +0000
@@ -127,6 +127,11 @@
 		case MS_FILTER_PROPERTY_FREQ:
 			obj->frequency=value[0];
 		break;
+		case MS_FILTER_PROPERTY_BITRATE:
+		case MS_FILTER_PROPERTY_CHANNELS:
+		case MS_FILTER_PROPERTY_FMTP:
+		default:
+		break;
 	}
 	return 0;
 }
@@ -188,7 +193,6 @@
 	MSQueue *inq=obj->inq[0];
 	gint16 *output;
 	gint gran=obj->frame_size*2;
-	gint i;
 	MSMessage *m;
 	
 	g_return_if_fail(inq!=NULL);