cap_gstreamer.cpp 57.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                        Intel License Agreement
//                For Open Source Computer Vision Library
//
13
// Copyright (C) 2008, 2011, Nils Hasler, all rights reserved.
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//
//   * The name of Intel Corporation may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/

42 43 44 45 46 47 48 49
/*!
 * \file cap_gstreamer.cpp
 * \author Nils Hasler <hasler@mpi-inf.mpg.de>
 *         Max-Planck-Institut Informatik
 * \author Dirk Van Haerenborgh <vhdirk@gmail.com>
 *
 * \brief Use GStreamer to read/write video
 */
50
#include "precomp.hpp"
Dan's avatar
Dan committed
51
#ifndef _MSC_VER
52
#include <unistd.h>
Dan's avatar
Dan committed
53
#endif
54 55
#include <string.h>
#include <gst/gst.h>
56
#include <gst/gstbuffer.h>
57 58 59 60
#include <gst/video/video.h>
#include <gst/app/gstappsink.h>
#include <gst/app/gstappsrc.h>
#include <gst/riff/riff-media.h>
61
#include <gst/pbutils/missing-plugins.h>
62 63 64 65 66 67

#define VERSION_NUM(major, minor, micro) (major * 1000000 + minor * 1000 + micro)
#define FULL_GST_VERSION VERSION_NUM(GST_VERSION_MAJOR, GST_VERSION_MINOR, GST_VERSION_MICRO)

#if FULL_GST_VERSION >= VERSION_NUM(0,10,32)
#include <gst/pbutils/encoding-profile.h>
68
//#include <gst/base/gsttypefindhelper.h>
69
#endif
70

71 72 73 74 75 76 77

#ifdef NDEBUG
#define CV_WARN(message)
#else
#define CV_WARN(message) fprintf(stderr, "warning: %s (%s:%d)\n", message, __FILE__, __LINE__)
#endif

78
#if GST_VERSION_MAJOR == 0
79
#define COLOR_ELEM "ffmpegcolorspace"
80
#define COLOR_ELEM_NAME "ffmpegcsp"
81
#else
82
#define COLOR_ELEM "videoconvert"
83
#define COLOR_ELEM_NAME COLOR_ELEM
84 85
#endif

Dan's avatar
Dan committed
86
#if defined(_WIN32) || defined(_WIN64)
87 88 89 90 91 92
#if defined(__MINGW32__)
inline char *realpath(const char *path, char *resolved_path)
{
    return _fullpath(resolved_path,path,PATH_MAX);
}
#endif
Dan's avatar
Dan committed
93 94 95 96 97 98 99
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#include <sys/stat.h>
#endif

100 101 102 103
void toFraction(double decimal, double &numerator, double &denominator);
void handleMessage(GstElement * pipeline);


104 105
static cv::Mutex gst_initializer_mutex;

106 107 108
/*!
 * \brief The gst_initializer class
 * Initializes gstreamer once in the whole process
109 110
 */
class gst_initializer
111 112 113 114 115 116 117 118 119 120 121 122
{
public:
    static void init()
    {
        gst_initializer_mutex.lock();
        static gst_initializer init;
        gst_initializer_mutex.unlock();
    }
private:
    gst_initializer()
    {
        gst_init(NULL, NULL);
123 124
//        gst_debug_set_active(1);
//        gst_debug_set_colored(1);
125
//        gst_debug_set_default_threshold(GST_LEVEL_INFO);
126 127 128
    }
};

129 130 131 132
/*!
 * \brief The CvCapture_GStreamer class
 * Use GStreamer to capture video
 */
133 134 135 136 137 138 139 140 141
class CvCapture_GStreamer : public CvCapture
{
public:
    CvCapture_GStreamer() { init(); }
    virtual ~CvCapture_GStreamer() { close(); }

    virtual bool open( int type, const char* filename );
    virtual void close();

142
    virtual double getProperty(int) const;
143 144 145 146
    virtual bool setProperty(int, double);
    virtual bool grabFrame();
    virtual IplImage* retrieveFrame(int);

147
protected:
148
    void init();
149
    bool reopen();
150 151 152
    bool isPipelinePlaying();
    void startPipeline();
    void stopPipeline();
153
    void restartPipeline();
154
    void setFilter(const char* prop, int type, int v1, int v2 = 0);
155
    void removeFilter(const char *filter);
156 157 158 159 160
    static void newPad(GstElement *myelement,
                       GstPad     *pad,
                       gpointer    data);
    GstElement*   pipeline;
    GstElement*   uridecodebin;
161
    GstElement*   v4l2src;
162 163 164 165 166 167 168 169
    GstElement*   color;
    GstElement*   sink;
#if GST_VERSION_MAJOR > 0
    GstSample*    sample;
#endif
    GstBuffer*    buffer;
    GstCaps*      caps;
    IplImage*     frame;
170
    gint64        duration;
171 172 173
    gint          width;
    gint          height;
    double        fps;
174 175 176 177

    bool          isPosFramesSupported;
    bool          isPosFramesEmulated;
    gint64        emulatedFrameNumber;
178 179

    bool          isOutputByteBuffer;
180
};
181

182 183 184 185
/*!
 * \brief CvCapture_GStreamer::init
 * inits the class
 */
186 187
void CvCapture_GStreamer::init()
{
188
    pipeline = NULL;
189
    uridecodebin = NULL;
190
    v4l2src = NULL;
191 192
    color = NULL;
    sink = NULL;
193 194 195
#if GST_VERSION_MAJOR > 0
    sample = NULL;
#endif
196 197 198
    buffer = NULL;
    caps = NULL;
    frame = NULL;
199
    duration = -1;
200 201 202
    width = -1;
    height = -1;
    fps = -1;
203 204 205 206

    isPosFramesSupported = false;
    isPosFramesEmulated = false;
    emulatedFrameNumber = -1;
207 208

    isOutputByteBuffer = false;
209 210
}

211 212 213 214 215
/*!
 * \brief CvCapture_GStreamer::close
 * Closes the pipeline and destroys all instances
 */
void CvCapture_GStreamer::close()
216
{
217 218
    if (isPipelinePlaying())
        this->stopPipeline();
219

220 221 222
    if(pipeline) {
        gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_NULL);
        gst_object_unref(GST_OBJECT(pipeline));
223
        pipeline = NULL;
224
    }
225

226
    duration = -1;
227 228 229
    width = -1;
    height = -1;
    fps = -1;
230 231 232
    isPosFramesSupported = false;
    isPosFramesEmulated = false;
    emulatedFrameNumber = -1;
233 234
}

235 236 237 238 239 240
/*!
 * \brief CvCapture_GStreamer::grabFrame
 * \return
 * Grabs a sample from the pipeline, awaiting consumation by retreiveFrame.
 * The pipeline is started if it was not running yet
 */
241 242
bool CvCapture_GStreamer::grabFrame()
{
243 244
    if(!pipeline)
        return false;
245

246 247 248 249 250
    // start the pipeline if it was not in playing state yet
    if(!this->isPipelinePlaying())
        this->startPipeline();

    // bail out if EOS
251
    if(gst_app_sink_is_eos(GST_APP_SINK(sink)))
252 253
        return false;

254
#if GST_VERSION_MAJOR == 0
255 256
    if(buffer)
        gst_buffer_unref(buffer);
257

258
    buffer = gst_app_sink_pull_buffer(GST_APP_SINK(sink));
259 260 261 262 263 264 265 266 267 268 269 270
#else
    if(sample)
        gst_sample_unref(sample);

    sample = gst_app_sink_pull_sample(GST_APP_SINK(sink));

    if(!sample)
        return false;

    buffer = gst_sample_get_buffer(sample);
#endif

271 272
    if(!buffer)
        return false;
273

274 275 276
    if (isPosFramesEmulated)
        emulatedFrameNumber++;

277
    return true;
278 279
}

280 281 282 283 284
/*!
 * \brief CvCapture_GStreamer::retrieveFrame
 * \return IplImage pointer. [Transfer Full]
 *  Retreive the previously grabbed buffer, and wrap it in an IPLImage structure
 */
