summaryrefslogtreecommitdiff
path: root/src/encoder.cc
blob: 9563d89ce547d5484296565af1cc3a2458e3cc51 (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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            encoder.cc
 *
 *  Tue Apr 19 12:10:34 CEST 2005
 *  Copyright  2005 Bent Bisballe
 *  deva@aasimon.org
 ****************************************************************************/

/*
 * Originally from:
 * RTVideoRec Realtime video recoder and encoder for Linux
 *
 * Copyright (C) 2004  B. Stultiens
 * Copyright (C) 2004  Koen Otter and Glenn van der Meyden
 */

/*
 *    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 <config.h>
#ifdef USE_GUI

#include "util.h"
#include "encoder.h"

Encoder::Encoder(Info *ginfo,
                 const char *gip,
                 const int gport,
                 sem_t	*gsem,
                 Queue<Frame> *gqueue,
                 pthread_mutex_t *gmutex,
                 volatile int *grunning)
{
  info = ginfo;

  strcpy(ip, gip);
  port = gport;
  memset(cpr, 0, sizeof(cpr));

  sem = gsem;
  queue = gqueue;
  mutex = gmutex;
  running = grunning;

  //  record = 0;

 	sem_init(&record_sem, 0, 0);

  s = NULL;
  n = NULL;

  frozen = false;

  savestate_sent = false;
  savestate = NO_CHANGE;

  //  shoot_request = 0;
  //  shoot_value = 0;
  //  freeze_request = 0;
  //  freeze_value = 0;
}


Encoder::~Encoder()
{
  // If a hanging connection exists, we better close it.
  if(s) {
    if(n) delete n;
    delete s;
    s = NULL;
    n = NULL;
  }
}


void Encoder::encode()
{ 
  Frame *frame;

  while(*running) {
    sem_wait(sem);

    frame = queue->pop();
    
    if(frame) {
      if(frame->freeze == 1) frozen = true;
      if(frame->freeze == -1) frozen = false;
      if(frame->shoot) frozen = false;

      if(frame->record || 
         (frame->freeze == 1) || 
         frame->shoot) {

        // If no connection is present, make a new one
        if(!s) {
          s = new Socket(port, info);
          s->sconnect(ip);
          n = new Network(s, info);
        }

        n_header h;
      
        if(savestate != NO_CHANGE) savestate_sent = true;

        h.header_type = DATA_HEADER;
        sprintf(h.header.h_data.cpr, cpr);
        h.header.h_data.freeze = frame->freeze;
        h.header.h_data.snapshot = frame->shoot;
        h.header.h_data.record = frame->record;
        h.header.h_data.savestate = savestate;//NO_CHANGE;
        
        //        if(freeze_request != freeze_value) freeze_value = freeze_request;
        //        if(shoot_request != shoot_value) shoot_value = shoot_request;
        
        n->sendPackage(&h, frame->data, frame->size);
      } else {
        // When frozen we need to preserve the connection in order to
        // remember the frozen frame on the server side.
        if(!frozen) {
          // No data is to be sent, if we have a connection, destroy it.
          if(s) {
            if(n) delete n;
            delete s;
            s = NULL;
            n = NULL;
          }
        }
      }

      if(frame->shoot && !frozen && !frame->record) {
        // FIXME: This is ugly!
        // Bugfix... connection not cleared, when an 'unfrozen' snapshot is taken, 
        // and no recording is done.
        if(s) {
          if(n) delete n;
          delete s;
          s = NULL;
          n = NULL;
        }
      }

      if(frame) delete frame;
    }
  }
}


void Encoder::setCpr(char *newcpr)
{
  strcpy(cpr, newcpr);
}


void Encoder::freeze()
{ 
  /* 
  if(!s) {
    s = new Socket(port, errobj);
    s->sconnect(ip);
    n = new Network(s, errobj);
  }
  */
  //  if(!errobj->hasError()) freeze_request = 1 - freeze_request;
}


/*
 * shoot
 * Set the shoot bit in the network header on the current frame.
 * return the decodet (rgba) version af that frame, for thumbnail show.
 */
void Encoder::shoot()
{
  /*
  if(!s) {
    s = new Socket(port, errobj);
    s->sconnect(ip);
    n = new Network(s, errobj);
  }
  */
  //  if(!errobj->hasError()) shoot_request = 1 - shoot_request;
  //  getScreenshot(rgb);
}


void Encoder::thread_main()
{
  encode();
  if(s) {
    if(n) delete n;
    delete s;
    s = NULL;
    n = NULL;
  }
  fprintf(stderr, "Encoder thread stopped.\n"); fflush(stderr);
}


void Encoder::start()
{
  savestate = NO_CHANGE;
  savestate_sent = false;
  /*
  if(!s) {
    s = new Socket(port, errobj);
    s->sconnect(ip);
    n = new Network(s, errobj);
  }
  */
  //  if(!errobj->hasError()) record = 1;
}


void Encoder::stop(n_savestate save)
{
  savestate = save;
  // Don't return until we are sure the savestate has been sent.
  while(savestate_sent == false) {
    // Just wait a while (in a while!)
    sleep_0_2_frame();
  }
/*
  struct timespec ts;
  // TODO: set save state in package header.

  // Lock the queue and wait until all elements are sent on the network.
  queue->lock();
  fprintf(stderr, "Emptying queue"); fflush(stderr);
  while(queue->peek()) {
    // Remove any late buffer
    // We don't care, the encoder finishes them all
    ts.tv_sec = 0;
    ts.tv_nsec = 500000000L;	// 100ms
    fprintf(stderr, "."); fflush(stderr);
    nanosleep(&ts, NULL);
  }
  fprintf(stderr, "done!\n"); fflush(stderr);

  record = 0;

  queue->unlock();
*/
/*
  if(s) {
    if(n) delete n;
    delete s;
    s = NULL;
    n = NULL;
  }
*/
}

#endif /*USE_GUI*/