amrwbdec

amrwbdec — Adaptive Multi-Rate Wideband audio decoder

Synopsis

                    GstAmrwbDec;

Description

AMR wideband decoder based on the opencore codec implementation.

Example launch line

1
gst-launch filesrc location=abc.amr ! amrparse ! amrwbdec ! audioresample ! audioconvert ! alsasink

Details

GstAmrwbDec

typedef struct {
  GstElement element;

  /* pads */
  GstPad *sinkpad, *srcpad;
  guint64 ts;

  GstAdapter *adapter;

  /* library handle */
  void *handle;

  /* output settings */
  gint channels, rate;
  gint duration;

  GstSegment        segment;
  gboolean          discont;
} GstAmrwbDec;

Opaque data structure.

See Also

GstAmrwbEnc