mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +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_SOURCES = gstauparse.c
|
||||||
libgstauparse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
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)
|
libgstauparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstauparse.h
|
noinst_HEADERS = gstauparse.h
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
#include <gst/base/gstadapter.h>
|
||||||
|
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
@ -48,11 +49,15 @@ struct _GstAuParse {
|
||||||
|
|
||||||
guchar le;
|
guchar le;
|
||||||
glong offset;
|
glong offset;
|
||||||
|
glong buffer_offset;
|
||||||
|
gint sample_size;
|
||||||
glong size;
|
glong size;
|
||||||
glong encoding;
|
glong encoding;
|
||||||
glong frequency;
|
glong frequency;
|
||||||
glong channels;
|
glong channels;
|
||||||
|
|
||||||
|
GstAdapter *adapter;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstAuParseClass {
|
struct _GstAuParseClass {
|
||||||
|
|
Loading…
Reference in a new issue