diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-06-16 12:37:34 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-06-16 12:37:34 +0000 |
commit | 04c53e454a58dda4883afd5193e1b26933a2aae2 (patch) | |
tree | 6eb147fcae0a8a140e17f2d17c3e5590becbd028 | |
parent | ec6308ed5c587d517a7989102bceba5d6685c6c2 (diff) | |
download | gst-plugins-bad-04c53e454a58dda4883afd5193e1b26933a2aae2.tar.gz gst-plugins-bad-04c53e454a58dda4883afd5193e1b26933a2aae2.tar.bz2 gst-plugins-bad-04c53e454a58dda4883afd5193e1b26933a2aae2.zip |
sys/dvb/gstdvbsrc.c: Move docblob upwards. Balance tags and restore blank line.
Original commit message from CVS:
* sys/dvb/gstdvbsrc.c:
Move docblob upwards. Balance tags and restore blank line.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sys/dvb/gstdvbsrc.c | 39 |
2 files changed, 24 insertions, 20 deletions
@@ -1,3 +1,8 @@ +2008-06-16 Stefan Kost <ensonic@users.sf.net> + + * sys/dvb/gstdvbsrc.c: + Move docblob upwards. Balance tags and restore blank line. + 2008-06-16 Zaheer Abbas Merali <zaheerabbas at merali dot org> * sys/dvb/gstdvbsrc.c: diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c index ef0f992f..c6f5dbce 100644 --- a/sys/dvb/gstdvbsrc.c +++ b/sys/dvb/gstdvbsrc.c @@ -17,6 +17,25 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-dvbsrc + * + * dvbsrc can be used to capture video from DVB cards, DVB-T, DVB-S or DVB-T. + * + * <refsect2> + * <title>Example launch line</title> + * |[ + * gst-launch dvbsrc modulation="QAM 64" trans-mode=8k bandwidth=8MHz frequency=514000000 code-rate-lp=AUTO code-rate-hp=2/3 guard=4 hierarchy=0 ! flutsdemux crc-check=false name=demux ! queue max-size-buffers=0 max-size-time=0 ! flumpeg2vdec ! xvimagesink sync demux. ! queue max-size-buffers=0 max-size-time=0 ! flump3dec ! alsasink sync + * ]| Captures a full transport stream from dvb card 0 that is a DVB-T card at tuned frequency 514000000 with other parameters as seen in the + * pipeline and outputs the first tv program on the transport stream. + * |[ + * gst-launch dvbsrc modulation="QAM 64" trans-mode=8k bandwidth=8 frequency=514000000 code-rate-lp=AUTO code-rate-hp=2/3 guard=4 hierarchy=0 pids=256:257 ! flutsdemux crc-check=false name=demux es-pids=256:257 ! queue max-size-buffers=0 max-size-time=0 ! flumpeg2vdec ! xvimagesink demux. ! queue max-size-buffers=0 max-size-time=0 ! flump3dec ! alsasink + * ]| Captures a partial transport stream from dvb card 0 that is a DVB-T card for a program at tuned frequency 514000000 and pids of 256:257 with other parameters as seen in the pipeline and outputs the program with the pids 256 and 257. + * |[ + * gst-launch dvbsrc polarity="h" frequency=11302000 srate=27500 diseqc-src=0 pids=102:103 ! queue max-size-buffers=0 max-size-time=0 ! flumpeg2vdec ! xvimagesink demux. ! queue max-size-buffers=0 max-size-time=0 ! flump3dec ! alsasink + * ]| Captures a partial transport stream from dvb card 0 that is a DVB-S card for a program at tuned frequency 11302000 Hz, symbol rate of 27500 kHz and pids of 256:257 and outputs the program with the pids 256 and 257. + * </refsect2> + */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -58,26 +77,6 @@ static GstElementDetails dvbsrc_details = { "Zaheer Abbas Merali <zaheerabbas at merali dot org>" }; -/** - * SECTION:element-dvbsrc - * - * dvbsrc can be used to capture video from DVB cards, DVB-T, DVB-S or DVB-T. - * <refsect2> - * <title>Example launch line</title> - * |[ - * gst-launch dvbsrc modulation="QAM 64" trans-mode=8k bandwidth=8MHz frequency=514000000 code-rate-lp=AUTO code-rate-hp=2/3 guard=4 hierarchy=0 ! flutsdemux crc-check=false name=demux ! queue max-size-buffers=0 max-size-time=0 ! flumpeg2vdec ! xvimagesink sync demux. ! queue max-size-buffers=0 max-size-time=0 ! flump3dec ! alsasink sync - * ]| Captures a full transport stream from dvb card 0 that is a DVB-T card at tuned frequency 514000000 with other parameters as seen in the - * pipeline and outputs the first tv program on the transport stream. - * |[ - * gst-launch dvbsrc modulation="QAM 64" trans-mode=8k bandwidth=8 frequency=514000000 code-rate-lp=AUTO code-rate-hp=2/3 guard=4 hierarchy=0 pids=256:257 ! flutsdemux crc-check=false name=demux es-pids=256:257 ! queue max-size-buffers=0 max-size-time=0 ! flumpeg2vdec ! xvimagesink demux. ! queue max-size-buffers=0 max-size-time=0 ! flump3dec ! alsasink - * ]| Captures a partial transport stream from dvb card 0 that is a DVB-T card for a program at tuned frequency 514000000 and pids of 256:257 with other parameters as seen in the pipeline and outputs the program with the pids 256 and 257. - * |[ - * gst-launch dvbsrc polarity="h" frequency=11302000 srate=27500 diseqc-src=0 pids=102:103 ! queue max-size-buffers=0 max-size-time=0 ! flumpeg2vdec ! xvimagesink demux. ! queue max-size-buffers=0 max-size-time=0 ! flump3dec ! alsasink - * ]| Captures a partial transport stream from dvb card 0 that is a DVB-S card for a program at tuned frequency 11302000 Hz, symbol rate of 27500 kHz and pids of 256:257 and outputs the program with the pids 256 and 257. - * </para> - * </refsect2> - */ - /* Arguments */ enum { |