return true if we try to set the resolution and the pipeline is not running
[harmattan/cameraplus] / lib / qtcamimagemode.cpp
1 /*!
2  * This file is part of CameraPlus.
3  *
4  * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #include "qtcamimagemode.h"
22 #include "qtcammode_p.h"
23 #include "qtcamdevice_p.h"
24 #include "qtcamimagesettings.h"
25 #include "qtcamdevice.h"
26
27 class QtCamImageModePrivate : public QtCamModePrivate {
28 public:
29   QtCamImageModePrivate(QtCamDevicePrivate *dev) :
30   QtCamModePrivate(dev),
31   settings(dev->conf->imageSettings(dev->id)),
32   resolution(settings->defaultResolution()) {
33
34   }
35
36   ~QtCamImageModePrivate() {
37     delete settings;
38   }
39
40   QtCamImageSettings *settings;
41   QtCamImageResolution resolution;
42 };
43
44 QtCamImageMode::QtCamImageMode(QtCamDevicePrivate *dev, QObject *parent) :
45   QtCamMode(new QtCamImageModePrivate(dev), "mode-image", "image-done", parent) {
46
47   d = (QtCamImageModePrivate *)d_ptr;
48
49   QString name = d_ptr->dev->conf->imageEncodingProfileName();
50   QString path = d_ptr->dev->conf->imageEncodingProfilePath();
51
52   if (!name.isEmpty() && !path.isEmpty()) {
53     GstEncodingProfile *profile = d_ptr->loadProfile(path, name);
54     if (profile) {
55       setProfile(profile);
56     }
57   }
58 }
59
60 QtCamImageMode::~QtCamImageMode() {
61   d = 0;
62 }
63
64 bool QtCamImageMode::canCapture() {
65   return QtCamMode::canCapture() && d_ptr->dev->isWrapperReady();
66 }
67
68 void QtCamImageMode::applySettings() {
69   bool night = d_ptr->inNightMode();
70
71   int fps = night ? d->resolution.nightFrameRate() : d->resolution.frameRate();
72
73   d_ptr->setCaps("viewfinder-caps", d->resolution.viewfinderResolution(), fps);
74
75   // FIXME:
76   // Ideally, we should query the image-capture-supported-caps and get a proper framerate
77   // as it seems that subdevsrc2 can only capture 15 FPS for at least the highest resolution
78   // we use. For now we will not set any FPS.
79   d_ptr->setCaps("image-capture-caps", d->resolution.captureResolution(), -1);
80
81   setPreviewSize(d->resolution.previewResolution());
82
83   // TODO: ?
84   // d_ptr->resetCaps("video-capture-caps");
85 }
86
87 void QtCamImageMode::start() {
88   // Nothing
89 }
90
91 void QtCamImageMode::stop() {
92   // Nothing
93 }
94
95 bool QtCamImageMode::capture(const QString& fileName) {
96   if (!canCapture()) {
97     return false;
98   }
99
100   if (fileName.isEmpty()) {
101     return false;
102   }
103
104   setFileName(fileName);
105
106   g_object_set(d_ptr->dev->cameraBin, "location", fileName.toUtf8().data(), NULL);
107   g_signal_emit_by_name(d_ptr->dev->cameraBin, "start-capture", NULL);
108
109   return true;
110 }
111
112 bool QtCamImageMode::setResolution(const QtCamImageResolution& resolution) {
113   d->resolution = resolution;
114   if (!d_ptr->dev->q_ptr->isRunning()) {
115     // We will return true here because setting the resolution on a non-running pipeline
116     // doesn't make much sense (Probably the only use case is as a kind of optimization only).
117     // We will set it anyway when the pipeline gets started.
118     return true;
119   }
120
121   if (!d_ptr->dev->q_ptr->isIdle()) {
122     return false;
123   }
124
125   applySettings();
126
127   return true;
128 }
129
130 void QtCamImageMode::setProfile(GstEncodingProfile *profile) {
131   if (!d_ptr->dev->cameraBin) {
132     gst_encoding_profile_unref(profile);
133     return;
134   }
135
136   g_object_set(d_ptr->dev->cameraBin, "image-profile", profile, NULL);
137 }
138
139 QtCamImageSettings *QtCamImageMode::settings() const {
140   return d->settings;
141 }