285 286
IplImage * CvCapture_GStreamer::retrieveFrame(int)
{
287
    if(!buffer)
288
        return 0;
289

290 291 292 293
    //construct a frame header if we did not have any yet
    if(!frame)
    {
#if GST_VERSION_MAJOR == 0
294
        GstCaps* buffer_caps = gst_buffer_get_caps(buffer);
295
#else
296
        GstCaps* buffer_caps = gst_sample_get_caps(sample);
297 298 299 300 301 302
#endif
        // bail out in no caps
        assert(gst_caps_get_size(buffer_caps) == 1);
        GstStructure* structure = gst_caps_get_structure(buffer_caps, 0);

        // bail out if width or height are 0
303
        if(!gst_structure_get_int(structure, "width", &width) ||
304 305
                !gst_structure_get_int(structure, "height", &height))
        {
306
            gst_caps_unref(buffer_caps);
307 308 309 310
            return 0;
        }

        int depth = 3;
311 312
        bool height_extend = false;

313 314 315 316 317
#if GST_VERSION_MAJOR > 0
        depth = 0;
        const gchar* name = gst_structure_get_name(structure);
        const gchar* format = gst_structure_get_string(structure, "format");

318
        if (!name)
319
            return 0;
320

321
        // we support 11 types of data:
322 323
        //     video/x-raw, format=BGR   -> 8bit, 3 channels
        //     video/x-raw, format=GRAY8 -> 8bit, 1 channel
324 325 326 327 328 329 330
        //     video/x-raw, format=UYVY  -> 8bit, 2 channel
        //     video/x-raw, format=YUY2  -> 8bit, 2 channel
        //     video/x-raw, format=YVYU  -> 8bit, 2 channel
        //     video/x-raw, format=NV12  -> 8bit, 1 channel (height is 1.5x larger than true height)
        //     video/x-raw, format=NV21  -> 8bit, 1 channel (height is 1.5x larger than true height)
        //     video/x-raw, format=YV12  -> 8bit, 1 channel (height is 1.5x larger than true height)
        //     video/x-raw, format=I420  -> 8bit, 1 channel (height is 1.5x larger than true height)
331
        //     video/x-bayer             -> 8bit, 1 channel
332
        //     image/jpeg                -> 8bit, mjpeg: buffer_size x 1 x 1
333 334 335 336 337
        // bayer data is never decoded, the user is responsible for that
        // everything is 8 bit, so we just test the caps for bit depth

        if (strcasecmp(name, "video/x-raw") == 0)
        {
338 339 340
            if (!format)
                return 0;

341 342 343
            if (strcasecmp(format, "BGR") == 0) {
                depth = 3;
            }
344 345 346 347 348 349 350
            else if( (strcasecmp(format, "UYVY") == 0) || (strcasecmp(format, "YUY2") == 0) || (strcasecmp(format, "YVYU") == 0) ){
                depth = 2;
            }
            else if( (strcasecmp(format, "NV12") == 0) || (strcasecmp(format, "NV21") == 0) || (strcasecmp(format, "YV12") == 0) || (strcasecmp(format, "I420") == 0) ){
                depth = 1;
                height_extend = true;
            }
351 352 353 354 355 356 357
            else if(strcasecmp(format, "GRAY8") == 0){
                depth = 1;
            }
        }
        else if (strcasecmp(name, "video/x-bayer") == 0)
        {
            depth = 1;
358 359 360
        } else if(strcasecmp(name, "image/jpeg") == 0) {
            depth = 1;
            // the correct size will be set once the first frame arrives
361
            isOutputByteBuffer = true;
362 363 364
        }
#endif
        if (depth > 0) {
365 366 367 368 369
            if(height_extend){
                frame = cvCreateImageHeader(cvSize(width, height*3/2), IPL_DEPTH_8U, depth);
            }else{
                frame = cvCreateImageHeader(cvSize(width, height), IPL_DEPTH_8U, depth);
            }
370 371
        } else {
            gst_caps_unref(buffer_caps);
372 373
            return 0;
        }
374 375

        gst_caps_unref(buffer_caps);
376
    }
377

378 379 380
    // gstreamer expects us to handle the memory at this point
    // so we can just wrap the raw buffer and be done with it
#if GST_VERSION_MAJOR == 0
381
    frame->imageData = (char *)GST_BUFFER_DATA(buffer);
382
#else
383 384 385
    // info.data ptr is valid until next grabFrame where the associated sample is unref'd
    GstMapInfo info = GstMapInfo();
    gboolean success = gst_buffer_map(buffer,&info, (GstMapFlags)GST_MAP_READ);
386 387

    // with MJPEG streams frame size can change arbitrarily
388 389
    if (isOutputByteBuffer && (size_t)info.size != (size_t)frame->imageSize)
    {
390 391 392 393
        cvReleaseImageHeader(&frame);
        frame = cvCreateImageHeader(cvSize(info.size, 1), IPL_DEPTH_8U, 1);
    }

394 395 396 397 398
    if (!success){
        //something weird went wrong here. abort. abort.
        //fprintf(stderr,"GStreamer: unable to map buffer");
        return 0;
    }
399 400
    frame->imageData = (char*)info.data;
    gst_buffer_unmap(buffer,&info);
401 402
#endif

403
    return frame;
404 405
}

406 407 408 409 410 411

/*!
 * \brief CvCapture_GStreamer::isPipelinePlaying
 * \return if the pipeline is currently playing.
 */
bool CvCapture_GStreamer::isPipelinePlaying()
412
{
413 414 415 416 417
    GstState current, pending;
    GstClockTime timeout = 5*GST_SECOND;
    if(!GST_IS_ELEMENT(pipeline)){
        return false;
    }
418

419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
    GstStateChangeReturn ret = gst_element_get_state(GST_ELEMENT(pipeline),&current, &pending, timeout);
    if (!ret){
        //fprintf(stderr, "GStreamer: unable to query pipeline state\n");
        return false;
    }

    return current == GST_STATE_PLAYING;
}

/*!
 * \brief CvCapture_GStreamer::startPipeline
 * Start the pipeline by setting it to the playing state
 */
void CvCapture_GStreamer::startPipeline()
{
    CV_FUNCNAME("icvStartPipeline");
435

436
    __BEGIN__;
437

438
    //fprintf(stderr, "relinked, pausing\n");
439 440 441 442
    GstStateChangeReturn status = gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_PLAYING);
    if (status == GST_STATE_CHANGE_ASYNC)
    {
        // wait for status update
443
        status = gst_element_get_state(pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
444 445 446 447
    }
    if (status == GST_STATE_CHANGE_FAILURE)
    {
        handleMessage(pipeline);
448
        gst_object_unref(pipeline);
449 450
        pipeline = NULL;
        CV_ERROR(CV_StsError, "GStreamer: unable to start pipeline\n");
451 452
        return;
    }
453

454 455 456
    if (isPosFramesEmulated)
        emulatedFrameNumber = 0;

457 458 459 460 461
    //printf("state now playing\n");
    handleMessage(pipeline);
    __END__;
}

462

463 464 465 466 467 468 469
/*!
 * \brief CvCapture_GStreamer::stopPipeline
 * Stop the pipeline by setting it to NULL
 */
void CvCapture_GStreamer::stopPipeline()
{
    CV_FUNCNAME("icvStopPipeline");
470

471
    __BEGIN__;
472

473 474 475 476 477
    //fprintf(stderr, "restarting pipeline, going to ready\n");
    if(gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_NULL) ==
            GST_STATE_CHANGE_FAILURE) {
        CV_ERROR(CV_StsError, "GStreamer: unable to stop pipeline\n");
        gst_object_unref(pipeline);
478
        pipeline = NULL;
479 480
        return;
    }
481 482
    __END__;
}
483

484 485 486 487 488 489 490
/*!
 * \brief CvCapture_GStreamer::restartPipeline
 * Restart the pipeline
 */
void CvCapture_GStreamer::restartPipeline()
{
    handleMessage(pipeline);
491

492 493
    this->stopPipeline();
    this->startPipeline();
494 495 496
}


497 498 499 500 501 502 503 504 505 506 507 508 509
/*!
 * \brief CvCapture_GStreamer::setFilter
 * \param prop the property name
 * \param type glib property type
 * \param v1 the value
 * \param v2 second value of property type requires it, else NULL
 * Filter the output formats by setting appsink caps properties
 */
