summaryrefslogtreecommitdiff
path: root/client/decoder.cc
blob: ebd50879c85cfc6a537ca806f0f8422b039e7692 (plain)
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* -*- 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()
{
  running = true;
  pframe = NULL;
  qApp->installEventFilter(this);
}

Decoder::~Decoder()
{
}

void Decoder::run()
{
  bool newconnection = true;

  //  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*/
 
  LibDVWrapper dvdecoder(DV::ColorBest, DV::PAL, DV::YUV_422);

  while(running) {
    Frame *dvframe = reader.readFrame();
    if(!dvframe) continue; // An empty frame

    Frame *yuvframe = dvdecoder.decode(dvframe); // Decode the DV frame to YUV422 and PCM audio

    if(dvframe->vframe) delete dvframe->vframe;
    if(dvframe->aframe) delete dvframe->aframe;
    delete dvframe;

    if(!yuvframe) continue; // An error ocurred

    if(MIaV::control.isFrozen() == false) {
      if(yuvframe->vformat != VF_YUV422) {
        fprintf(stderr, "Wrong videoformat in Decoder, expected VF_YUV422, got %i\n", yuvframe->vformat);
      } else {
        if(!pframe) {
          fprintf(stderr, "PFrame data not set!\n");
        } else {
          pmutex.lock();
          memcpy(pframe, yuvframe->vframe, yuvframe->vframesize);
          pmutex.unlock();
        }
      }
    }
    
    if(MIaV::control.isRecording()) {
      if(newconnection) {
        NetworkSender *sender = new NetworkSender(MIaV::control.getCpr());

        sendersmutex.lock();
        senders.push_back(sender);
        sendersmutex.unlock();

        sender->start();
        newconnection = false;
      }

      sendersmutex.lock();
      if(senders.isEmpty() == false) 
        senders.back()->pushFrame(yuvframe,
                                  MIaV::control.getShot(),
                                  MIaV::control.getFreeze());
      sendersmutex.unlock();

    } else {

      sendersmutex.lock();
      // Remove idle senders
      QLinkedList<NetworkSender*>::iterator i;
      for (i = senders.begin(); i != senders.end(); i++) {
        NetworkSender *ns = *i;
        if(ns->queueSize() == 0) {
          i = senders.erase(i);
          ns->stop();
          delete ns;
        }
      }
      sendersmutex.unlock();


      if(yuvframe->vframe) delete yuvframe->vframe;
      if(yuvframe->aframe) delete yuvframe->aframe;
      delete yuvframe;

      newconnection = true;
    
    }
  }
  //  closesem.release(); // Unlock the shutdown process
}

void Decoder::setPFrameData(char *pframe)
{
  pmutex.lock();
  this->pframe = pframe;
  pmutex.unlock();
}

void Decoder::pframeAcquire()
{
  pmutex.lock();;
}

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;
}

Status Decoder::status()
{
  Status s;

  s.server_diskspace = 0xffffffff;
  s.server_diskspace_max = 0xffffffff;
  s.server_load = 0xffffffff;
  s.server_load_max = 0xffffffff;
  s.server_ping_ms = 0xffffffff;
  s.server_fps = -1.0;

  sendersmutex.lock();
  // Get the server disk status etc.
  if(senders.isEmpty() == false) senders.back()->getServerStatus(&s);

  //  fprintf(stderr, "Load: %d of %d - ", s.server_load, s.server_load_max);
  //  fprintf(stderr, "Space: %d of %d\n", s.server_diskspace, s.server_diskspace_max);

  // Read out the queue sizes
  QLinkedList<NetworkSender*>::iterator i;
  for(i = senders.begin(); i != senders.end(); i++) {
    NetworkSender *ns = *i;
    s.queue_sizes.push_back(ns->queueSize());
  }
  sendersmutex.unlock();
  
  return s;
}