felipec gst-openmax: gst-openmax/omx/
[email protected] Mon, 8 Dec 2008 13:10:35 -0800 (PST)
| Newsgroups | gmane.comp.video.gstreamer.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVS Root: /cvs/gstreamer
Module: gst-openmax
Changes by: felipec
Date: Mon Dec 08 2008 21:10:35 UTC
Log message:
More specific caps for all audio elements.
Modified files:
omx : gstomx_aacdec.c gstomx_aacenc.c
gstomx_adpcmdec.c gstomx_adpcmenc.c
gstomx_amrnbdec.c gstomx_amrnbenc.c
gstomx_amrwbdec.c gstomx_amrwbenc.c
gstomx_g711dec.c gstomx_g711enc.c
gstomx_g729dec.c gstomx_g729enc.c
gstomx_ilbcdec.c gstomx_ilbcenc.c
gstomx_mp2dec.c gstomx_mp3dec.c gstomx_volume.c
gstomx_vorbisdec.c
Links:
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_aacdec.c.diff?r1=1.14&r2=1.15
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_aacenc.c.diff?r1=1.13&r2=1.14
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_adpcmdec.c.diff?r1=1.9&r2=1.10
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_adpcmenc.c.diff?r1=1.9&r2=1.10
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_amrnbdec.c.diff?r1=1.11&r2=1.12
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_amrnbenc.c.diff?r1=1.12&r2=1.13
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_amrwbdec.c.diff?r1=1.8&r2=1.9
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_amrwbenc.c.diff?r1=1.11&r2=1.12
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_g711dec.c.diff?r1=1.7&r2=1.8
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_g711enc.c.diff?r1=1.8&r2=1.9
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_g729dec.c.diff?r1=1.6&r2=1.7
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_g729enc.c.diff?r1=1.7&r2=1.8
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_ilbcdec.c.diff?r1=1.5&r2=1.6
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_ilbcenc.c.diff?r1=1.5&r2=1.6
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_mp2dec.c.diff?r1=1.1&r2=1.2
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_mp3dec.c.diff?r1=1.15&r2=1.16
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_volume.c.diff?r1=1.3&r2=1.4
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-openmax/omx/gstomx_vorbisdec.c.diff?r1=1.15&r2=1.16
====Begin Diffs====
Index: gstomx_aacdec.c
===================================================================
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_aacdec.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- gstomx_aacdec.c 15 Aug 2008 14:49:18 -0000 1.14
+++ gstomx_aacdec.c 8 Dec 2008 21:10:19 -0000 1.15
@@ -36,11 +36,11 @@
caps = gst_caps_new_simple ("audio/x-raw-int",
"endianness", G_TYPE_INT, G_BYTE_ORDER,
- "width", GST_TYPE_INT_RANGE, 8, 32,
- "depth", GST_TYPE_INT_RANGE, 8, 32,
- "rate", GST_TYPE_INT_RANGE, 8000, 48000,
+ "width", G_TYPE_INT, 16,
+ "depth", G_TYPE_INT, 16,
+ "rate", GST_TYPE_INT_RANGE, 8000, 96000,
"signed", G_TYPE_BOOLEAN, TRUE,
- "channels", GST_TYPE_INT_RANGE, 1, 8,
+ "channels", GST_TYPE_INT_RANGE, 1, 6,
NULL);
return caps;
@@ -56,8 +56,8 @@
struc = gst_structure_new ("audio/mpeg",
"mpegversion", G_TYPE_INT, 4,
- "rate", GST_TYPE_INT_RANGE, 8000, 48000,
- "channels", GST_TYPE_INT_RANGE, 1, 8,
+ "rate", GST_TYPE_INT_RANGE, 8000, 96000,
+ "channels", GST_TYPE_INT_RANGE, 1, 6,
NULL);
{
@@ -168,7 +168,7 @@
"depth", G_TYPE_INT, 16,
"rate", G_TYPE_INT, rate,
"signed", G_TYPE_BOOLEAN, TRUE,
- "endianness", G_TYPE_INT, G_BYTE_ORDER ? 1234 : 4321,
+ "endianness", G_TYPE_INT, G_BYTE_ORDER,
"channels", G_TYPE_INT, channels,
NULL);
Index: gstomx_aacenc.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_aacenc.c,v
retrieving revision 1.13
diff -u -d -r1.13 -r1.14
--- gstomx_aacenc.c 15 Aug 2008 14:49:18 -0000 1.13
+++ gstomx_aacenc.c 8 Dec 2008 21:10:19 -0000 1.14
@@ -48,8 +48,8 @@
@@ -85,11 +85,11 @@
Index: gstomx_adpcmdec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_adpcmdec.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- gstomx_adpcmdec.c 8 Dec 2008 21:09:38 -0000 1.9
+++ gstomx_adpcmdec.c 8 Dec 2008 21:10:19 -0000 1.10
"rate", GST_TYPE_INT_RANGE, 8000, 96000,
+ "channels", G_TYPE_INT, 1,
@@ -54,7 +54,7 @@
caps = gst_caps_new_simple ("audio/x-adpcm",
"layout", G_TYPE_STRING, "dvi",
Index: gstomx_adpcmenc.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_adpcmenc.c,v
--- gstomx_adpcmenc.c 8 Dec 2008 21:09:38 -0000 1.9
+++ gstomx_adpcmenc.c 8 Dec 2008 21:10:19 -0000 1.10
@@ -50,8 +50,8 @@
"channels", G_TYPE_INT, 1,
Index: gstomx_amrnbdec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_amrnbdec.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- gstomx_amrnbdec.c 20 Nov 2008 16:29:29 -0000 1.11
+++ gstomx_amrnbdec.c 8 Dec 2008 21:10:20 -0000 1.12
"rate", G_TYPE_INT, 8000,
@@ -53,7 +53,7 @@
caps = gst_caps_new_simple ("audio/AMR",
@@ -141,7 +141,7 @@
Index: gstomx_amrnbenc.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_amrnbenc.c,v
diff -u -d -r1.12 -r1.13
--- gstomx_amrnbenc.c 8 Dec 2008 21:06:09 -0000 1.12
+++ gstomx_amrnbenc.c 8 Dec 2008 21:10:20 -0000 1.13
@@ -43,7 +43,7 @@
GstCaps *caps;
@@ -57,11 +57,11 @@
Index: gstomx_amrwbdec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_amrwbdec.c,v
retrieving revision 1.8
diff -u -d -r1.8 -r1.9
--- gstomx_amrwbdec.c 20 Nov 2008 16:29:29 -0000 1.8
+++ gstomx_amrwbdec.c 8 Dec 2008 21:10:20 -0000 1.9
"rate", G_TYPE_INT, 16000,
caps = gst_caps_new_simple ("audio/AMR-WB",
Index: gstomx_amrwbenc.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_amrwbenc.c,v
--- gstomx_amrwbenc.c 8 Dec 2008 21:07:26 -0000 1.11
+++ gstomx_amrwbenc.c 8 Dec 2008 21:10:20 -0000 1.12
Index: gstomx_g711dec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_g711dec.c,v
retrieving revision 1.7
diff -u -d -r1.7 -r1.8
--- gstomx_g711dec.c 20 Nov 2008 17:12:13 -0000 1.7
+++ gstomx_g711dec.c 8 Dec 2008 21:10:20 -0000 1.8
@@ -37,8 +37,8 @@
Index: gstomx_g711enc.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_g711enc.c,v
--- gstomx_g711enc.c 20 Nov 2008 17:08:57 -0000 1.8
+++ gstomx_g711enc.c 8 Dec 2008 21:10:20 -0000 1.9
@@ -62,8 +62,8 @@
Index: gstomx_g729dec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_g729dec.c,v
retrieving revision 1.6
diff -u -d -r1.6 -r1.7
--- gstomx_g729dec.c 20 Nov 2008 16:48:41 -0000 1.6
+++ gstomx_g729dec.c 8 Dec 2008 21:10:20 -0000 1.7
@@ -34,8 +34,8 @@
Index: gstomx_g729enc.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_g729enc.c,v
--- gstomx_g729enc.c 20 Nov 2008 16:48:42 -0000 1.7
+++ gstomx_g729enc.c 8 Dec 2008 21:10:20 -0000 1.8
@@ -60,8 +60,8 @@
Index: gstomx_ilbcdec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_ilbcdec.c,v
retrieving revision 1.5
diff -u -d -r1.5 -r1.6
--- gstomx_ilbcdec.c 20 Nov 2008 17:15:19 -0000 1.5
+++ gstomx_ilbcdec.c 8 Dec 2008 21:10:20 -0000 1.6
Index: gstomx_ilbcenc.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_ilbcenc.c,v
--- gstomx_ilbcenc.c 20 Nov 2008 17:15:19 -0000 1.5
+++ gstomx_ilbcenc.c 8 Dec 2008 21:10:20 -0000 1.6
@@ -71,8 +71,8 @@
Index: gstomx_mp2dec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_mp2dec.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gstomx_mp2dec.c 20 Nov 2008 16:11:18 -0000 1.1
+++ gstomx_mp2dec.c 8 Dec 2008 21:10:20 -0000 1.2
+ "channels", GST_TYPE_INT_RANGE, 1, 2,
@@ -54,8 +54,8 @@
caps = gst_caps_new_simple ("audio/mpeg",
"mpegversion", G_TYPE_INT, 1,
"layer", G_TYPE_INT, 2,
"parsed", G_TYPE_BOOLEAN, TRUE,
@@ -150,7 +150,7 @@
Index: gstomx_mp3dec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_mp3dec.c,v
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- gstomx_mp3dec.c 20 Nov 2008 16:11:18 -0000 1.15
+++ gstomx_mp3dec.c 8 Dec 2008 21:10:21 -0000 1.16
Index: gstomx_volume.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_volume.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gstomx_volume.c 15 Aug 2008 14:43:17 -0000 1.3
+++ gstomx_volume.c 8 Dec 2008 21:10:21 -0000 1.4
@@ -38,8 +38,8 @@
"rate", GST_TYPE_INT_RANGE, 8000, 48000,
"channels", GST_TYPE_INT_RANGE, 1, 8,
@@ -55,8 +55,8 @@
@@ -155,7 +155,7 @@
Index: gstomx_vorbisdec.c
RCS file: /cvs/gstreamer/gst-openmax/omx/gstomx_vorbisdec.c,v
--- gstomx_vorbisdec.c 15 Aug 2008 14:49:21 -0000 1.15
+++ gstomx_vorbisdec.c 8 Dec 2008 21:10:21 -0000 1.16
@@ -35,12 +35,12 @@
GstCaps *caps = NULL;
- "endianness", G_TYPE_INT, G_BYTE_ORDER ? 1234 : 4321,
+ "endianness", G_TYPE_INT, G_BYTE_ORDER,
+ "channels", GST_TYPE_INT_RANGE, 1, 256,
@@ -138,7 +138,7 @@
"width", G_TYPE_INT, 16,
------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you. Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/