46a55026c26c913041a7443e933b2339f007b6d7
[harmattan/cameraplus] / lib / qtcamvideomode.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 "qtcamvideomode.h"
22 #include "qtcammode_p.h"
23 #include <QDebug>
24 #include "qtcamdevice_p.h"
25 #include "qtcamdevice.h"
26 #include "qtcamvideosettings.h"
27 #include "qtcamnotifications.h"
28
29 class QtCamVideoModePrivate : public QtCamModePrivate {
30 public:
31   QtCamVideoModePrivate(QtCamDevicePrivate *dev) :
32   QtCamModePrivate(dev),
33   settings(dev->conf->videoSettings(dev->id)),
34   resolution(settings->defaultResolution()) {
35
36   }
37
38   ~QtCamVideoModePrivate() {
39     delete settings;
40   }
41
42   void _d_idleStateChanged(bool isIdle) {
43     if (isIdle && dev->active == dev->video) {
44       QMetaObject::invokeMethod(dev->video, "recordingStateChanged");
45       QMetaObject::invokeMethod(dev->video, "canCaptureChanged");
46     }
47   }
48
49   QtCamVideoSettings *settings;
50   QtCamVideoResolution resolution;
51 };
52
53 QtCamVideoMode::QtCamVideoMode(QtCamDevicePrivate *dev, QObject *parent) :
54   QtCamMode(new QtCamVideoModePrivate(dev), "mode-video", "video-done", parent) {
55
56   d = (QtCamVideoModePrivate *)QtCamMode::d_ptr;
57
58   QString name = d_ptr->dev->conf->videoEncodingProfileName();
59   QString path = d_ptr->dev->conf->videoEncodingProfilePath();
60
61   if (!name.isEmpty() && !path.isEmpty()) {
62     GstEncodingProfile *profile = d_ptr->loadProfile(path, name);
63     if (profile) {
64       setProfile(profile);
65     }
66   }
67
68   // TODO: Use signals from QtCamNotifications instead ?
69   QObject::connect(d_ptr->dev->q_ptr, SIGNAL(idleStateChanged(bool)),
70                    this, SLOT(_d_idleStateChanged(bool)));
71 }
72
73 QtCamVideoMode::~QtCamVideoMode() {
74   d = 0;
75 }
76
77 bool QtCamVideoMode::canCapture() {
78   return QtCamMode::canCapture() && d_ptr->dev->q_ptr->isIdle();
79 }
80
81 void QtCamVideoMode::applySettings() {
82   bool night = d_ptr->inNightMode();
83
84   int fps = night ? d->resolution.nightFrameRate() : d->resolution.frameRate();
85
86   d_ptr->setCaps("viewfinder-caps", d->resolution.captureResolution(), fps);
87
88   d_ptr->setCaps("video-capture-caps", d->resolution.captureResolution(), fps);
89
90   setPreviewSize(d->resolution.previewResolution());
91
92   // Not sure this is needed but just in case.
93   d_ptr->resetCaps("image-capture-caps");
94 }
95
96 void QtCamVideoMode::start() {
97   // Nothing
98 }
99
100 void QtCamVideoMode::stop() {
101   if (isRecording()) {
102     stopRecording();
103   }
104 }
105
106 bool QtCamVideoMode::isRecording() {
107   return !d_ptr->dev->q_ptr->isIdle();
108 }
109
110 bool QtCamVideoMode::startRecording(const QString& fileName) {
111   if (!canCapture() || isRecording()) {
112     return false;
113   }
114
115   if (fileName.isEmpty()) {
116     return false;
117   }
118
119   setFileName(fileName);
120
121   QMetaObject::invokeMethod(d_ptr->dev->notifications, "videoRecordingStarted");
122
123   g_object_set(d_ptr->dev->cameraBin, "location", fileName.toUtf8().data(), NULL);
124   g_signal_emit_by_name(d_ptr->dev->cameraBin, "start-capture", NULL);
125
126   emit recordingStateChanged();
127
128   emit canCaptureChanged();
129
130   return true;
131 }
132
133 void QtCamVideoMode::stopRecording() {
134   if (isRecording()) {
135     g_signal_emit_by_name(d_ptr->dev->cameraBin, "stop-capture", NULL);
136   }
137 }
138
139 bool QtCamVideoMode::setResolution(const QtCamVideoResolution& resolution) {
140   d->resolution = resolution;
141
142   if (!d_ptr->dev->q_ptr->isRunning()) {
143     // We will return true here because setting the resolution on a non-running pipeline
144     // doesn't make much sense (Probably the only use case is as a kind of optimization only).
145     // We will set it anyway when the pipeline gets started.
146     return true;
147   }
148
149   if (isRecording()) {
150     return false;
151   }
152
153   applySettings();
154
155   return true;
156 }
157
158 void QtCamVideoMode::setProfile(GstEncodingProfile *profile) {
159   if (!d_ptr->dev->cameraBin) {
160     gst_encoding_profile_unref(profile);
161     return;
162   }
163
164   g_object_set(d_ptr->dev->cameraBin, "video-profile", profile, NULL);
165 }
166
167 QtCamVideoSettings *QtCamVideoMode::settings() {
168   return d->settings;
169 }
170
171 #include "moc_qtcamvideomode.cpp"