Added QtCamAutoFocus::setRegionOfInterest()
[harmattan/cameraplus] / lib / qtcamdevice.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 "qtcamdevice.h"
22 #include "qtcamviewfinder.h"
23 #include "qtcamconfig.h"
24 #include "qtcamdevice_p.h"
25 #include <QDebug>
26 #include <gst/gst.h>
27 #include "qtcamgstreamermessagelistener.h"
28 #include "qtcammode.h"
29 #include "qtcamimagemode.h"
30 #include "qtcamvideomode.h"
31 #include "qtcamnotifications.h"
32
33 QtCamDevice::QtCamDevice(QtCamConfig *config, const QString& name,
34                          const QVariant& id, QObject *parent) :
35   QObject(parent), d_ptr(new QtCamDevicePrivate) {
36
37   d_ptr->q_ptr = this;
38   d_ptr->name = name;
39   d_ptr->id = id;
40   d_ptr->conf = config;
41
42   d_ptr->cameraBin = gst_element_factory_make("camerabin2", "QtCameraCameraBin");
43   if (!d_ptr->cameraBin) {
44     qCritical() << "Failed to create camerabin";
45     return;
46   }
47
48   d_ptr->createAndAddElement(d_ptr->conf->audioSource(), "audio-source", "QtCameraAudioSrc");
49   d_ptr->createAndAddVideoSource();
50
51   int flags =
52     0x00000001 /* no-audio-conversion - Do not use audio conversion elements */
53     | 0x00000002 /* no-video-conversion - Do not use video conversion elements */
54     | 0x00000004 /* no-viewfinder-conversion - Do not use viewfinder conversion elements */
55     | 0x00000008; /* no-image-conversion - Do not use image conversion elements */
56
57   g_object_set(d_ptr->cameraBin, "flags", flags, NULL);
58
59   d_ptr->setAudioCaptureCaps();
60
61   // TODO: audio bitrate
62   // TODO: video bitrate
63   // TODO: filters
64   // TODO: custom properties for jifmux, mp4mux, audio encoder, video encoder, sink & video source
65   d_ptr->listener = new QtCamGStreamerMessageListener(gst_element_get_bus(d_ptr->cameraBin),
66                                                       d_ptr, this);
67
68   QObject::connect(d_ptr->listener, SIGNAL(error(const QString&, int, const QString&)),
69                    this, SLOT(_d_error(const QString&, int, const QString&)));
70   QObject::connect(d_ptr->listener, SIGNAL(started()), this, SLOT(_d_started()));
71   QObject::connect(d_ptr->listener, SIGNAL(stopped()), this, SLOT(_d_stopped()));
72   QObject::connect(d_ptr->listener, SIGNAL(stopping()), this, SLOT(_d_stopping()));
73
74   g_signal_connect(d_ptr->cameraBin, "notify::idle",
75                    G_CALLBACK(QtCamDevicePrivate::on_idle_changed), d_ptr);
76
77   g_signal_connect(d_ptr->wrapperVideoSource, "notify::ready-for-capture",
78                    G_CALLBACK(QtCamDevicePrivate::on_ready_for_capture_changed), d_ptr);
79
80   d_ptr->image = new QtCamImageMode(d_ptr, this);
81   d_ptr->video = new QtCamVideoMode(d_ptr, this);
82
83   d_ptr->notifications = new QtCamNotifications(this, this);
84 }
85
86 QtCamDevice::~QtCamDevice() {
87   stop(true);
88
89   d_ptr->image->deactivate();
90   d_ptr->video->deactivate();
91
92   delete d_ptr->image; d_ptr->image = 0;
93   delete d_ptr->video; d_ptr->video = 0;
94
95   if (d_ptr->cameraBin) {
96     gst_object_unref(d_ptr->cameraBin);
97   }
98
99   delete d_ptr; d_ptr = 0;
100 }
101
102 bool QtCamDevice::setViewfinder(QtCamViewfinder *viewfinder) {
103   if (isRunning()) {
104     qWarning() << "QtCamDevice: pipeline must be stopped before setting a viewfinder";
105     return false;
106   }
107
108   if (d_ptr->viewfinder == viewfinder) {
109     return true;
110   }
111
112   if (!viewfinder) {
113     qWarning() << "QtCamDevice: viewfinder cannot be unset.";
114     return false;
115   }
116
117   if (d_ptr->viewfinder) {
118     qWarning() << "QtCamDevice: viewfinder cannot be replaced.";
119     return false;
120   }
121
122   if (!viewfinder->setDevice(this)) {
123     return false;
124   }
125
126   d_ptr->viewfinder = viewfinder;
127
128   return true;
129 }
130
131 QtCamViewfinder *QtCamDevice::viewfinder() const {
132   return d_ptr->viewfinder;
133 }
134
135 bool QtCamDevice::start() {
136   if (d_ptr->error) {
137     qWarning() << "Pipeline must be stopped first because of an error.";
138     return false;
139   }
140
141   if (!d_ptr->cameraBin) {
142     qWarning() << "Missing camerabin";
143     return false;
144   }
145
146   if (!d_ptr->viewfinder) {
147     qWarning() << "Viewfinder not set";
148     return false;
149   }
150
151   if (isRunning()) {
152     return true;
153   }
154
155   if (!d_ptr->active) {
156     d_ptr->image->activate();
157   }
158   else {
159     d_ptr->active->applySettings();
160   }
161
162   // Set sink.
163   if (!d_ptr->setViewfinderSink()) {
164     return false;
165   }
166
167   GstStateChangeReturn err = gst_element_set_state(d_ptr->cameraBin, GST_STATE_PLAYING);
168   if (err == GST_STATE_CHANGE_FAILURE) {
169     qWarning() << "Failed to start camera pipeline";
170     return false;
171   }
172
173   // We need to wait for startup to complet. There's a race condition somewhere in the pipeline.
174   // If we set the scene mode to night and update the resolution while starting up
175   // then subdevsrc2 barfs:
176   // streaming task paused, reason not-negotiated (-4)
177   GstState state;
178   if (err != GST_STATE_CHANGE_ASYNC) {
179     return true;
180   }
181
182   if (gst_element_get_state(d_ptr->cameraBin, &state, 0, GST_CLOCK_TIME_NONE)
183       != GST_STATE_CHANGE_SUCCESS) {
184     // We are seriously screwed up :(
185     return false;
186   }
187
188   if (state != GST_STATE_PLAYING) {
189     // Huh ? Is this even possible ??
190     return false;
191   }
192
193   return true;
194 }
195
196 bool QtCamDevice::stop(bool force) {
197   if (!d_ptr->cameraBin) {
198     return true;
199   }
200
201   if (d_ptr->error) {
202     gst_element_set_state(d_ptr->cameraBin, GST_STATE_NULL);
203     d_ptr->error = false;
204
205     d_ptr->viewfinder->stop();
206
207     return true;
208   }
209
210   GstState state;
211   gst_element_get_state(d_ptr->cameraBin, &state, 0, GST_CLOCK_TIME_NONE);
212
213   if (state == GST_STATE_NULL) {
214     // Nothing to do.
215     return true;
216   }
217
218   if (!isIdle()) {
219     if (!force) {
220       return false;
221     }
222   }
223
224   // First we go to ready:
225   GstStateChangeReturn st = gst_element_set_state(d_ptr->cameraBin, GST_STATE_READY);
226   if (st != GST_STATE_CHANGE_FAILURE) {
227     // Flush the bus:
228     d_ptr->listener->flushMessages();
229   }
230
231   // Now to NULL
232   gst_element_set_state(d_ptr->cameraBin, GST_STATE_NULL);
233
234   d_ptr->viewfinder->stop();
235
236   return true;
237 }
238
239 bool QtCamDevice::isRunning() {
240   if (!d_ptr->cameraBin) {
241     return false;
242   }
243
244   GstState state;
245   GstStateChangeReturn err = gst_element_get_state(d_ptr->cameraBin,
246                                                    &state, 0, GST_CLOCK_TIME_NONE);
247
248   if (err == GST_STATE_CHANGE_FAILURE || state != GST_STATE_PLAYING) {
249     return false;
250   }
251
252   return true;
253 }
254
255 bool QtCamDevice::isIdle() {
256   if (!d_ptr->cameraBin) {
257     return true;
258   }
259
260   gboolean idle = FALSE;
261   g_object_get(d_ptr->cameraBin, "idle", &idle, NULL);
262
263   return idle == TRUE;
264 }
265
266 QtCamImageMode *QtCamDevice::imageMode() const {
267   return d_ptr->image;
268 }
269
270 QtCamVideoMode *QtCamDevice::videoMode() const {
271   return d_ptr->video;
272 }
273
274 QtCamMode *QtCamDevice::activeMode() const {
275   return d_ptr->active;
276 }
277
278 QString QtCamDevice::name() const {
279   return d_ptr->name;
280 }
281
282 QVariant QtCamDevice::id() const {
283   return d_ptr->id;
284 }
285
286 QtCamConfig *QtCamDevice::config() const {
287   return d_ptr->conf;
288 }
289
290 QtCamGStreamerMessageListener *QtCamDevice::listener() const {
291   return d_ptr->listener;
292 }
293
294 QtCamNotifications *QtCamDevice::notifications() const {
295   return d_ptr->notifications;
296 }
297
298 #include "moc_qtcamdevice.cpp"