After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 458274 - gst-launch manual page: Network Streaming example broken
gst-launch manual page: Network Streaming example broken
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: documentation
0.10.x
Other Linux
: Normal normal
: 0.10.15
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2007-07-19 11:58 UTC by Jordi Jaen Pallares
Modified: 2007-08-20 17:51 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jordi Jaen Pallares 2007-07-19 11:58:39 UTC
In the man page for gst-launch there is an example for network streaming with RTP. These are the pipelines:

$ gst-launch v4l2src ! video/x-raw-yuv,width=128,height=96,format='(fourcc)'UYVY ! ffenc_h263 ! video/x-h263 ! rtph263ppay pt=96 ! udpsink host=192.168.1.1 port=5000 sync=false

$ gst-launch  udpsrc port=5000 ! application/x-rtp, clock-rate=90000,payload=96 ! rtph263pdepay queue-delay=0 ! ffdec_h263 ! xvimagesink

It seems to be a mismatch between h263 and h263p encoder/decoder payloader/depayloader.
Comment 1 Wim Taymans 2007-08-20 17:51:15 UTC
It actually is fine. rtph263ppay can also payload plain H263 encoded data. ffdec_h263 is actually both an H263 and H263+ decoder as the latter is a superset of the former.

There should be a colorspace converter before the encoder, though.

        * tools/gst-launch.1.in:
        Add colorspace to example pipeline. Fixes #458274.