mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
amrnbec, mad: fix two more parse function declarations
This commit is contained in:
parent
3734d90ce6
commit
8426bd88c2
2 changed files with 4 additions and 4 deletions
|
@ -96,8 +96,8 @@ static void gst_amrnbdec_get_property (GObject * object, guint prop_id,
|
|||
static gboolean gst_amrnbdec_start (GstAudioDecoder * dec);
|
||||
static gboolean gst_amrnbdec_stop (GstAudioDecoder * dec);
|
||||
static gboolean gst_amrnbdec_set_format (GstAudioDecoder * dec, GstCaps * caps);
|
||||
static gboolean gst_amrnbdec_parse (GstAudioDecoder * dec, GstAdapter * adapter,
|
||||
gint * offset, gint * length);
|
||||
static GstFlowReturn gst_amrnbdec_parse (GstAudioDecoder * dec,
|
||||
GstAdapter * adapter, gint * offset, gint * length);
|
||||
static GstFlowReturn gst_amrnbdec_handle_frame (GstAudioDecoder * dec,
|
||||
GstBuffer * buffer);
|
||||
|
||||
|
|
|
@ -85,8 +85,8 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
|
||||
static gboolean gst_mad_start (GstAudioDecoder * dec);
|
||||
static gboolean gst_mad_stop (GstAudioDecoder * dec);
|
||||
static gboolean gst_mad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
|
||||
gint * offset, gint * length);
|
||||
static GstFlowReturn gst_mad_parse (GstAudioDecoder * dec,
|
||||
GstAdapter * adapter, gint * offset, gint * length);
|
||||
static GstFlowReturn gst_mad_handle_frame (GstAudioDecoder * dec,
|
||||
GstBuffer * buffer);
|
||||
static void gst_mad_flush (GstAudioDecoder * dec, gboolean hard);
|
||||
|
|
Loading…
Reference in a new issue