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
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
* decoder.cc
*
* Mon Mar 6 20:14:30 CET 2006
* Copyright 2006 Bent Bisballe Nyeng
* deva@aasimon.org
****************************************************************************/
/*
* This file is part of MIaV.
*
* MIaV 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.
*
* MIaV 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 MIaV; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include "decoder.h"
#include "info.h"
//#define READ_DV_FROM_FILE
#include "dv.h"
#ifdef READ_DV_FROM_FILE
#include "dvfile.h"
#else/* READ_DV_FROM_FILE*/
#include "dv1394.h"
#endif/* READ_DV_FROM_FILE*/
#include <QEvent>
#include <QApplication>
#include "control.h"
#include "libdv_wrapper.h"
Decoder::Decoder(NetworkSender *ns): closesem(1)
{
sender = ns;
running = true;
memset(pframe, 0, sizeof(pframe)); // Init an empty frame
qApp->installEventFilter(this);
}
Decoder::~Decoder()
{
}
void Decoder::run()
{
closesem.acquire(); // Lock the shutdown process
#ifdef READ_DV_FROM_FILE
dvfile reader;
#else/* READ_DV_FROM_FILE*/
dv1394 reader;
reader.connect();
#endif/* READ_DV_FROM_FILE*/
while(running) {
char *frame = (char*)reader.readFrame();
if(!frame) continue; // An empty frame
if(MIaV::control.isFrozen() == false) {
pmutex.lock();
memcpy(pframe, frame, DVPACKAGE_SIZE);
pmutex.unlock();
}
free(frame);
}
closesem.release(); // Unlock the shutdown process
}
char *Decoder::pframeAcquire()
{
pmutex.lock();
return pframe;
}
void Decoder::pframeRelease()
{
pmutex.unlock();
}
void Decoder::snapshot(char *rgb)
{
LibDVWrapper dv;
dv.setOutputBuffer(rgb, DV::BGR0);
pmutex.lock();
dv.decode(pframe);
pmutex.unlock();
}
bool Decoder::eventFilter(QObject *o, QEvent *e)
{
if (e->type() == QEvent::Close) {
// printf("QUIT from: %p, this: %p, testing: %p\n", o, this, qApp->activeWindow());
if(qApp->activeWindow() == (QWidget*)o) { // Ignore close events from non top level widgets
running = false; // Tell the thread to stop.
sleep(1);// Wait for the thread to stop. (The ugly way!)
// closesem.acquire(); // Wait for the thread to stop.
}
}
// standard event processing
return false;
}
|