~ubuntu-branches/debian/stretch/sflphone/stretch

« back to all changes in this revision

Viewing changes to daemon/src/client/videomanager_stub.cpp

  • Committer: Package Import Robot
  • Author(s): Francois Marier, Francois Marier, Mark Purcell
  • Date: 2014-10-18 15:08:50 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20141018150850-2exfk34ckb15pcwi
Tags: 1.4.1-0.1
[ Francois Marier ]
* Non-maintainer upload
* New upstream release (closes: #759576, #741130)
  - debian/rules +PJPROJECT_VERSION := 2.2.1
  - add upstream patch to fix broken TLS support
  - add patch to fix pjproject regression

[ Mark Purcell ]
* Build-Depends:
  - sflphone-daemon + libavformat-dev, libavcodec-dev, libswscale-dev,
  libavdevice-dev, libavutil-dev
  - sflphone-gnome + libclutter-gtk-1.0-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2013 Savoir-Faire Linux Inc.
 
3
 *  Author: Patrick Keroulas <patrick.keroulas@savoirfairelinux.com>
 
4
 *
 
5
 *  This program is free software; you can redistribute it and/or modify
 
6
 *  it under the terms of the GNU General Public License as published by
 
7
 *  the Free Software Foundation; either version 3 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
 
18
 *
 
19
 *  Additional permission under GNU GPL version 3 section 7:
 
20
 *
 
21
 *  If you modify this program, or any covered work, by linking or
 
22
 *  combining it with the OpenSSL project's OpenSSL library (or a
 
23
 *  modified version of that library), containing parts covered by the
 
24
 *  terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
 
25
 *  grants you additional permission to convey the resulting work.
 
26
 *  Corresponding Source for a non-source form of such a combination
 
27
 *  shall include the source code for the parts of OpenSSL used as well
 
28
 *  as that of the covered work.
 
29
 */
 
30
 
 
31
#warning Using a stub file will produce a non working application
 
32
 
 
33
#include "client/videomanager.h"
 
34
 
 
35
VideoManager::VideoManager()
 
36
{}
 
37
 
 
38
VideoDeviceMonitor& VideoManager::getVideoDeviceMonitor()
 
39
{
 
40
}
 
41
 
 
42
void VideoManager::deviceEvent()
 
43
{
 
44
}
 
45
 
 
46
void VideoManager::startedDecoding(const std::string &id, const std::string,
 
47
                                    int w, int h)
 
48
{
 
49
}
 
50
 
 
51
void VideoManager::stoppedDecoding(const std::string &id, const std::string)
 
52
{
 
53
}
 
54
 
 
55
VideoCapabilities
 
56
VideoManager::getCapabilities(const std::string& name);
 
57
{
 
58
    return VideoCapabilities();
 
59
}
 
60
 
 
61
std::map<std::string, std::string> VideoManager::getSettings(const std::string& name)
 
62
{
 
63
    return std::map<std::string, std::string>();
 
64
}
 
65
 
 
66
void
 
67
VideoManager::applySettings(const std::string& name,
 
68
        std::map<std::string, std::string> settings)
 
69
{
 
70
}
 
71
 
 
72
bool VideoManager::hasCameraStarted()
 
73
{
 
74
    return false;
 
75
}
 
76
 
 
77
void VideoManager::startCamera()
 
78
{
 
79
}
 
80
 
 
81
void VideoManager::stopCamera()
 
82
{
 
83
}
 
84
 
 
85
std::weak_ptr<sfl_video::VideoFrameActiveWriter> VideoManager::getVideoCamera()
 
86
{
 
87
    return std::weak_ptr<sfl_video::VideoFrameActiveWriter>();
 
88
}