2004-03-31 21:49:19 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
/* Element-Checklist-Version: 5 */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_audioscale_expand_value (GValue * dest, const GValue * src)
|
|
|
|
{
|
|
|
|
int rate_min, rate_max;
|
|
|
|
|
|
|
|
if (G_VALUE_TYPE (src) == G_TYPE_INT ||
|
|
|
|
G_VALUE_TYPE (src) == GST_TYPE_INT_RANGE) {
|
|
|
|
if (G_VALUE_TYPE (src) == G_TYPE_INT) {
|
|
|
|
rate_min = g_value_get_int (src);
|
|
|
|
rate_max = rate_min;
|
|
|
|
} else {
|
|
|
|
rate_min = gst_value_get_int_range_min (src);
|
|
|
|
rate_max = gst_value_get_int_range_max (src);
|
|
|
|
}
|
|
|
|
|
|
|
|
rate_min /= 2;
|
|
|
|
if (rate_min < 1)
|
|
|
|
rate_min = 1;
|
|
|
|
if (rate_max < G_MAXINT / 2) {
|
|
|
|
rate_max *= 2;
|
|
|
|
} else {
|
|
|
|
rate_max = G_MAXINT;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_value_init (dest, GST_TYPE_INT_RANGE);
|
|
|
|
gst_value_set_int_range (dest, rate_min, rate_max);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_VALUE_TYPE (src) == GST_TYPE_LIST) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
g_value_init (dest, GST_TYPE_LIST);
|
|
|
|
for (i = 0; i < gst_value_list_get_size (src); i++) {
|
|
|
|
const GValue *s = gst_value_list_get_value (src, i);
|
|
|
|
GValue d = { 0 };
|
|
|
|
int j;
|
|
|
|
|
|
|
|
gst_audioscale_expand_value (&d, s);
|
|
|
|
|
|
|
|
for (j = 0; j < gst_value_list_get_size (dest); j++) {
|
|
|
|
const GValue *s2 = gst_value_list_get_value (dest, j);
|
|
|
|
GValue d2 = { 0 };
|
|
|
|
|
|
|
|
gst_value_union (&d2, &d, s2);
|
|
|
|
if (G_VALUE_TYPE (&d2) == GST_TYPE_INT_RANGE) {
|
|
|
|
g_value_unset ((GValue *) s2);
|
|
|
|
gst_value_init_and_copy ((GValue *) s2, &d2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
g_value_unset (&d2);
|
|
|
|
}
|
|
|
|
if (j == gst_value_list_get_size (dest)) {
|
|
|
|
gst_value_list_append_value (dest, &d);
|
|
|
|
}
|
|
|
|
g_value_unset (&d);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gst_value_list_get_size (dest) == 1) {
|
|
|
|
const GValue *s = gst_value_list_get_value (dest, 0);
|
|
|
|
GValue d = { 0 };
|
|
|
|
|
|
|
|
gst_value_init_and_copy (&d, s);
|
|
|
|
g_value_unset (dest);
|
|
|
|
gst_value_init_and_copy (dest, &d);
|
|
|
|
g_value_unset (&d);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_ERROR ("unexpected value type");
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
gst_audioscale_getcaps (const GstCaps * othercaps)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
caps = gst_caps_copy (othercaps);
|
|
|
|
|
|
|
|
/* we do this hack, because the audioscale lib doesn't handle
|
|
|
|
* rate conversions larger than a factor of 2 */
|
|
|
|
for (i = 0; i < gst_caps_get_size (caps); i++) {
|
|
|
|
GstStructure *structure = gst_caps_get_structure (caps, i);
|
|
|
|
const GValue *value;
|
|
|
|
GValue dest = { 0 };
|
|
|
|
|
|
|
|
value = gst_structure_get_value (structure, "rate");
|
|
|
|
if (value == NULL) {
|
|
|
|
GST_ERROR ("caps structure doesn't have required rate field");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_audioscale_expand_value (&dest, value);
|
|
|
|
|
|
|
|
gst_structure_set_value (structure, "rate", &dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
test_caps (const char *s)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstCaps *caps2;
|
|
|
|
char *s2;
|
|
|
|
|
|
|
|
caps = gst_caps_from_string (s);
|
|
|
|
caps2 = gst_audioscale_getcaps (caps);
|
|
|
|
s2 = gst_caps_to_string (caps2);
|
|
|
|
|
|
|
|
g_print ("original: %s\nfiltered: %s\n\n", s, s2);
|
|
|
|
|
|
|
|
g_free (s2);
|
testsuite/caps/value_serialize.c: merge from HEAD.
Original commit message from CVS:
2005-02-10 Andy Wingo <wingo@pobox.com>
* testsuite/caps/value_serialize.c: merge from HEAD.
* testsuite/caps/subtract.c:
* testsuite/caps/filtercaps.c:
* testsuite/caps/enumcaps.c:
* testsuite/caps/deserialize.c:
* testsuite/caps/caps.c:
* testsuite/caps/audioscale.c: Unref caps, not free.
* testsuite/caps/caps_strings: Merged from HEAD.
* gst/elements/gstidentity.c (gst_identity_proxy_getcaps): Getcaps
implementation for identity.
* gst/gststructure.h
* gst/gststructure.c
(gst_caps_structure_fixate_field_nearest_double):
(gst_caps_structure_fixate_field_nearest_int): Moved from
gstcaps.c because we need the private IS_MUTABLE macro.
(IS_MUTABLE): New macro, determines if a
structure is mutable or not.
(gst_structure_free): Don't allow free while holding a pointer to
a parent's refcount.
(gst_structure_set_name): Check for writability.
(gst_structure_id_set_value): Same.
(gst_structure_set_value): Same.
(gst_structure_set_valist): Same.
(gst_structure_remove_field): Same.
(gst_structure_remove_all_fields): Same.
(gst_structure_map_in_place): New routine, like _foreach but
allows the function to mutate the value (via a non-const
prototype). Check for writability.
(gst_structure_foreach): Redefine to only take non-mutating
functions.
* gst/gstcaps.c (IS_WRITABLE): New macro, returns TRUE if the caps
are writable.
(gst_caps_copy): Add some docs about mutability, etc.
(_gst_caps_free): Set the parent refcount pointer on structures to
NULL before freeing them.
(gst_caps_ref): Document.
(gst_caps_make_writable): Doc.
(gst_caps_make_writable): Changed to make_writable, get_writable
sounds too much like retrieving a property.
(gst_caps_copy_1): Removed, not very useful.
(gst_caps_ref_by_count): Removed, no need to have something GLib
doesn't.
(gst_caps_copy_conditional): Ref instead of copying.
(gst_static_caps_get): Retain a reference to the returned caps, so
that the static caps will remain immutable.
(gst_caps_remove_and_get_structure): Set the parent refcount to
NULL when removing the structure.
(gst_caps_append): Fix to work with structure parent refcounts.
Check for writability.
(gst_caps_append_structure): Check for writability, work with
parent refcounts.
(gst_caps_remove_structure): Check for writability.
(gst_caps_set_simple): Check for writability.
(gst_caps_set_simple_valist): Check for writability.
(gst_caps_is_fixed_foreach): Update for non-mutating foreach.
(gst_structure_is_equal_foreach): Same.
(gst_caps_structure_intersect_field): Same.
(gst_caps_structure_subtract_field): Same. Make static.
(gst_caps_normalize_foreach): Same.
(gst_caps_structure_figure_out_union): Same.
(gst_caps_switch_structures): New static function, switches out
structures inside a caps, taking care of parent_refcount setting.
* gst/gstpad.c (gst_pad_get_allowed_caps): Remove the restriction
on only src pads, wim von masterhack claims it was bogus.
* testsuite/caps/Makefile.am
* testsuite/caps/app_fixate.c: Removed app_fixate test, things are
done a bit differently in THREADED.
2005-02-10 19:40:23 +00:00
|
|
|
gst_caps_unref (caps);
|
|
|
|
gst_caps_unref (caps2);
|
2004-03-31 21:49:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int)1");
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int)10");
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int)100");
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int)10000");
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int)2000000000");
|
|
|
|
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int)[1,100]");
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int)[1000,40000]");
|
|
|
|
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int){1,100}");
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int){100,200,300}");
|
|
|
|
test_caps ("audio/x-raw-int, rate=(int){[100,200],1000}");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|