summaryrefslogtreecommitdiff
path: root/src/mov_encoder_writer.cc
blob: 83530ace1b9ae285b9b2510eee94351743290a3d (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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            mov_encoder_writer.cc
 *
 *  Sun May 22 12:51:36 CEST 2005
 *  Copyright  2005 Bent Bisballe
 *  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 <config.h>
#include "mov_encoder_writer.h"

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

#include <pthread.h>
#include <semaphore.h>

#include <errno.h>

#include <string>
using namespace std;

#include "miav_config.h"

#include <time.h>

#include "multiplexer.h"

MovEncoderWriter::MovEncoderWriter(const char* cpr, 
                                   FramePriorityQueue *v_q, pthread_mutex_t *v_m, sem_t *v_s, 
                                   FramePriorityQueue *a_q, pthread_mutex_t *a_m, sem_t *a_s, 
                                   Info *i)
{
  info = i;
  info->info("MovEncoderWriter");

  // Create path and filename
  char fname[256];
  string *server_root;
  char birthmonth[3];
  char date[32];

  // Get server root
  server_root = config->readString("server_movie_root");

  // Copy the bytes representing the birth month from the cpr
  // [dd][mm][yy]-[nn][nn]
  strncpy(birthmonth, &cpr[2], 2);
  birthmonth[2] = 0;

  // Create date (today) in [yyyy][mm][dd]
  struct tm *ltime;
  time_t t = time(NULL);
  ltime = localtime(&t);
  sprintf(date, "%.4d%.2d%.2d", 
          ltime->tm_year + 1900, 
          ltime->tm_mon, 
          ltime->tm_mday);

  sprintf(fname, "%s/%s/%s/%s-%s-", server_root->c_str(), birthmonth, cpr, cpr, date);

  file = new File(fname, "mpg", info);

  video_queue = v_q;
  video_sem = v_s;
  video_mutex = v_m;

  audio_queue = a_q;
  audio_sem = a_s;
  audio_mutex = a_m;

  video_frame_number = 0;
  audio_frame_number = 0;

  running = true;
}

MovEncoderWriter::~MovEncoderWriter()
{
  info->info("~MovEncoderWriter");
  delete file;
}


void MovEncoderWriter::thread_main()
{
  info->info("MovEncoderWriter::run");

  Multiplexer multiplexer(file, info, &running, 
                          video_queue, video_mutex, video_sem,
                          audio_queue, audio_mutex, audio_sem);
  multiplexer.multiplex();

#if 0
  int wrote = 0;
  while(running ) {
    sem_wait(audio_sem);

    // Lock output mutex
    pthread_mutex_lock(audio_mutex);
    audio_frame = audio_queue->top();
    if(audio_frame && audio_frame->number == audio_frame_number) audio_queue->pop();
    pthread_mutex_unlock(audio_mutex);
    // Unlock output mutex

    while(audio_frame && (audio_frame->number == audio_frame_number)) {
      if(file->Write(audio_frame->data, audio_frame->size) == -1) {
        info->error("File write returned -1.");
        return;
      }
      
      delete audio_frame;
      audio_frame = NULL;

      wrote ++;
      audio_frame_number++;

      // Lock output mutex
      pthread_mutex_lock(audio_mutex);
      audio_frame = audio_queue->top();
      if(audio_frame && audio_frame->number == audio_frame_number) audio_queue->pop();
      pthread_mutex_unlock(audio_mutex);
      // Unlock output mutex
    }
  }
#endif/*0*/

  //  info->info("Wrote %d mpeg packets.", wrote);
  info->info("MovEncoderWriter::stop");
}



































#if 0
void MovEncoderWriter::write_system_header(unsigned int audio_size, unsigned int video_size)
{
  /*
  Sys_header_struc sys_header;

  unsigned int mux_rate = (audio_size + video_size) * 25;

  create_sys_header(&sys_header,
                    mux_rate, //unsigned int	 rate_bound,
                    1, //unsigned char audio_bound,
                    1, //unsigned char fixed,
                    1, //unsigned char CSPS,
                    1, //unsigned char audio_lock,
                    1, //unsigned char video_lock,
                    1, //unsigned char video_bound,

                    AUDIO_STR_0, //unsigned char stream1,
                    0, //unsigned char buffer1_scale,
                    audio_size, //unsigned int  buffer1_size,
                    //                    audio_size/128, //unsigned int  buffer1_size,

                    VIDEO_STR_0, //unsigned char stream2,
                    1, //unsigned char buffer2_scale,
                    //                    video_size/1024, //unsigned int  buffer2_size,
                    video_size, //unsigned int  buffer2_size,

                    // We both have audio *and* video
                    STREAMS_BOTH);//unsigned int  which_streams

//  create_sys_header (sys_header, mux_rate, 1, 1, 1, 1, 1, 1,
//                     AUDIO_STR_0, 0, audio_size/128,
//                     VIDEO_STR_0, 1, video_size/1024, STREAMS_BOTH );

  file->Write(sys_header.buf, sizeof(sys_header.buf));
*/
  /**
   * My shot at a valid system header
   */
  /*
  // PACK
  char pack_start_code[] = {
    0x00, 0x00, 0x01, 0xBA,
  };

  file->Write(pack_start_code, sizeof(pack_start_code));

  char pack_data[] = {
    0x21,             // SCR-32 thru 30, marker bit
    0x00, 0x01,       // SCR-29 thru 15, marker bit
    0x80, 0xF5,       // SCR-14 thru 0, marker bit
    0x80, 0x1B, 0x83  // Marker bit, mux_rate, marker_bit
  };

  file->Write(pack_data, sizeof(pack_data));
  */
  /*
  // SYSTEM
  char system_header_start_code[] = {
    0x00, 0x00, 0x01, 0xBB,
  };

  file->Write(system_header_start_code, sizeof(system_header_start_code));

  char system_data[] = {
    0x00, 0x0C,       // Header length
    0x80, 0x1B, 0x83, // Marker bit, rate_bound,marker_bit
    0x07,             // Audio bound, fixed_flag, CSPS_flag
    0xA1,             // system_audio_lock_flag, system_video_lock_flag
    0xFF,             // Reserved byte
    0xC0,             // Stream id (audio)
    //    0xC0, 0x20,       // '11', STD_buffer_bound_scale, STD_buffer_size_bound
    0xFF, 0xFF,       // '11', STD_buffer_bound_scale, STD_buffer_size_bound
    0xE0,             // Stream id (video)
    //    0xE0, 0x2E        // '11', STD_buffer_bound_scale, STD_buffer_size_bound
    0xFF, 0xFF        // '11', STD_buffer_bound_scale, STD_buffer_size_bound
  };

  file->Write(system_data, sizeof(system_data));

  char padding_header_start_code[] = {
    0x00, 0x00, 0x01, 0xBE
  };

  file->Write(padding_header_start_code, sizeof(padding_header_start_code));

  char padding_data[] = {
    0x00, 0x04,            // Padding length
    0x0F, 0xFF, 0xFF, 0xFF // Padding
  };

  file->Write(padding_data, sizeof(padding_data));
  */
}

void MovEncoderWriter::write_packet_header(unsigned int audio_size, unsigned int video_size)
{
  /*
  Pack_struc pack;
  timestamp += 1.0;
  make_timecode(timestamp, &SCR);
  //  Timecode_struc SCR;
  unsigned int mux_rate = (audio_size + video_size) * 25;
  //  SCR.

  create_pack(&pack, mux_rate, &SCR);

  file->Write(pack.buf, sizeof(pack.buf));
  
  unsigned char timestampbuf[32];
  unsigned char *i = timestampbuf;
  buffer_timecode (&SCR, MARKER_JUST_PTS, &i);
  
  file->Write(timestampbuf, (int)i - (int)timestampbuf);
  */
}

void MovEncoderWriter::write_video_header(unsigned short int psize)
{
  // PES Header startcode
  char startcode[] = {
    0x00, 0x00, 0x01
  };

  // Video stream, index = 0
  char streamID[] = {
    0xE0
  };

  char packetsize[] = { 0x00, 0x00 };

  char stuffing_bytes[] = {
    0xFF, 0xFF, 0xFF, 0xFF,
    0xFF, 0xFF, 0xFF, 0xFF,
    0xFF, 0x0F
  };

  file->Write(startcode, sizeof(startcode));

  file->Write(streamID, sizeof(streamID));

  psize +=
    sizeof(stuffing_bytes);
  packetsize[0] = ((char*)&psize)[1];
  packetsize[1] = ((char*)&psize)[0];
  file->Write(packetsize, sizeof(packetsize));

  file->Write(stuffing_bytes, sizeof(stuffing_bytes));
}

void MovEncoderWriter::write_audio_header(unsigned short int psize)
{
  // PES Header startcode
  char startcode[] = {
    0x00, 0x00, 0x01
  };

  // Audio stream, index = 0
  char streamID[] = { 
    0xC0
  };

  char packetsize[] = { 0x00, 0x00 };

  char stuffing_bytes[] = {
    0xFF, 0xFF, 0xFF, 0xFF,
    0xFF, 0xFF, 0xFF
  };

  char std_buffer[] = {
    0x40, // STD_buffer_scale
    0x20  // STD_buffer_size
  };

  char PTS[] = {
    0x21,       // SCR-32 thru 30, marker bit
    0x00, 0x01, // SCR-29 thru 15, marker bit
    0xCE, 0x37  // SCR-14 thru 0, marker bit
  };

  file->Write(startcode, sizeof(startcode));

  file->Write(streamID, sizeof(streamID));

  psize += sizeof(stuffing_bytes) + sizeof(std_buffer) + sizeof(PTS);
  packetsize[0] = ((char*)&psize)[1];
  packetsize[1] = ((char*)&psize)[0];
  file->Write(packetsize, sizeof(packetsize));

  file->Write(stuffing_bytes, sizeof(stuffing_bytes));

  file->Write(std_buffer, sizeof(std_buffer));

  file->Write(PTS, sizeof(PTS));

}

#endif /*0*/