void CvCapture_GStreamer::setFilter(const char *prop, int type, int v1, int v2)
{
    //printf("GStreamer: setFilter \n");
    if(!caps || !( GST_IS_CAPS (caps) ))
    {
510
        if(type == G_TYPE_INT)
511 512 513 514 515 516 517
        {
#if GST_VERSION_MAJOR == 0
            caps = gst_caps_new_simple("video/x-raw-rgb", prop, type, v1, NULL);
#else
            caps = gst_caps_new_simple("video/x-raw","format",G_TYPE_STRING,"BGR", prop, type, v1, NULL);
#endif
        }
518
        else
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
        {
#if GST_VERSION_MAJOR == 0
            caps = gst_caps_new_simple("video/x-raw-rgb", prop, type, v1, v2, NULL);
#else
            caps = gst_caps_new_simple("video/x-raw","format",G_TYPE_STRING,"BGR", prop, type, v1, v2, NULL);
#endif
        }
    }
    else
    {
#if GST_VERSION_MAJOR > 0
        if (! gst_caps_is_writable(caps))
            caps = gst_caps_make_writable (caps);
#endif
        if(type == G_TYPE_INT){
            gst_caps_set_simple(caps, prop, type, v1, NULL);
        }else{
            gst_caps_set_simple(caps, prop, type, v1, v2, NULL);
        }
538 539
    }

540 541 542 543 544 545
#if GST_VERSION_MAJOR > 0
    caps = gst_caps_fixate(caps);
#endif

    gst_app_sink_set_caps(GST_APP_SINK(sink), caps);
    //printf("filtering with %s\n", gst_caps_to_string(caps));
546 547
}

548 549 550 551 552 553

/*!
 * \brief CvCapture_GStreamer::removeFilter
 * \param filter filter to remove
 * remove the specified filter from the appsink template caps
 */
554 555
void CvCapture_GStreamer::removeFilter(const char *filter)
{
556 557
    if(!caps)
        return;
558

559 560 561 562 563
#if GST_VERSION_MAJOR > 0
    if (! gst_caps_is_writable(caps))
        caps = gst_caps_make_writable (caps);
#endif

564 565
    GstStructure *s = gst_caps_get_structure(caps, 0);
    gst_structure_remove_field(s, filter);
566

567
    gst_app_sink_set_caps(GST_APP_SINK(sink), caps);
568 569
}

570 571 572 573 574 575 576 577 578 579
/*!
 * \brief CvCapture_GStreamer::newPad link dynamic padd
 * \param pad
 * \param data
 * decodebin creates pads based on stream information, which is not known upfront
 * on receiving the pad-added signal, we connect it to the colorspace conversion element
 */
void CvCapture_GStreamer::newPad(GstElement * /*elem*/,
                                 GstPad     *pad,
                                 gpointer    data)
580
{
581 582
    GstPad *sinkpad;
    GstElement *color = (GstElement *) data;
583

584
    sinkpad = gst_element_get_static_pad (color, "sink");
585 586 587 588
    if (!sinkpad){
        //fprintf(stderr, "Gstreamer: no pad named sink\n");
        return;
    }
589

590 591
    gst_pad_link (pad, sinkpad);
    gst_object_unref (sinkpad);
592 593
}

594 595 596 597
/*!
 * \brief CvCapture_GStreamer::open Open the given file with gstreamer
 * \param type CvCapture type. One of CV_CAP_GSTREAMER_*
 * \param filename Filename to open in case of CV_CAP_GSTREAMER_FILE
Dikay900's avatar
Dikay900 committed
598
 * \return boolean. Specifies if opening was successful.
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
 *
 * In case of CV_CAP_GSTREAMER_V4L(2), a pipelin is constructed as follows:
 *    v4l2src ! autoconvert ! appsink
 *
 *
 * The 'filename' parameter is not limited to filesystem paths, and may be one of the following:
 *
 *  - a normal filesystem path:
 *        e.g. video.avi or /path/to/video.avi or C:\\video.avi
 *  - an uri:
 *        e.g. file:///path/to/video.avi or rtsp:///path/to/stream.asf
 *  - a gstreamer pipeline description:
 *        e.g. videotestsrc ! videoconvert ! appsink
 *        the appsink name should be either 'appsink0' (the default) or 'opencvsink'
 *
 *  When dealing with a file, CvCapture_GStreamer will not drop frames if the grabbing interval
 *  larger than the framerate period. (Unlike the uri or manual pipeline description, which assume
 *  a live source)
 *
 *  The pipeline will only be started whenever the first frame is grabbed. Setting pipeline properties
 *  is really slow if we need to restart the pipeline over and over again.
 *
 *  TODO: the 'type' parameter is imo unneeded. for v4l2, filename 'v4l2:///dev/video0' can be used.
 *  I expect this to be the same for CV_CAP_GSTREAMER_1394. Is anyone actually still using v4l (v1)?
 *
 */
