basevideo: fix unused-but-set-variable warnings with gcc 4.6
[platform/upstream/gstreamer.git] / sys / audioflingersink / GstAndroid.cpp
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <fcntl.h>
4 #include <unistd.h>
5 #include <poll.h>
6 #include <sys/ioctl.h>
7 #include <string.h>
8 #include <sys/mman.h>
9
10 /* Helper functions */
11 #include <gst/gst.h>
12
13 /* Object header */
14 #include "gstaudioflingersink.h"
15         
16 static gboolean plugin_init (GstPlugin * plugin)
17 {
18   gboolean ret = TRUE;
19  
20   ret &= gst_audioflinger_sink_plugin_init (plugin);
21
22   return ret;
23 }
24
25 /* Version number of package */
26 #define VERSION "0.0.1"
27 /* package name */
28 #define PACKAGE "Android ST-ERICSSON"
29
30
31 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
32     GST_VERSION_MINOR,
33     "audioflinger",
34     "Android audioflinger library for gstreamer",
35     plugin_init, VERSION, "LGPL", "libgstaudioflinger.so", "http://www.stericsson.com")
36