Ejemplo n.º 1
0
static gboolean
gst_audioringbuffer_acquire (GstRingBuffer * buf, GstRingBufferSpec * spec)
{
  GstAudioSink *sink;
  GstAudioSinkClass *csink;
  gboolean result = FALSE;

  sink = GST_AUDIO_SINK (GST_OBJECT_PARENT (buf));
  csink = GST_AUDIO_SINK_GET_CLASS (sink);

  if (csink->prepare)
    result = csink->prepare (sink, spec);
  if (!result)
    goto could_not_prepare;

  /* set latency to one more segment as we need some headroom */
  spec->seglatency = spec->segtotal + 1;

  buf->data = gst_buffer_new_and_alloc (spec->segtotal * spec->segsize);
  memset (GST_BUFFER_DATA (buf->data), 0, GST_BUFFER_SIZE (buf->data));

  return TRUE;

  /* ERRORS */
could_not_prepare:
  {
    GST_DEBUG_OBJECT (sink, "could not prepare device");
    return FALSE;
  }
}
static gboolean
gst_audio_sink_ring_buffer_acquire (GstAudioRingBuffer * buf,
                                    GstAudioRingBufferSpec * spec)
{
    GstAudioSink *sink;
    GstAudioSinkClass *csink;
    gboolean result = FALSE;

    sink = GST_AUDIO_SINK (GST_OBJECT_PARENT (buf));
    csink = GST_AUDIO_SINK_GET_CLASS (sink);

    if (csink->prepare)
        result = csink->prepare (sink, spec);
    if (!result)
        goto could_not_prepare;

    /* set latency to one more segment as we need some headroom */
    spec->seglatency = spec->segtotal + 1;

    buf->size = spec->segtotal * spec->segsize;

    buf->memory = g_malloc (buf->size);

    if (buf->spec.type == GST_AUDIO_RING_BUFFER_FORMAT_TYPE_RAW) {
        gst_audio_format_fill_silence (buf->spec.info.finfo, buf->memory,
                                       buf->size);
    } else {
        /* FIXME, non-raw formats get 0 as the empty sample */
        memset (buf->memory, 0, buf->size);
    }


    return TRUE;

    /* ERRORS */
could_not_prepare:
    {
        GST_DEBUG_OBJECT (sink, "could not prepare device");
        return FALSE;
    }
}