625 626 627 628
bool CvCapture_GStreamer::open( int type, const char* filename )
{
    CV_FUNCNAME("cvCaptureFromCAM_GStreamer");

629
    __BEGIN__;
630

631 632
    gst_initializer::init();

633
    bool file = false;
634 635 636 637
    bool stream = false;
    bool manualpipeline = false;
    char *uri = NULL;
    uridecodebin = NULL;
638
    GstElementFactory * testfac;
639
    GstStateChangeReturn status;
640 641 642 643 644 645 646

    if (type == CV_CAP_GSTREAMER_V4L){
        testfac = gst_element_factory_find("v4lsrc");
        if (!testfac){
            return false;
        }
        g_object_unref(G_OBJECT(testfac));
647
        filename = "v4lsrc ! " COLOR_ELEM " ! appsink";
648 649 650 651 652 653 654
    }
    if (type == CV_CAP_GSTREAMER_V4L2){
        testfac = gst_element_factory_find("v4l2src");
        if (!testfac){
            return false;
        }
        g_object_unref(G_OBJECT(testfac));
655
        filename = "v4l2src ! " COLOR_ELEM " ! appsink";
656
    }
657

658 659 660 661 662

    // test if we have a valid uri. If so, open it with an uridecodebin
    // else, we might have a file or a manual pipeline.
    // if gstreamer cannot parse the manual pipeline, we assume we were given and
    // ordinary file path.
Dan's avatar
Dan committed
663
    if (!gst_uri_is_valid(filename))
664
    {
Dan's avatar
Dan committed
665 666 667 668 669 670
#ifdef _MSC_VER
        uri = new char[2048];
        DWORD pathSize = GetFullPathName(filename, 2048, uri, NULL);
        struct stat buf;
        if (pathSize == 0 || stat(uri, &buf) != 0)
        {
671
            delete[] uri;
Dan's avatar
Dan committed
672 673 674
            uri = NULL;
        }
#else
675
        uri = realpath(filename, NULL);
Dan's avatar
Dan committed
676
#endif
677 678 679
        stream = false;
        if(uri)
        {
680
            uri = g_filename_to_uri(uri, NULL, NULL);
681 682 683 684 685 686
            if(uri)
            {
                file = true;
            }
            else
            {
687
                CV_WARN("GStreamer: Error opening file\n");
688 689
                CV_WARN(filename);
                CV_WARN(uri);
690 691 692
                close();
                return false;
            }
693 694 695
        }
        else
        {
696
            GError *err = NULL;
697
            uridecodebin = gst_parse_launch(filename, &err);
698 699 700
            if(!uridecodebin)
            {
                fprintf(stderr, "GStreamer: Error opening bin: %s\n", err->message);
701 702 703 704 705
                return false;
            }
            stream = true;
            manualpipeline = true;
        }
706 707 708
    }
    else
    {
709 710 711
        stream = true;
        uri = g_strdup(filename);
    }
712

713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728
    bool element_from_uri = false;
    if(!uridecodebin)
    {
        // At this writing, the v4l2 element (and maybe others too) does not support caps renegotiation.
        // This means that we cannot use an uridecodebin when dealing with v4l2, since setting
        // capture properties will not work.
        // The solution (probably only until gstreamer 1.2) is to make an element from uri when dealing with v4l2.
        gchar * protocol = gst_uri_get_protocol(uri);
        if (!strcasecmp(protocol , "v4l2"))
        {
#if GST_VERSION_MAJOR == 0
            uridecodebin = gst_element_make_from_uri(GST_URI_SRC, uri, "src");
#else
            uridecodebin = gst_element_make_from_uri(GST_URI_SRC, uri, "src", NULL);
#endif
            element_from_uri = true;
729 730 731
        }
        else
        {
732
            uridecodebin = gst_element_factory_make("uridecodebin", NULL);
733
            g_object_set(G_OBJECT(uridecodebin), "uri", uri, NULL);
734 735 736
        }
        g_free(protocol);

737 738
        if(!uridecodebin)
        {
739
            //fprintf(stderr, "GStreamer: Error opening bin: %s\n", err->message);
740 741 742
            close();
            return false;
        }
743 744
    }

745
    if (manualpipeline)
746
    {
747
        GstIterator *it = gst_bin_iterate_elements(GST_BIN(uridecodebin));
748 749

        GstElement *element = NULL;
750
        gboolean done = false;
751
        gchar* name = NULL;
752
#if GST_VERSION_MAJOR > 0
753
        GValue value = G_VALUE_INIT;
754
#endif
755

756 757
        while (!done)
        {
758
#if GST_VERSION_MAJOR > 0
759 760
            switch (gst_iterator_next (it, &value))
            {
761
            case GST_ITERATOR_OK:
762
                element = GST_ELEMENT (g_value_get_object (&value));
763 764 765
#else
            switch (gst_iterator_next (it, (gpointer *)&element))
            {
766
            case GST_ITERATOR_OK:
767
#endif
768 769 770 771 772 773 774
                name = gst_element_get_name(element);
                if (name)
                {
                    if (strstr(name, "opencvsink") != NULL || strstr(name, "appsink") != NULL)
                    {
                        sink = GST_ELEMENT ( gst_object_ref (element) );
                    }
775
                    else if (strstr(name, COLOR_ELEM_NAME) != NULL)
776 777
                    {
                        color = GST_ELEMENT ( gst_object_ref (element) );
778 779 780 781
                    }
                    else if (strstr(name, "v4l") != NULL)
                    {
                        v4l2src = GST_ELEMENT ( gst_object_ref (element) );
782 783
                    }
                    g_free(name);
784 785

                    done = sink && color && v4l2src;
786
                }
787
#if GST_VERSION_MAJOR > 0
788
                g_value_unset (&value);
789
#endif
790

791
                break;
792
            case GST_ITERATOR_RESYNC:
793 794
                gst_iterator_resync (it);
                break;
795 796
            case GST_ITERATOR_ERROR:
            case GST_ITERATOR_DONE:
797 798 799
                done = TRUE;
                break;
            }
800
        }
801 802
        gst_iterator_free (it);

803 804
        if (!sink)
        {
805 806 807
            CV_ERROR(CV_StsError, "GStreamer: cannot find appsink in manual pipeline\n");
            return false;
        }
808

809 810 811 812
        pipeline = uridecodebin;
    }
    else
    {
813 814 815
        pipeline = gst_pipeline_new(NULL);
        // videoconvert (in 0.10: ffmpegcolorspace, in 1.x autovideoconvert)
        //automatically selects the correct colorspace conversion based on caps.
816
        color = gst_element_factory_make(COLOR_ELEM, NULL);
817 818 819
        sink = gst_element_factory_make("appsink", NULL);

        gst_bin_add_many(GST_BIN(pipeline), uridecodebin, color, sink, NULL);
820

821 822 823 824
        if(element_from_uri)
        {
            if(!gst_element_link(uridecodebin, color))
            {
825 826
                CV_ERROR(CV_StsError, "GStreamer: cannot link color -> sink\n");
                gst_object_unref(pipeline);
827
                pipeline = NULL;
828 829
                return false;
            }
830 831 832
        }
        else
        {
833 834
            g_signal_connect(uridecodebin, "pad-added", G_CALLBACK(newPad), color);
        }
835

836 837
        if(!gst_element_link(color, sink))
        {
838 839
            CV_ERROR(CV_StsError, "GStreamer: cannot link color -> sink\n");
            gst_object_unref(pipeline);
840
            pipeline = NULL;
841 842
            return false;
        }
843
    }
844

845
    //TODO: is 1 single buffer really high enough?
846 847
    gst_app_sink_set_max_buffers (GST_APP_SINK(sink), 1);
    gst_app_sink_set_drop (GST_APP_SINK(sink), stream);
848
    //do not emit signals: all calls will be synchronous and blocking
849
    gst_app_sink_set_emit_signals (GST_APP_SINK(sink), 0);
850 851

#if GST_VERSION_MAJOR == 0
852
    caps = gst_caps_new_simple("video/x-raw-rgb",
853
                               "bpp",        G_TYPE_INT, 24,
854 855 856 857
                               "red_mask",   G_TYPE_INT, 0x0000FF,
                               "green_mask", G_TYPE_INT, 0x00FF00,
                               "blue_mask",  G_TYPE_INT, 0xFF0000,
                               NULL);
858
#else
859

860
    caps = gst_caps_from_string("video/x-raw, format=(string){BGR, GRAY8}; video/x-bayer,format=(string){rggb,bggr,grbg,gbrg}; image/jpeg");
861 862 863 864 865 866 867 868 869 870 871 872

    if(manualpipeline){
        GstPad* sink_pad = gst_element_get_static_pad(sink, "sink");
        GstCaps* peer_caps = gst_pad_peer_query_caps(sink_pad,NULL);
        if (!gst_caps_can_intersect(caps, peer_caps)) {
            gst_caps_unref(caps);
            caps = gst_caps_from_string("video/x-raw, format=(string){UYVY,YUY2,YVYU,NV12,NV21,YV12,I420}");
        }
        gst_object_unref(sink_pad);
        gst_caps_unref(peer_caps);
    }

873
#endif
874
    gst_app_sink_set_caps(GST_APP_SINK(sink), caps);
875 876
    gst_caps_unref(caps);

877
    {
878 879
        status = gst_element_set_state(GST_ELEMENT(pipeline),
                                       file ? GST_STATE_PAUSED : GST_STATE_PLAYING);
880 881 882
        if (status == GST_STATE_CHANGE_ASYNC)
        {
            // wait for status update
883
            status = gst_element_get_state(pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
884 885 886 887 888 889 890 891 892 893 894 895
        }
        if (status == GST_STATE_CHANGE_FAILURE)
        {
            handleMessage(pipeline);
            gst_object_unref(pipeline);
            pipeline = NULL;
            CV_ERROR(CV_StsError, "GStreamer: unable to start pipeline\n");
            return false;
        }

        GstFormat format;

Alexander Smorkalov's avatar
Alexander Smorkalov committed
896
        format = GST_FORMAT_DEFAULT;
897
#if GST_VERSION_MAJOR == 0
Alexander Smorkalov's avatar
Alexander Smorkalov committed
898
        if(!gst_element_query_duration(sink, &format, &duration))
899
#else
Alexander Smorkalov's avatar
Alexander Smorkalov committed
900
        if(!gst_element_query_duration(sink, format, &duration))
901 902
#endif
        {
903
            handleMessage(pipeline);
904 905 906
            CV_WARN("GStreamer: unable to query duration of stream");
            duration = -1;
        }
907

908 909
        handleMessage(pipeline);

910
        GstPad* pad = gst_element_get_static_pad(sink, "sink");
911
#if GST_VERSION_MAJOR == 0
912
        GstCaps* buffer_caps = gst_pad_get_caps(pad);
913 914 915
#else
        GstCaps* buffer_caps = gst_pad_get_current_caps(pad);
#endif
916 917 918
        const GstStructure *structure = gst_caps_get_structure (buffer_caps, 0);

        if (!gst_structure_get_int (structure, "width", &width))
919
        {
920
            CV_WARN("Cannot query video width\n");
921
        }
922 923

        if (!gst_structure_get_int (structure, "height", &height))
924
        {
925
            CV_WARN("Cannot query video heigth\n");
926
        }
927 928 929

        gint num = 0, denom=1;
        if(!gst_structure_get_fraction(structure, "framerate", &num, &denom))
930
        {
931
            CV_WARN("Cannot query video fps\n");
932
        }
933 934 935

        fps = (double)num/(double)denom;

936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
        {
            GstFormat format_;
            gint64 value_ = -1;
            gboolean status_;

            format_ = GST_FORMAT_DEFAULT;
#if GST_VERSION_MAJOR == 0
#define FORMAT &format_
#else
#define FORMAT format_
#endif
            status_ = gst_element_query_position(pipeline, FORMAT, &value_);
#undef FORMAT
            if (!status_ || value_ != 0 || duration < 0)
            {
                CV_WARN(cv::format("Cannot query video position: status=%d value=%lld duration=%lld\n",
                        (int)status_, (long long int)value_, (long long int)duration).c_str());
                isPosFramesSupported = false;
                isPosFramesEmulated = true;
                emulatedFrameNumber = 0;
            }
            else
                isPosFramesSupported = true;
        }

        GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(pipeline), GST_DEBUG_GRAPH_SHOW_ALL, "pipeline");
962 963
    }

964
    __END__;
965

966
    return true;
967
}
968

969 970 971 972 973 974 975 976 977
/*!
 * \brief CvCapture_GStreamer::getProperty retreive the requested property from the pipeline
 * \param propId requested property
 * \return property value
 *
 * There are two ways the properties can be retreived. For seek-based properties we can query the pipeline.
 * For frame-based properties, we use the caps of the lasst receivef sample. This means that some properties
 * are not available until a first frame was received
 */
978
double CvCapture_GStreamer::getProperty( int propId ) const
979
{
980 981 982
    GstFormat format;
    gint64 value;
    gboolean status;
983

984 985 986 987 988
#if GST_VERSION_MAJOR == 0
#define FORMAT &format
#else
#define FORMAT format
#endif
989

990 991
    if(!pipeline) {
        CV_WARN("GStreamer: no pipeline");
992
        return 0;
993
    }
994

995 996 997 998 999
    switch(propId) {
    case CV_CAP_PROP_POS_MSEC:
        format = GST_FORMAT_TIME;
        status = gst_element_query_position(sink, FORMAT, &value);
        if(!status) {
1000
            handleMessage(pipeline);
1001
            CV_WARN("GStreamer: unable to query position of stream");
1002
            return 0;
1003 1004 1005
        }
        return value * 1e-6; // nano seconds to milli seconds
    case CV_CAP_PROP_POS_FRAMES:
1006 1007 1008 1009 1010 1011
        if (!isPosFramesSupported)
        {
            if (isPosFramesEmulated)
                return emulatedFrameNumber;
            return 0; // TODO getProperty() "unsupported" value should be changed
        }
1012
        format = GST_FORMAT_DEFAULT;
1013 1014
        status = gst_element_query_position(sink, FORMAT, &value);
        if(!status) {
1015
            handleMessage(pipeline);
1016
            CV_WARN("GStreamer: unable to query position of stream");
1017
            return 0;
1018 1019 1020 1021
        }
        return value;
    case CV_CAP_PROP_POS_AVI_RATIO:
        format = GST_FORMAT_PERCENT;
1022 1023
        status = gst_element_query_position(sink, FORMAT, &value);
        if(!status) {
1024
            handleMessage(pipeline);
1025
            CV_WARN("GStreamer: unable to query position of stream");
1026
            return 0;
1027 1028
        }
        return ((double) value) / GST_FORMAT_PERCENT_MAX;
1029
    case CV_CAP_PROP_FRAME_WIDTH:
1030
        return width;
1031
    case CV_CAP_PROP_FRAME_HEIGHT:
1032
        return height;
1033 1034
    case CV_CAP_PROP_FPS:
        return fps;
1035 1036 1037
    case CV_CAP_PROP_FOURCC:
        break;
    case CV_CAP_PROP_FRAME_COUNT:
1038
        return duration;
1039 1040 1041 1042 1043 1044
    case CV_CAP_PROP_FORMAT:
    case CV_CAP_PROP_MODE:
    case CV_CAP_PROP_BRIGHTNESS:
    case CV_CAP_PROP_CONTRAST:
    case CV_CAP_PROP_SATURATION:
    case CV_CAP_PROP_HUE:
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
        if (v4l2src)
        {
            const gchar * propName =
                    propId == CV_CAP_PROP_BRIGHTNESS ? "brightness" :
                    propId == CV_CAP_PROP_CONTRAST ? "contrast" :
                    propId == CV_CAP_PROP_SATURATION ? "saturation" :
                    propId == CV_CAP_PROP_HUE ? "hue" : NULL;

            if (propName)
            {
                gint32 value32 = 0;
                g_object_get(G_OBJECT(v4l2src), propName, &value32, NULL);
                return value32;
            }
        }
1060 1061 1062
    case CV_CAP_PROP_GAIN:
    case CV_CAP_PROP_CONVERT_RGB:
        break;
1063
    case CV_CAP_GSTREAMER_QUEUE_LENGTH:
1064
        if(!sink) {
1065 1066
            CV_WARN("GStreamer: there is no sink yet");
            return false;
1067
        }
1068
        return gst_app_sink_get_max_buffers(GST_APP_SINK(sink));
1069 1070 1071 1072
    default:
        CV_WARN("GStreamer: unhandled property");
        break;
    }
1073 1074 1075

#undef FORMAT

1076
    return 0;
1077 1078
}

1079 1080 1081 1082 1083 1084 1085 1086
/*!
 * \brief CvCapture_GStreamer::setProperty
 * \param propId
 * \param value
 * \return success
 * Sets the desired property id with val. If the pipeline is running,
 * it is briefly stopped and started again after the property was set
 */
1087 1088
bool CvCapture_GStreamer::setProperty( int propId, double value )
{
1089
    GstFormat format;
1090
    GstSeekFlags flags;
1091

1092 1093 1094 1095
    if(!pipeline) {
        CV_WARN("GStreamer: no pipeline");
        return false;
    }
1096

1097 1098 1099 1100 1101
    bool wasPlaying = this->isPipelinePlaying();
    if (wasPlaying)
        this->stopPipeline();


1102 1103 1104 1105 1106
    switch(propId) {
    case CV_CAP_PROP_POS_MSEC:
        format = GST_FORMAT_TIME;
        flags = (GstSeekFlags) (GST_SEEK_FLAG_FLUSH|GST_SEEK_FLAG_ACCURATE);
        if(!gst_element_seek_simple(GST_ELEMENT(pipeline), format,
1107
                                    flags, (gint64) (value * GST_MSECOND))) {
1108
            handleMessage(pipeline);
1109 1110
            CV_WARN("GStreamer: unable to seek");
        }
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
        else
        {
            if (isPosFramesEmulated)
            {
                if (value == 0)
                {
                    emulatedFrameNumber = 0;
                    return true;
                }
                else
                {
                    isPosFramesEmulated = false; // reset frame counter emulation
                }
            }
        }
1126 1127
        break;
    case CV_CAP_PROP_POS_FRAMES:
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
    {
        if (!isPosFramesSupported)
        {
            if (isPosFramesEmulated)
            {
                if (value == 0)
                {
                    restartPipeline();
                    emulatedFrameNumber = 0;
                    return true;
                }
            }
            return false;
        }
1142 1143 1144
        format = GST_FORMAT_DEFAULT;
        flags = (GstSeekFlags) (GST_SEEK_FLAG_FLUSH|GST_SEEK_FLAG_ACCURATE);
        if(!gst_element_seek_simple(GST_ELEMENT(pipeline), format,
1145
                                    flags, (gint64) value)) {
1146
            handleMessage(pipeline);
1147
            CV_WARN("GStreamer: unable to seek");
1148
            break;
1149
        }
1150 1151 1152 1153
        // wait for status update
        gst_element_get_state(pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
        return true;
    }
1154 1155 1156 1157
    case CV_CAP_PROP_POS_AVI_RATIO:
        format = GST_FORMAT_PERCENT;
        flags = (GstSeekFlags) (GST_SEEK_FLAG_FLUSH|GST_SEEK_FLAG_ACCURATE);
        if(!gst_element_seek_simple(GST_ELEMENT(pipeline), format,
1158
                                    flags, (gint64) (value * GST_FORMAT_PERCENT_MAX))) {
1159
            handleMessage(pipeline);
1160 1161
            CV_WARN("GStreamer: unable to seek");
        }
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
        else
        {
            if (isPosFramesEmulated)
            {
                if (value == 0)
                {
                    emulatedFrameNumber = 0;
                    return true;
                }
                else
                {
                    isPosFramesEmulated = false; // reset frame counter emulation
                }
            }
        }
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
        break;
    case CV_CAP_PROP_FRAME_WIDTH:
        if(value > 0)
            setFilter("width", G_TYPE_INT, (int) value, 0);
        else
            removeFilter("width");
        break;
    case CV_CAP_PROP_FRAME_HEIGHT:
        if(value > 0)
            setFilter("height", G_TYPE_INT, (int) value, 0);
        else
            removeFilter("height");
        break;
    case CV_CAP_PROP_FPS:
        if(value > 0) {
1192 1193 1194
            double num=0, denom = 1;
            toFraction(value, num,  denom);
            setFilter("framerate", GST_TYPE_FRACTION, value, denom);
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
        } else
            removeFilter("framerate");
        break;
    case CV_CAP_PROP_FOURCC:
    case CV_CAP_PROP_FRAME_COUNT:
    case CV_CAP_PROP_FORMAT:
    case CV_CAP_PROP_MODE:
    case CV_CAP_PROP_BRIGHTNESS:
    case CV_CAP_PROP_CONTRAST:
    case CV_CAP_PROP_SATURATION:
    case CV_CAP_PROP_HUE:
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
        if (v4l2src)
        {
            const gchar * propName =
                    propId == CV_CAP_PROP_BRIGHTNESS ? "brightness" :
                    propId == CV_CAP_PROP_CONTRAST ? "contrast" :
                    propId == CV_CAP_PROP_SATURATION ? "saturation" :
                    propId == CV_CAP_PROP_HUE ? "hue" : NULL;

            if (propName)
            {
                gint32 value32 = cv::saturate_cast<gint32>(value);
                g_object_set(G_OBJECT(v4l2src), propName, &value32, NULL);
                return true;
            }
        }
1221 1222 1223
    case CV_CAP_PROP_GAIN:
    case CV_CAP_PROP_CONVERT_RGB:
        break;
1224 1225
    case CV_CAP_GSTREAMER_QUEUE_LENGTH:
        if(!sink)
1226 1227 1228
            break;
        gst_app_sink_set_max_buffers(GST_APP_SINK(sink), (guint) value);
        break;
1229 1230 1231
    default:
        CV_WARN("GStreamer: unhandled property");
    }
1232 1233 1234 1235

    if (wasPlaying)
        this->startPipeline();

1236
    return false;
1237
}
1238 1239 1240 1241 1242 1243 1244

/*!
 * \brief cvCreateCapture_GStreamer
 * \param type
 * \param filename
 * \return
 */
1245 1246 1247 1248 1249 1250 1251 1252
CvCapture* cvCreateCapture_GStreamer(int type, const char* filename )
{
    CvCapture_GStreamer* capture = new CvCapture_GStreamer;

    if( capture->open( type, filename ))
        return capture;

    delete capture;
1253
    return 0;
1254
}
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307


/*!
 * \brief The CvVideoWriter_GStreamer class
 * Use Gstreamer to write video
 */
class CvVideoWriter_GStreamer : public CvVideoWriter
{
public:
    CvVideoWriter_GStreamer() { init(); }
    virtual ~CvVideoWriter_GStreamer() { close(); }

    virtual bool open( const char* filename, int fourcc,
                       double fps, CvSize frameSize, bool isColor );
    virtual void close();
    virtual bool writeFrame( const IplImage* image );
protected:
    void init();
    const char* filenameToMimetype(const char* filename);
    GstElement* pipeline;
    GstElement* source;
    GstElement* encodebin;
    GstElement* file;

    GstBuffer* buffer;
    int input_pix_fmt;
    int num_frames;
    double framerate;
};

/*!
 * \brief CvVideoWriter_GStreamer::init
 * initialise all variables
 */
void CvVideoWriter_GStreamer::init()
{
    pipeline = NULL;
    source = NULL;
    encodebin = NULL;
    file = NULL;
    buffer = NULL;

    num_frames = 0;
    framerate = 0;
}

/*!
 * \brief CvVideoWriter_GStreamer::close
 * ends the pipeline by sending EOS and destroys the pipeline and all
 * elements afterwards
 */
void CvVideoWriter_GStreamer::close()
{
1308
    GstStateChangeReturn status;
1309 1310
    if (pipeline)
    {
Alexander Smorkalov's avatar
Alexander Smorkalov committed
1311
        handleMessage(pipeline);
1312 1313

        if (gst_app_src_end_of_stream(GST_APP_SRC(source)) != GST_FLOW_OK)
Alexander Smorkalov's avatar
Alexander Smorkalov committed
1314
        {
1315
            CV_WARN("Cannot send EOS to GStreamer pipeline\n");
Alexander Smorkalov's avatar
Alexander Smorkalov committed
1316 1317
            return;
        }
1318 1319 1320 1321

        //wait for EOS to trickle down the pipeline. This will let all elements finish properly
        GstBus* bus = gst_element_get_bus(pipeline);
        GstMessage *msg = gst_bus_timed_pop_filtered(bus, GST_CLOCK_TIME_NONE, (GstMessageType)(GST_MESSAGE_ERROR | GST_MESSAGE_EOS));
1322
        if (GST_MESSAGE_TYPE(msg) == GST_MESSAGE_ERROR)
Alexander Smorkalov's avatar
Alexander Smorkalov committed
1323
        {
1324
            CV_WARN("Error during VideoWriter finalization\n");
Alexander Smorkalov's avatar
Alexander Smorkalov committed
1325 1326
            return;
        }
1327 1328 1329

        if(msg != NULL)
        {
1330 1331 1332 1333
            gst_message_unref(msg);
            g_object_unref(G_OBJECT(bus));
        }

1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
        status = gst_element_set_state (pipeline, GST_STATE_NULL);
        if (status == GST_STATE_CHANGE_ASYNC)
        {
            // wait for status update
            GstState st1;
            GstState st2;
            status = gst_element_get_state(pipeline, &st1, &st2, GST_CLOCK_TIME_NONE);
        }
        if (status == GST_STATE_CHANGE_FAILURE)
        {
            handleMessage (pipeline);
            gst_object_unref (GST_OBJECT (pipeline));
            pipeline = NULL;
            CV_WARN("Unable to stop gstreamer pipeline\n");
            return;
        }
1350 1351

        gst_object_unref (GST_OBJECT (pipeline));
1352
        pipeline = NULL;
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
    }
}


/*!
 * \brief CvVideoWriter_GStreamer::filenameToMimetype
 * \param filename
 * \return mimetype
 * Resturns a container mime type for a given filename by looking at it's extension
 */
const char* CvVideoWriter_GStreamer::filenameToMimetype(const char *filename)
{
    //get extension
    const char *ext = strrchr(filename, '.');
    if(!ext || ext == filename) return NULL;
    ext += 1; //exclude the dot

    // return a container mime based on the given extension.
    // gstreamer's function returns too much possibilities, which is not useful to us

    //return the appropriate mime
    if (strncasecmp(ext,"avi", 3) == 0)
        return (const char*)"video/x-msvideo";

    if (strncasecmp(ext,"mkv", 3) == 0 || strncasecmp(ext,"mk3d",4) == 0  || strncasecmp(ext,"webm",4) == 0 )
        return (const char*)"video/x-matroska";

    if (strncasecmp(ext,"wmv", 3) == 0)
        return (const char*)"video/x-ms-asf";

    if (strncasecmp(ext,"mov", 3) == 0)
        return (const char*)"video/x-quicktime";

    if (strncasecmp(ext,"ogg", 3) == 0 || strncasecmp(ext,"ogv", 3) == 0)
        return (const char*)"application/ogg";

    if (strncasecmp(ext,"rm", 3) == 0)
        return (const char*)"vnd.rn-realmedia";

    if (strncasecmp(ext,"swf", 3) == 0)
        return (const char*)"application/x-shockwave-flash";

    if (strncasecmp(ext,"mp4", 3) == 0)
        return (const char*)"video/x-quicktime, variant=(string)iso";

    //default to avi
    return (const char*)"video/x-msvideo";
}

/*!
 * \brief CvVideoWriter_GStreamer::open
 * \param filename filename to output to
 * \param fourcc desired codec fourcc
 * \param fps desired framerate
 * \param frameSize the size of the expected frames
 * \param is_color color or grayscale
 * \return success
 *
 * We support 2 modes of operation. Either the user enters a filename and a fourcc
 * code, or enters a manual pipeline description like in CvVideoCapture_Gstreamer.
 * In the latter case, we just push frames on the appsink with appropriate caps.
 * In the former case, we try to deduce the correct container from the filename,
 * and the correct encoder from the fourcc profile.
 *
 * If the file extension did was not recognize, an avi container is used
 *
 */
bool CvVideoWriter_GStreamer::open( const char * filename, int fourcc,
                                    double fps, CvSize frameSize, bool is_color )
{
    CV_FUNCNAME("CvVideoWriter_GStreamer::open");

    // check arguments
    assert (filename);
    assert (fps > 0);
    assert (frameSize.width > 0  &&  frameSize.height > 0);

    // init gstreamer
    gst_initializer::init();

    // init vars
    bool manualpipeline = true;
    int  bufsize = 0;
    GError *err = NULL;
    const char* mime = NULL;
    GstStateChangeReturn stateret;

    GstCaps* caps = NULL;
    GstCaps* videocaps = NULL;
1442 1443

#if FULL_GST_VERSION >= VERSION_NUM(0,10,32)
1444 1445 1446
    GstCaps* containercaps = NULL;
    GstEncodingContainerProfile* containerprofile = NULL;
    GstEncodingVideoProfile* videoprofile = NULL;
1447
#endif
1448

1449
    GstIterator* it = NULL;
1450 1451 1452
    gboolean done = FALSE;
    GstElement *element = NULL;
    gchar* name = NULL;
1453 1454

#if GST_VERSION_MAJOR == 0
1455 1456
    GstElement* splitter = NULL;
    GstElement* combiner = NULL;
1457
#endif
1458 1459 1460 1461 1462 1463 1464

    // we first try to construct a pipeline from the given string.
    // if that fails, we assume it is an ordinary filename

    __BEGIN__;

    encodebin = gst_parse_launch(filename, &err);
1465
    manualpipeline = (encodebin != NULL);
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475

    if(manualpipeline)
    {
#if GST_VERSION_MAJOR == 0
        it = gst_bin_iterate_sources(GST_BIN(encodebin));
        if(gst_iterator_next(it, (gpointer *)&source) != GST_ITERATOR_OK) {
            CV_ERROR(CV_StsError, "GStreamer: cannot find appsink in manual pipeline\n");
            return false;
        }
#else
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
        it = gst_bin_iterate_sources (GST_BIN(encodebin));
        GValue value = G_VALUE_INIT;

        while (!done) {
          switch (gst_iterator_next (it, &value)) {
            case GST_ITERATOR_OK:
              element = GST_ELEMENT (g_value_get_object (&value));
              name = gst_element_get_name(element);
              if (name){
                if(strstr(name, "opencvsrc") != NULL || strstr(name, "appsrc") != NULL) {
                  source = GST_ELEMENT ( gst_object_ref (element) );
                  done = TRUE;
                }
                g_free(name);
              }
              g_value_unset (&value);

              break;
            case GST_ITERATOR_RESYNC:
              gst_iterator_resync (it);
              break;
            case GST_ITERATOR_ERROR:
            case GST_ITERATOR_DONE:
              done = TRUE;
              break;
          }
1502
        }
1503
        gst_iterator_free (it);
1504

1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
        if (!source){
            CV_ERROR(CV_StsError, "GStreamer: cannot find appsrc in manual pipeline\n");
            return false;
        }
#endif
        pipeline = encodebin;
    }
    else
    {
        pipeline = gst_pipeline_new (NULL);

        // we just got a filename and a fourcc code.
        // first, try to guess the container from the filename
        //encodebin = gst_element_factory_make("encodebin", NULL);

        //proxy old non existing fourcc ids. These were used in previous opencv versions,
        //but do not even exist in gstreamer any more
        if (fourcc == CV_FOURCC('M','P','1','V')) fourcc = CV_FOURCC('M', 'P', 'G' ,'1');
        if (fourcc == CV_FOURCC('M','P','2','V')) fourcc = CV_FOURCC('M', 'P', 'G' ,'2');
        if (fourcc == CV_FOURCC('D','R','A','C')) fourcc = CV_FOURCC('d', 'r', 'a' ,'c');

1526

1527
        //create encoder caps from fourcc
1528

1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
        videocaps = gst_riff_create_video_caps(fourcc, NULL, NULL, NULL, NULL, NULL);
        if (!videocaps){
            CV_ERROR( CV_StsUnsupportedFormat, "Gstreamer Opencv backend does not support this codec.");
        }

        //create container caps from file extension
        mime = filenameToMimetype(filename);
        if (!mime) {
            CV_ERROR( CV_StsUnsupportedFormat, "Gstreamer Opencv backend does not support this file type.");
        }
1539 1540

#if FULL_GST_VERSION >= VERSION_NUM(0,10,32)
1541 1542 1543 1544 1545 1546
        containercaps = gst_caps_from_string(mime);

        //create encodebin profile
        containerprofile = gst_encoding_container_profile_new("container", "container", containercaps, NULL);
        videoprofile = gst_encoding_video_profile_new(videocaps, NULL, NULL, 1);
        gst_encoding_container_profile_add_profile(containerprofile, (GstEncodingProfile *) videoprofile);
1547
#endif
1548 1549 1550

        //create pipeline elements
        encodebin = gst_element_factory_make("encodebin", NULL);
1551

1552
#if FULL_GST_VERSION >= VERSION_NUM(0,10,32)
1553
        g_object_set(G_OBJECT(encodebin), "profile", containerprofile, NULL);
1554
#endif
1555 1556 1557 1558 1559
        source = gst_element_factory_make("appsrc", NULL);
        file = gst_element_factory_make("filesink", NULL);
        g_object_set(G_OBJECT(file), "location", filename, NULL);
    }

1560 1561 1562
    if (fourcc == CV_FOURCC('M','J','P','G') && frameSize.height == 1)
    {
#if GST_VERSION_MAJOR > 0
StevenPuttemans's avatar
StevenPuttemans committed
1563
        input_pix_fmt = GST_VIDEO_FORMAT_ENCODED;
1564 1565 1566 1567 1568 1569 1570 1571 1572
        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)
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
    {
        input_pix_fmt = GST_VIDEO_FORMAT_BGR;
        bufsize = frameSize.width * frameSize.height * 3;

#if GST_VERSION_MAJOR == 0
        caps = gst_video_format_new_caps(GST_VIDEO_FORMAT_BGR,
                                         frameSize.width,
                                         frameSize.height,
                                         int(fps), 1,
                                         1, 1);
#else
        caps = gst_caps_new_simple("video/x-raw",
                                   "format", G_TYPE_STRING, "BGR",
                                   "width", G_TYPE_INT, frameSize.width,
                                   "height", G_TYPE_INT, frameSize.height,
                                   "framerate", GST_TYPE_FRACTION, int(fps), 1,
                                   NULL);
        caps = gst_caps_fixate(caps);

#endif

    }
    else
    {
1597
#if FULL_GST_VERSION >= VERSION_NUM(0,10,29)
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
        input_pix_fmt = GST_VIDEO_FORMAT_GRAY8;
        bufsize = frameSize.width * frameSize.height;

#if GST_VERSION_MAJOR == 0
        caps = gst_video_format_new_caps(GST_VIDEO_FORMAT_GRAY8,
                                         frameSize.width,
                                         frameSize.height,
                                         int(fps), 1,
                                         1, 1);
#else
        caps = gst_caps_new_simple("video/x-raw",
                                   "format", G_TYPE_STRING, "GRAY8",
                                   "width", G_TYPE_INT, frameSize.width,
                                   "height", G_TYPE_INT, frameSize.height,
                                   "framerate", GST_TYPE_FRACTION, int(fps), 1,
                                   NULL);
        caps = gst_caps_fixate(caps);
1615 1616 1617
#endif
#else
        CV_Assert(!"Gstreamer 0.10.29 or newer is required for grayscale input");
1618 1619 1620 1621 1622 1623 1624 1625
#endif
    }

    gst_app_src_set_caps(GST_APP_SRC(source), caps);
    gst_app_src_set_stream_type(GST_APP_SRC(source), GST_APP_STREAM_TYPE_STREAM);
    gst_app_src_set_size (GST_APP_SRC(source), -1);

    g_object_set(G_OBJECT(source), "format", GST_FORMAT_TIME, NULL);
1626 1627
    g_object_set(G_OBJECT(source), "block", 1, NULL);
    g_object_set(G_OBJECT(source), "is-live", 0, NULL);
1628

1629 1630 1631 1632 1633 1634 1635 1636 1637 1638

    if(!manualpipeline)
    {
        g_object_set(G_OBJECT(file), "buffer-size", bufsize, NULL);
        gst_bin_add_many(GST_BIN(pipeline), source, encodebin, file, NULL);
        if(!gst_element_link_many(source, encodebin, file, NULL)) {
            CV_ERROR(CV_StsError, "GStreamer: cannot link elements\n");
        }
    }

1639
#if GST_VERSION_MAJOR == 0
1640 1641 1642 1643 1644 1645
    // HACK: remove streamsplitter and streamcombiner from
    // encodebin pipeline to prevent early EOF event handling
    // We always fetch BGR or gray-scale frames, so combiner->spliter
    // endge in graph is useless.
    it = gst_bin_iterate_recurse (GST_BIN(encodebin));
    while (!done) {
1646
      switch (gst_iterator_next (it, (void**)&element)) {
1647
        case GST_ITERATOR_OK:
1648
          name = gst_element_get_name(element);
1649
          if (strstr(name, "streamsplitter"))
1650
            splitter = element;
1651
          else if (strstr(name, "streamcombiner"))
1652
            combiner = element;
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
          break;
        case GST_ITERATOR_RESYNC:
          gst_iterator_resync (it);
          break;
        case GST_ITERATOR_ERROR:
          done = true;
          break;
        case GST_ITERATOR_DONE:
          done = true;
          break;
      }
    }

    gst_iterator_free (it);

    if (splitter && combiner)
    {
        gst_element_unlink(splitter, combiner);

        GstPad* src  = gst_element_get_pad(combiner, "src");
        GstPad* sink = gst_element_get_pad(combiner, "encodingsink");

        GstPad* srcPeer = gst_pad_get_peer(src);
        GstPad* sinkPeer = gst_pad_get_peer(sink);

        gst_pad_unlink(sinkPeer, sink);
        gst_pad_unlink(src, srcPeer);

        gst_pad_link(sinkPeer, srcPeer);

        src = gst_element_get_pad(splitter, "encodingsrc");
        sink = gst_element_get_pad(splitter, "sink");

        srcPeer = gst_pad_get_peer(src);
        sinkPeer = gst_pad_get_peer(sink);

        gst_pad_unlink(sinkPeer, sink);
        gst_pad_unlink(src, srcPeer);

        gst_pad_link(sinkPeer, srcPeer);
    }
1694
#endif
1695

1696 1697
    stateret = gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_PLAYING);
    if(stateret  == GST_STATE_CHANGE_FAILURE) {
1698
        handleMessage(pipeline);
1699 1700 1701 1702 1703 1704
        CV_ERROR(CV_StsError, "GStreamer: cannot put pipeline to play\n");
    }

    framerate = fps;
    num_frames = 0;

1705 1706
    handleMessage(pipeline);

1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
    __END__;

    return true;
}


/*!
 * \brief CvVideoWriter_GStreamer::writeFrame
 * \param image
 * \return
 * Pushes the given frame on the pipeline.
 * The timestamp for the buffer is generated from the framerate set in open
 * and ensures a smooth video
 */
bool CvVideoWriter_GStreamer::writeFrame( const IplImage * image )
{
    CV_FUNCNAME("CvVideoWriter_GStreamer::writerFrame");

    GstClockTime duration, timestamp;
    GstFlowReturn ret;
    int size;

    __BEGIN__;
1730

1731 1732
    handleMessage(pipeline);

StevenPuttemans's avatar
StevenPuttemans committed
1733
#if GST_VERSION_MAJOR > 0
1734 1735 1736 1737 1738
    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.");
        }
    }
