1 2 3 4 5 6 7 8 9 10 11 12 13 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/* Ekiga -- A VoIP and Video-Conferencing application
* Copyright (C) 2000-2009 Damien Sandras <dsandras@seconix.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
*
* Ekiga is licensed under the GPL license and as a special exception,
* you have permission to link or otherwise combine this program with the
* programs OPAL, OpenH323 and PWLIB, and distribute the combination,
* without applying the requirements of the GNU GPL to the OPAL, OpenH323
* and PWLIB programs, as long as you do follow the requirements of the
* GNU GPL for all the rest of the software thus combined.
*/
/*
* videooutput.cpp - description
* ------------------------------
* begin : Sat Feb 17 2001
* copyright : (C) 2000-2007 by Damien Sandras
* description : PVideoOutputDevice class to permit to display via
* GMVideoDisplay class
*
*/
#include <ptbuildopts.h>
#include <ptlib.h>
#include <opal/manager.h>
#include "opal-videooutput.h"
int PVideoOutputDevice_EKIGA::devices_nbr = 0;
PMutex PVideoOutputDevice_EKIGA::videoDisplay_mutex;
/* The Methods */
PVideoOutputDevice_EKIGA::PVideoOutputDevice_EKIGA (Ekiga::ServiceCore & _core)
: core (_core)
{
PWaitAndSignal m(videoDisplay_mutex); /* FIXME: if it's really needed
* then we may crash : it's wrong to
* use 'core' from a thread -- mutex
* or not mutex.
*/
videooutput_core = core.get<Ekiga::VideoOutputCore> ("videooutput-core");
is_active = FALSE;
/* Used to distinguish between input and output device. */
device_id = LOCAL;
}
PVideoOutputDevice_EKIGA::~PVideoOutputDevice_EKIGA()
{
PWaitAndSignal m(videoDisplay_mutex); /* FIXME: if it's really needed
* then we may crash : it's wrong to
* have played with 'core' from a thread
*/
if (is_active) {
devices_nbr--;
if (devices_nbr == 0)
videooutput_core->stop();
is_active = false;
}
}
bool
PVideoOutputDevice_EKIGA::Open (const PString &name,
G_GNUC_UNUSED bool unused)
{
if (name == "EKIGAIN") {
device_id = LOCAL;
} else { // EKIGAOUT
PString devname = name;
PINDEX id = devname.Find("ID=");
device_id = REMOTE + atoi(&devname[id + 3]);
}
return TRUE;
}
PStringArray PVideoOutputDevice_EKIGA::GetDeviceNames() const
{
PStringArray devlist;
devlist.AppendString(GetDeviceName());
return devlist;
}
bool PVideoOutputDevice_EKIGA::IsOpen ()
{
return TRUE;
}
bool PVideoOutputDevice_EKIGA::SetFrameData (unsigned x,
unsigned y,
unsigned width,
unsigned height,
const BYTE * data,
bool endFrame)
{
PWaitAndSignal m(videoDisplay_mutex);
if (x > 0 || y > 0)
return FALSE;
if (width < 160 || width > 2048)
return FALSE;
if (height <120 || height > 2048)
return FALSE;
if (!endFrame)
return FALSE;
if (!is_active) {
if (devices_nbr == 0) {
videooutput_core->start();
}
is_active = TRUE;
devices_nbr++;
}
videooutput_core->set_frame_data((const char*) data, width, height, device_id, devices_nbr);
return TRUE;
}
bool PVideoOutputDevice_EKIGA::SetColourFormat (const PString & colour_format)
{
if (colour_format == "YUV420P") {
return PVideoOutputDevice::SetColourFormat (colour_format);
}
return FALSE;
}
|