mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
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:
parent
41c068c533
commit
e594bf3649
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue