From 1b3a96722356701b089f98f4512249276309c2ff Mon Sep 17 00:00:00 2001 From: Andreas Franek Date: Fri, 18 Mar 2016 18:02:19 +0100 Subject: [PATCH] Enable directly writing jpeg-encoded streams with GStreamer CvVideoWriter_GStreamer assumes a JPEG encoded stream if the height of the given frame size is 1. --- modules/videoio/src/cap_gstreamer.cpp | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/modules/videoio/src/cap_gstreamer.cpp b/modules/videoio/src/cap_gstreamer.cpp index 7c28529..76f57ad 100644 --- a/modules/videoio/src/cap_gstreamer.cpp +++ b/modules/videoio/src/cap_gstreamer.cpp @@ -1414,7 +1414,19 @@ bool CvVideoWriter_GStreamer::open( const char * filename, int fourcc, g_object_set(G_OBJECT(file), "location", filename, NULL); } - if (is_color) + if (fourcc == CV_FOURCC('M','J','P','G') && frameSize.height == 1) + { + input_pix_fmt = GST_VIDEO_FORMAT_ENCODED; +#if GST_VERSION_MAJOR > 0 + caps = gst_caps_new_simple("image/jpeg", + "framerate", GST_TYPE_FRACTION, int(fps), 1, + NULL); + caps = gst_caps_fixate(caps); +#else + CV_ERROR( CV_StsUnsupportedFormat, "Gstreamer 0.10 Opencv backend does not support writing encoded MJPEG data."); +#endif + } + else if(is_color) { input_pix_fmt = GST_VIDEO_FORMAT_BGR; bufsize = frameSize.width * frameSize.height * 3; @@ -1575,7 +1587,12 @@ bool CvVideoWriter_GStreamer::writeFrame( const IplImage * image ) handleMessage(pipeline); - if (input_pix_fmt == GST_VIDEO_FORMAT_BGR) { + if (input_pix_fmt == GST_VIDEO_FORMAT_ENCODED) { + if (image->nChannels != 1 || image->depth != IPL_DEPTH_8U || image->height != 1) { + CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs images with depth = IPL_DEPTH_8U, nChannels = 1 and height = 1."); + } + } + else if(input_pix_fmt == GST_VIDEO_FORMAT_BGR) { if (image->nChannels != 3 || image->depth != IPL_DEPTH_8U) { CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs images with depth = IPL_DEPTH_8U and nChannels = 3."); } -- 2.7.4