mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 15:18:21 +00:00
Remove some left over 0.10 references
This commit is contained in:
parent
a1cc9ea6a9
commit
3ee89d6e3c
5 changed files with 12 additions and 13 deletions
|
@ -157,11 +157,10 @@
|
||||||
* libraries to use the same mechanism for their automatic plugin
|
* libraries to use the same mechanism for their automatic plugin
|
||||||
* installation needs, or for the format to be changed should it turn
|
* installation needs, or for the format to be changed should it turn
|
||||||
* out to be insufficient.
|
* out to be insufficient.
|
||||||
* - plugin system version, e.g. "0.10"
|
* - plugin system version, e.g. "1.0"
|
||||||
* This is required so that when there is a GStreamer-0.12 or
|
* This is required so that when there is GStreamer-2.0 at some point
|
||||||
* GStreamer-1.0 at some point in future, the different major versions
|
* in future, the different major versions can still co-exist and use
|
||||||
* can still co-exist and use the same plugin install mechanism in the
|
* the same plugin install mechanism in the same way.
|
||||||
* same way.
|
|
||||||
* - application identifier, e.g. "totem"
|
* - application identifier, e.g. "totem"
|
||||||
* This may also be in the form of "pid/12345" if the program name
|
* This may also be in the form of "pid/12345" if the program name
|
||||||
* can't be obtained for some reason.
|
* can't be obtained for some reason.
|
||||||
|
@ -184,7 +183,7 @@
|
||||||
* - optional further fields not yet specified
|
* - optional further fields not yet specified
|
||||||
*
|
*
|
||||||
* An entire ID string might then look like this, for example: `
|
* An entire ID string might then look like this, for example: `
|
||||||
* gstreamer|0.10|totem|Vorbis audio decoder|decoder-audio/x-vorbis`
|
* gstreamer|1.0|totem|Vorbis audio decoder|decoder-audio/x-vorbis`
|
||||||
*
|
*
|
||||||
* Plugin installers parsing this ID string should expect further fields
|
* Plugin installers parsing this ID string should expect further fields
|
||||||
* also separated by '|' symbols and either ignore them, warn the user, or
|
* also separated by '|' symbols and either ignore them, warn the user, or
|
||||||
|
|
|
@ -42,8 +42,8 @@
|
||||||
* ## Linking to this library
|
* ## Linking to this library
|
||||||
*
|
*
|
||||||
* You should obtain the required CFLAGS and LIBS using pkg-config on the
|
* You should obtain the required CFLAGS and LIBS using pkg-config on the
|
||||||
* gstreamer-plugins-base-0.10 module. You will then also need to add
|
* gstreamer-plugins-base-1.0 module. You will then also need to add
|
||||||
* '-lgstpbutils-0.10' manually to your LIBS line.
|
* '-lgstreamer-pbutils-1.0' manually to your LIBS line.
|
||||||
*
|
*
|
||||||
* ## Library initialisation
|
* ## Library initialisation
|
||||||
*
|
*
|
||||||
|
|
|
@ -42,19 +42,19 @@ The RTP libraries
|
||||||
|
|
||||||
For 20ms mode :
|
For 20ms mode :
|
||||||
|
|
||||||
GST_DEBUG="basertpaudiopayload:5" gst-launch-0.10 fakesrc sizetype=2
|
GST_DEBUG="basertpaudiopayload:5" gst-launch-1.0 fakesrc sizetype=2
|
||||||
sizemax=114 datarate=1900 ! audio/x-iLBC, mode=20 ! rtpilbcpay
|
sizemax=114 datarate=1900 ! audio/x-iLBC, mode=20 ! rtpilbcpay
|
||||||
max-ptime="40000000" ! fakesink
|
max-ptime="40000000" ! fakesink
|
||||||
|
|
||||||
For 30ms mode :
|
For 30ms mode :
|
||||||
|
|
||||||
GST_DEBUG="basertpaudiopayload:5" gst-launch-0.10 fakesrc sizetype=2
|
GST_DEBUG="basertpaudiopayload:5" gst-launch-1.0 fakesrc sizetype=2
|
||||||
sizemax=150 datarate=1662 ! audio/x-iLBC, mode=30 ! rtpilbcpay
|
sizemax=150 datarate=1662 ! audio/x-iLBC, mode=30 ! rtpilbcpay
|
||||||
max-ptime="60000000" ! fakesink
|
max-ptime="60000000" ! fakesink
|
||||||
|
|
||||||
Here is an example using the uLaw payloader (sample based).
|
Here is an example using the uLaw payloader (sample based).
|
||||||
|
|
||||||
GST_DEBUG="basertpaudiopayload:5" gst-launch-0.10 fakesrc sizetype=2
|
GST_DEBUG="basertpaudiopayload:5" gst-launch-1.0 fakesrc sizetype=2
|
||||||
sizemax=150 datarate=8000 ! audio/x-mulaw ! rtppcmupay max-ptime="6000000" !
|
sizemax=150 datarate=8000 ! audio/x-mulaw ! rtppcmupay max-ptime="6000000" !
|
||||||
fakesink
|
fakesink
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* Produces a sweeping sprinkle of tones by dynamically adding and removing
|
* Produces a sweeping sprinkle of tones by dynamically adding and removing
|
||||||
* elements to adder.
|
* elements to adder.
|
||||||
*
|
*
|
||||||
* gcc `pkg-config --cflags --libs gstreamer-0.10` sprinkle2.c -osprinkle2
|
* gcc `pkg-config --cflags --libs gstreamer-1.0` sprinkle2.c -osprinkle2
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* Produces a sweeping sprinkle of tones by dynamically adding and removing
|
* Produces a sweeping sprinkle of tones by dynamically adding and removing
|
||||||
* elements to adder.
|
* elements to adder.
|
||||||
*
|
*
|
||||||
* gcc `pkg-config --cflags --libs gstreamer-0.10` sprinkle3.c -osprinkle3
|
* gcc `pkg-config --cflags --libs gstreamer-1.0` sprinkle3.c -osprinkle3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
|
|
Loading…
Reference in a new issue