summaryrefslogtreecommitdiffstats
path: root/src/polyputil.c
blob: d1bbbc4683c5eb25d8a6f920f884fc7b19507d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* $Id$ */

/***
  This file is part of gst-polyp.
 
  gst-polyp is free software; you can redistribute it and/or modify
  it under the terms of the GNU Lesser General Public License as
  published by the Free Software Foundation; either version 2.1 of the
  License, or (at your option) any later version.
 
  gst-polyp is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  Lesser General Public License for more details.
 
  You should have received a copy of the GNU Lesser General Public
  License along with gst-polyp; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  USA.
***/

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "polyputil.h"

gboolean gst_polyp_fill_sample_spec(GstRingBufferSpec *spec, pa_sample_spec *ss) {

    if (spec->format == GST_MU_LAW && spec->width == 8)
        ss->format = PA_SAMPLE_ULAW;
    else if (spec->format == GST_A_LAW && spec->width == 8)
        ss->format = PA_SAMPLE_ALAW;
    else if (spec->format == GST_U8 && spec->width == 8)
        ss->format = PA_SAMPLE_U8;
    else if (spec->format == GST_S16_LE && spec->width == 16)
        ss->format = PA_SAMPLE_S16LE;
    else if (spec->format == GST_S16_BE && spec->width == 16)
        ss->format = PA_SAMPLE_S16BE;
    else if (spec->format == GST_FLOAT32_LE && spec->width == 32)
        ss->format = PA_SAMPLE_FLOAT32LE;
    else if (spec->format == GST_FLOAT32_BE && spec->width == 32)
        ss->format = PA_SAMPLE_FLOAT32BE;
    else
        return FALSE;

    ss->channels = spec->channels;
    ss->rate = spec->rate;

    if (!pa_sample_spec_valid(ss))
        return FALSE;

    return TRUE;
}

gchar *gst_polyp_client_name(void) {
    gchar buf[PATH_MAX];
    
    /* Dirty import form polyplib */
    char *pa_get_binary_name(char *s, size_t l);
    char *pa_path_get_filename(const char *p);

    if (pa_get_binary_name(buf, sizeof(buf)))
        return g_strdup_printf("gstreamer[%s]", pa_path_get_filename(buf));
    else
        return g_strdup("gstreamer");
}