summaryrefslogtreecommitdiff
path: root/src/decoder.cc
blob: fcbf136850ef90870d67605cfbacbe0116bd9db6 (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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
 * RTVideoRec Realtime video recoder and encoder for Linux
 *
 * Copyright (C) 2004  Bent Bisballe
 * Copyright (C) 2004  B. Stultiens
 * Copyright (C) 2004  Koen Otter and Glenn van der Meyden
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#include <config.h>
#ifdef USE_GUI
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <libraw1394/raw1394.h>
#include "decoder.h"
#include "debug.h"

static AVCodecContext mycodec;

Decoder::Decoder(Error* err,
                 char *device, 
                 int channel, 
                 sem_t *gencode_sem,
                 sem_t *gplayer_sem,
                 Queue<DVFrame> *gencode_queue,
                 Queue<FFFrame> *gplayer_queue,
                 pthread_mutex_t *gmutex,
                 volatile int *grunning)
{
  errobj = err;
device = "";
  encode_sem = gencode_sem;
  player_sem = gplayer_sem;
  encode_queue = gencode_queue;
  player_queue = gplayer_queue;
  mutex = gmutex;
  running = grunning;

  AVFormatContext *ifc;
  AVFormatParameters dvpars;
  AVInputFormat *iformat;
  AVCodec *dec_codec;
  
/*
  memset(&dvpars, 0, sizeof(dvpars));
  
  if(!(iformat = av_find_input_format("dv1394"))) {
    errobj->pushError("Failed to get input format dv1394.");
    fc = NULL; 
    return;
  }
  
  dvpars.device  = device;	// "/dev/dv1394"; 
  dvpars.channel = channel;
  dvpars.standard = "pal";
  memset(&dvpars, 0, sizeof(dvpars));
  dvpars.device  = "";
  int err1;
  if((err1 = av_open_input_file(&ifc, "file:///root/dvgrab-001.dv", iformat, 0, &dvpars)) < 0) {
fprintf(stderr, "Error in open: %d\n", err1);
    errobj->pushError("Device is in use.");
    fc = NULL; 
//    return;
  }
  if(av_find_stream_info(ifc) < 0) {
    errobj->pushError("Could not find enough parameters.");
    fc = NULL; 
//    return;
  }

  dump_format(ifc, 1, "", 0);
*/	
  if(!(dec_codec = avcodec_find_decoder(CODEC_ID_DVVIDEO/*ifc->streams[0]->codec.codec_id*/))) {
    errobj->pushError("Unsupported codec for input stream.");
    fc = NULL;
    return;
  }

  if(avcodec_open(&mycodec/*&ifc->streams[0]->codec*/, dec_codec) < 0) {
    errobj->pushError("Error while opening codec for input stream.");
    fc = NULL; 
    return;
  }

  fc = ifc;
}

Decoder::~Decoder()
{
  avcodec_close(&fc->streams[0]->codec);
  av_close_input_file(fc);
}

static int raw_reader( raw1394handle_t handle, int channel, size_t length, quadlet_t *data )
{
	/* skip empty packets */
	static char *framedata = NULL;
//printf("raw_reader\n"); fflush(stdout);
	if ( length > 16 )
	{
		unsigned char * p = ( unsigned char* ) & data[ 3 ];
		int section_type = p[ 0 ] >> 5;           /* section type is in bits 5 - 7 */
		int dif_sequence = p[ 1 ] >> 4;           /* dif sequence number is in bits 4 - 7 */
		int dif_block = p[ 2 ];

		/* if we are at the beginning of a frame, we put the previous
		   frame in our output_queue.  Then we try to get an unused
		   frame_buffer from the buffer_queue for the current frame.
		   We must lock the queues because they are shared between
		   this thread and the main thread. */
		if ( section_type == 0 && dif_sequence == 0 )
		{
			if ( framedata != NULL )
			{
				raw1394_set_userdata(handle, (void *)framedata);
				framedata = NULL;
			}
		}

		if(!framedata)
		{
			framedata = (char *)malloc(DVPACKAGE_SIZE); // dvframe.h
			if(!framedata)
			{
				/* We're fucked */
				exit(1);
			}
		}

		switch ( section_type )
		{
		case 0:    /* 1 Header block */
			/* p[3] |= 0x80; // hack to force PAL data */
			memcpy( framedata + dif_sequence * 150 * 80, p, 480 );
			break;

		case 1:    /* 2 Subcode blocks */
			memcpy( framedata + dif_sequence * 150 * 80 + ( 1 + dif_block ) * 80, p, 480 );
			break;

		case 2:    /* 3 VAUX blocks */
			memcpy( framedata + dif_sequence * 150 * 80 + ( 3 + dif_block ) * 80, p, 480 );
			break;

		case 3:    /* 9 Audio blocks interleaved with video */
			memcpy( framedata + dif_sequence * 150 * 80 + ( 6 + dif_block * 16 ) * 80, p, 480 );
			break;

		case 4:    /* 135 Video blocks interleaved with audio */
			memcpy( framedata + dif_sequence * 150 * 80 + ( 7 + ( dif_block / 15 ) + dif_block ) * 80, p, 480 );
			break;

		default:    /* we can´t handle any other data */
			break;
		}
	}
	return 0;
}


void Decoder::decode()
{
	int port = 0;
	int channel = 63;
	int n_ports;
	struct raw1394_portinfo pinf[ 16 ];
	raw1394handle_t handle;
	handle = raw1394_new_handle();
	if ( !handle )
	{
		fprintf( stderr, "raw1394 - failed to get handle: %s.\n", strerror( errno ) );
		exit( EXIT_FAILURE );
	}

	if ( ( n_ports = raw1394_get_port_info( handle, pinf, 16 ) ) < 0 )
	{
		fprintf( stderr, "raw1394 - failed to get port info: %s.\n", strerror( errno ) );
		raw1394_destroy_handle( handle );
		exit( EXIT_FAILURE );
	}
printf("n_ports: %d\n", n_ports);
	/* tell raw1394 which host adapter to use */
	if ( raw1394_set_port( handle, port ) < 0 )
	{
		fprintf( stderr, "raw1394 - failed to set set port: %s.\n", strerror( errno ) );
		exit( EXIT_FAILURE );
	}

	raw1394_set_iso_handler( handle, channel, raw_reader); // 63 is default channel... sucks.
	raw1394_set_userdata( handle, ( void* ) NULL);
	printf("fisk: %d\n", raw1394_start_iso_rcv( handle, channel)); fflush(stdout);

/*
  if(fc == NULL) {
    errobj->pushError("Decoder not initialized.");
    return;
  }
*/
  while(*running) {
    AVPacket pkt;
    uint8_t *ptr;
    int len;
    SDL_Event user_event;
    
//    av_read_packet(fc, &pkt);

    while(1)
    {
      raw1394_loop_iterate(handle);
//printf("-"); fflush(stdout);
      pkt.data = (uint8_t *)raw1394_get_userdata(handle);
      if(pkt.data)
      {
         raw1394_set_userdata(handle, NULL);
         break;
      }
    }
printf("."); fflush(stdout);
    len = pkt.size = DVPACKAGE_SIZE;
    ptr = pkt.data;
    pkt.stream_index = 0;

    // NOTE: we only decode video, we only need the data from stream_index 0
    // (stream 0: video, stream 1: audio)
    //    while(pkt.stream_index == 0 && len > 0) {
    while(pkt.stream_index == 0 && len > 0) {
      int ret;
      int got_picture;
      //      buf_t *buf = buf_alloc();
      FFFrame *fff = new FFFrame(); ALLOC(fff, "FFFrame in decode");
//      DVFrame *dvf = new DVFrame(); ALLOC(dvf, "DVFrame in decode");
//      dvf->type = DVF_VIDEO;
      
//      memcpy(dvf->frame, ptr, len);

      //printf("DVBufferSize: [%d]bytes\n", len);
      
      ret = avcodec_decode_video(&mycodec/*&fc->streams[0]->codec*/, 
                                 fff->frame, &got_picture, ptr, len);
      
      if(ret < 0) {
        errobj->pushError("Error while decoding stream.");
        return;
      }

      len -= ret;
      ptr += ret;
      
      pthread_mutex_lock(mutex);
//      encode_queue->push(dvf);
      player_queue->push(fff);
      pthread_mutex_unlock(mutex);
      
      sem_post(encode_sem);
      
      user_event.type = SDL_USEREVENT;
      user_event.user.code = 0;
      user_event.user.data1 = NULL;
      user_event.user.data2 = NULL;
//      SDL_PushEvent(&user_event);
    }
free(ptr);
    /*
    // For later use, when audio must be implemented
    while(pkt.stream_index == 1 && len > 0) {
      DVFrame *dvf = new DVFrame();
      dvf->type = DVF_AUDIO;

      memcpy(dvf->frame, ptr, sizeof(dvf->frame));

      ptr += sizeof(dvf->frame);
      len -= sizeof(dvf->frame);

      pthread_mutex_lock(mutex);
      encode_queue->push(dvf);
      pthread_mutex_unlock(mutex);
      
      sem_post(encode_sem);
    }
    */
//    av_free_packet(&pkt); FREE(&pkt);
  }

  /* Kick the others so they wake up with empty queues */
  sem_post(encode_sem);
  pthread_exit(NULL);
}

void Decoder::run() {
  decode();
}

#endif /*USE_GUI*/