~ubuntu-branches/ubuntu/wily/bluez/wily

« back to all changes in this revision

Viewing changes to audio/gstsbcutil.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2008-10-07 12:10:29 UTC
  • Revision ID: james.westby@ubuntu.com-20081007121029-4gup4fmmh2vfo5nh
Tags: upstream-4.12
ImportĀ upstreamĀ versionĀ 4.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  BlueZ - Bluetooth protocol stack for Linux
 
4
 *
 
5
 *  Copyright (C) 2004-2008  Marcel Holtmann <marcel@holtmann.org>
 
6
 *
 
7
 *
 
8
 *  This library is free software; you can redistribute it and/or
 
9
 *  modify it under the terms of the GNU Lesser General Public
 
10
 *  License as published by the Free Software Foundation; either
 
11
 *  version 2.1 of the License, or (at your option) any later version.
 
12
 *
 
13
 *  This library is distributed in the hope that it will be useful,
 
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 *  Lesser General Public License for more details.
 
17
 *
 
18
 *  You should have received a copy of the GNU Lesser General Public
 
19
 *  License along with this library; if not, write to the Free Software
 
20
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
 *
 
22
 */
 
23
 
 
24
#include <gst/gst.h>
 
25
 
 
26
#include "sbc.h"
 
27
#include <string.h>
 
28
 
 
29
#define SBC_AM_AUTO 0x02
 
30
#define SBC_MODE_AUTO 0x04
 
31
 
 
32
gint gst_sbc_select_rate_from_list(const GValue *value);
 
33
 
 
34
gint gst_sbc_select_channels_from_range(const GValue *value);
 
35
 
 
36
gint gst_sbc_select_blocks_from_list(const GValue *value);
 
37
 
 
38
gint gst_sbc_select_subbands_from_list(const GValue *value);
 
39
 
 
40
gint gst_sbc_select_bitpool_from_range(const GValue *value);
 
41
 
 
42
gint gst_sbc_select_bitpool_from_range(const GValue *value);
 
43
 
 
44
const gchar *gst_sbc_get_allocation_from_list(const GValue *value);
 
45
 
 
46
const gchar *gst_sbc_get_mode_from_list(const GValue *value, gint channels);
 
47
 
 
48
gint gst_sbc_get_channel_number(gint mode);
 
49
gint gst_sbc_parse_rate_from_sbc(gint frequency);
 
50
gint gst_sbc_parse_rate_to_sbc(gint rate);
 
51
 
 
52
gint gst_sbc_parse_subbands_from_sbc(gint subbands);
 
53
gint gst_sbc_parse_subbands_to_sbc(gint subbands);
 
54
 
 
55
gint gst_sbc_parse_blocks_from_sbc(gint blocks);
 
56
gint gst_sbc_parse_blocks_to_sbc(gint blocks);
 
57
 
 
58
const gchar *gst_sbc_parse_mode_from_sbc(gint mode);
 
59
gint gst_sbc_parse_mode_to_sbc(const gchar *mode);
 
60
 
 
61
const gchar *gst_sbc_parse_allocation_from_sbc(gint alloc);
 
62
gint gst_sbc_parse_allocation_to_sbc(const gchar *allocation);
 
63
 
 
64
GstCaps* gst_sbc_parse_caps_from_sbc(sbc_t *sbc);
 
65
 
 
66
GstCaps* gst_sbc_util_caps_fixate(GstCaps *caps, gchar** error_message);
 
67
 
 
68
void gst_sbc_util_set_structure_int_param(GstStructure *structure,
 
69
                        const gchar* field, gint field_value,
 
70
                        GValue *value);
 
71
 
 
72
void gst_sbc_util_set_structure_string_param(GstStructure *structure,
 
73
                        const gchar* field, const gchar* field_value,
 
74
                        GValue *value);
 
75
 
 
76
gboolean gst_sbc_util_fill_sbc_params(sbc_t *sbc, GstCaps *caps);
 
77