StevenPuttemans's avatar
StevenPuttemans committed
1739 1740 1741
    else
#endif
    if(input_pix_fmt == GST_VIDEO_FORMAT_BGR) {
1742 1743 1744 1745
        if (image->nChannels != 3 || image->depth != IPL_DEPTH_8U) {
            CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs images with depth = IPL_DEPTH_8U and nChannels = 3.");
        }
    }
1746
#if FULL_GST_VERSION >= VERSION_NUM(0,10,29)
1747 1748 1749 1750 1751
    else if (input_pix_fmt == GST_VIDEO_FORMAT_GRAY8) {
        if (image->nChannels != 1 || image->depth != IPL_DEPTH_8U) {
            CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs images with depth = IPL_DEPTH_8U and nChannels = 1.");
        }
    }
1752
#endif
1753
    else {
1754
        CV_ERROR(CV_StsUnsupportedFormat, "cvWriteFrame() needs BGR or grayscale images\n");
1755
        return false;
1756 1757 1758 1759 1760 1761 1762 1763
    }

    size = image->imageSize;
    duration = ((double)1/framerate) * GST_SECOND;
    timestamp = num_frames * duration;

    //gst_app_src_push_buffer takes ownership of the buffer, so we need to supply it a copy
#if GST_VERSION_MAJOR == 0
1764 1765 1766 1767 1768 1769
    buffer = gst_buffer_try_new_and_alloc (size);
    if (!buffer)
    {
        CV_ERROR(CV_StsBadSize, "Cannot create GStreamer buffer");
    }

