summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSho Amano <samano@xevo.com>2017-08-30 19:03:28 +0900
committerSho Amano <samano@xevo.com>2017-08-30 19:03:28 +0900
commit7f13c7214f13be75d715e05e0feab81d86de4d17 (patch)
tree5bf9dc2ffa7a2c03880e53fd5820a706b9e57193
parent018cde1cfe81535baab50e50cc084b4e47afda98 (diff)
downloadsdl_ios-7f13c7214f13be75d715e05e0feab81d86de4d17.tar.gz
Update comment about GStreamer pipeline
autovideosink doesn't work in some environments, replacing it with ximagesink.
-rw-r--r--SmartDeviceLink/SDLRTPH264Packetizer.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLRTPH264Packetizer.m b/SmartDeviceLink/SDLRTPH264Packetizer.m
index 9f01603ee..06fc645ad 100644
--- a/SmartDeviceLink/SDLRTPH264Packetizer.m
+++ b/SmartDeviceLink/SDLRTPH264Packetizer.m
@@ -12,7 +12,7 @@
* Assuming that "VideoStreamPort" is configured as 5050 in smartDeviceLink.ini, here is the
* GStreamer pipeline that receives the stream, decode it and render it:
*
- * $ gst-launch-1.0 souphttpsrc location=http://127.0.0.1:5050 ! "application/x-rtp-stream" ! rtpstreamdepay ! "application/x-rtp,media=(string)video,clock-rate=90000,encoding-name=(string)H264" ! rtph264depay ! "video/x-h264, stream-format=(string)avc, alignment=(string)au" ! avdec_h264 ! autovideosink sync=false
+ * $ gst-launch-1.0 souphttpsrc location=http://127.0.0.1:5050 ! "application/x-rtp-stream" ! rtpstreamdepay ! "application/x-rtp,media=(string)video,clock-rate=90000,encoding-name=(string)H264" ! rtph264depay ! "video/x-h264, stream-format=(string)avc, alignment=(string)au" ! avdec_h264 ! videoconvert ! ximagesink sync=false
*/
#import <Foundation/Foundation.h>