Forgot to commit header file changes, Makefile.am changes. Oops.

Original commit message from CVS:
Forgot to commit header file changes, Makefile.am changes. Oops.
This commit is contained in:
Michael Smith 2005-11-21 17:52:15 +00:00
parent 41c068c533
commit e594bf3649
2 changed files with 6 additions and 1 deletions

View file

@ -2,7 +2,7 @@ plugin_LTLIBRARIES = libgstauparse.la
libgstauparse_la_SOURCES = gstauparse.c
libgstauparse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
libgstauparse_la_LIBADD = $(GST_LIBS)
libgstauparse_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
libgstauparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstauparse.h

View file

@ -23,6 +23,7 @@
#include <gst/gst.h>
#include <gst/base/gstadapter.h>
G_BEGIN_DECLS
@ -48,11 +49,15 @@ struct _GstAuParse {
guchar le;
glong offset;
glong buffer_offset;
gint sample_size;
glong size;
glong encoding;
glong frequency;
glong channels;
GstAdapter *adapter;
};
struct _GstAuParseClass {