1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
    memcpy(GST_BUFFER_DATA (buffer), (guint8*)image->imageData, size);
    GST_BUFFER_DURATION(buffer) = duration;
    GST_BUFFER_TIMESTAMP(buffer) = timestamp;
#else
    buffer = gst_buffer_new_allocate (NULL, size, NULL);
    GstMapInfo info;
    gst_buffer_map(buffer, &info, (GstMapFlags)GST_MAP_READ);
    memcpy(info.data, (guint8*)image->imageData, size);
    gst_buffer_unmap(buffer, &info);
    GST_BUFFER_DURATION(buffer) = duration;
    GST_BUFFER_PTS(buffer) = timestamp;
    GST_BUFFER_DTS(buffer) = timestamp;
#endif
    //set the current number in the frame
    GST_BUFFER_OFFSET(buffer) =  num_frames;

    ret = gst_app_src_push_buffer(GST_APP_SRC(source), buffer);
    if (ret != GST_FLOW_OK) {
1788 1789
        CV_WARN("Error pushing buffer to GStreamer pipeline");
        return false;
1790
    }
1791 1792

    //GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(pipeline), GST_DEBUG_GRAPH_SHOW_ALL, "pipeline");
1793

1794 1795 1796
    ++num_frames;

    __END__;
1797

