mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-11 19:06:33 +00:00
avauddec: fix remaining warnings
https://bugzilla.gnome.org/show_bug.cgi?id=792900
This commit is contained in:
parent
6243197c82
commit
066acfa922
1 changed files with 3 additions and 1 deletions
|
@ -19,6 +19,8 @@
|
||||||
#ifndef __GST_FFMPEGAUDDEC_H__
|
#ifndef __GST_FFMPEGAUDDEC_H__
|
||||||
#define __GST_FFMPEGAUDDEC_H__
|
#define __GST_FFMPEGAUDDEC_H__
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
@ -37,7 +39,7 @@ struct _GstFFMpegAudDec
|
||||||
AVFrame *frame;
|
AVFrame *frame;
|
||||||
|
|
||||||
guint8 *padded;
|
guint8 *padded;
|
||||||
guint padded_size;
|
gint padded_size;
|
||||||
|
|
||||||
/* prevent reopening the decoder on GST_EVENT_CAPS when caps are same as last time. */
|
/* prevent reopening the decoder on GST_EVENT_CAPS when caps are same as last time. */
|
||||||
GstCaps *last_caps;
|
GstCaps *last_caps;
|
||||||
|
|
Loading…
Reference in a new issue