1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864
    return true;
}

/*!
 * \brief cvCreateVideoWriter_GStreamer
 * \param filename
 * \param fourcc
 * \param fps
 * \param frameSize
 * \param isColor
 * \return
 * Constructor
 */
CvVideoWriter* cvCreateVideoWriter_GStreamer(const char* filename, int fourcc, double fps,
                                             CvSize frameSize, int isColor )
{
    CvVideoWriter_GStreamer* wrt = new CvVideoWriter_GStreamer;
    if( wrt->open(filename, fourcc, fps,frameSize, isColor))
        return wrt;

    delete wrt;
    return 0;
}

// utility functions

/*!
 * \brief toFraction
 * \param decimal
 * \param numerator
 * \param denominator
 * Split a floating point value into numerator and denominator
 */
void toFraction(double decimal, double &numerator, double &denominator)
{
    double dummy;
    double whole;
    decimal = modf (decimal, &whole);
    for (denominator = 1; denominator<=100; denominator++){
        if (modf(denominator * decimal, &dummy) < 0.001f)
            break;
    }
    numerator = denominator * decimal;
}


/*!
 * \brief handleMessage
 * Handles gstreamer bus messages. Mainly for debugging purposes and ensuring clean shutdown on error
 */
void handleMessage(GstElement * pipeline)
{
    CV_FUNCNAME("handlemessage");

    GError *err = NULL;
    gchar *debug = NULL;
    GstBus* bus = NULL;
    GstStreamStatusType tp;
    GstElement * elem = NULL;
    GstMessage* msg  = NULL;

    __BEGIN__;
    bus = gst_element_get_bus(pipeline);

    while(gst_bus_have_pending(bus)) {
        msg = gst_bus_pop(bus);

1865
        //printf("\t\tGot %s message\n", GST_MESSAGE_TYPE_NAME(msg));
1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876

        if(gst_is_missing_plugin_message(msg))
        {
            CV_ERROR(CV_StsError, "GStreamer: your gstreamer installation is missing a required plugin\n");
        }
        else
        {
            switch (GST_MESSAGE_TYPE (msg)) {
            case GST_MESSAGE_STATE_CHANGED:
                GstState oldstate, newstate, pendstate;
                gst_message_parse_state_changed(msg, &oldstate, &newstate, &pendstate);
1877 1878 1879
                //fprintf(stderr, "\t\t%s: state changed from %s to %s (pending: %s)\n",
                //                gst_element_get_name(GST_MESSAGE_SRC (msg)),
                //                gst_element_state_get_name(oldstate),
1880 1881 1882 1883
                //                gst_element_state_get_name(newstate), gst_element_state_get_name(pendstate));
                break;
            case GST_MESSAGE_ERROR:
                gst_message_parse_error(msg, &err, &debug);
1884 1885
                //fprintf(stderr, "\t\tGStreamer Plugin: Embedded video playback halted; module %s reported: %s\n",
                //                gst_element_get_name(GST_MESSAGE_SRC (msg)), err->message);
1886 1887 1888 1889 1890 1891 1892

                g_error_free(err);
                g_free(debug);

                gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_NULL);
                break;
            case GST_MESSAGE_EOS:
1893
                //fprintf(stderr, "\t\treached the end of the stream.");
1894 1895 1896
                break;
            case GST_MESSAGE_STREAM_STATUS:
                gst_message_parse_stream_status(msg,&tp,&elem);
1897
                //fprintf(stderr, "\t\tstream status: elem %s, %i\n", GST_ELEMENT_NAME(elem), tp);
1898 1899
                break;
            default:
1900
                //fprintf(stderr, "\t\tunhandled message %s\n",GST_MESSAGE_TYPE_NAME(msg));
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
                break;
            }
        }
        gst_message_unref(msg);
    }

    gst_object_unref(GST_OBJECT(bus));

    __END__
}