]> git.sesse.net Git - vlc/blob - plugins/vcd/input_vcd.c
This is the first part of the new configuration architecture for vlc.
[vlc] / plugins / vcd / input_vcd.c
1 /****************************************************************************
2  * input_vcd.c: VideoCD raw reading plugin.
3  *****************************************************************************
4  * Copyright (C) 1998-2001 VideoLAN
5  *
6  * Author: Johan Bilien <jobi@via.ecp.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  * 
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * Preamble
25  *****************************************************************************/
26 #include <stdio.h>
27 #include <stdlib.h>
28
29 #include <videolan/vlc.h>
30
31 #ifdef HAVE_UNISTD_H
32 #   include <unistd.h>
33 #endif
34
35 #include <fcntl.h>
36 #include <sys/types.h>
37 #include <string.h>
38 #include <errno.h>
39
40 #ifdef STRNCASECMP_IN_STRINGS_H
41 #   include <strings.h>
42 #endif
43
44 #if defined( WIN32 )
45 #   include <io.h>                                                 /* read() */
46 #else
47 #   include <sys/uio.h>                                      /* struct iovec */
48 #endif
49
50 #if defined( WIN32 )
51 #   include "input_iovec.h"
52 #endif
53
54 #include "stream_control.h"
55 #include "input_ext-intf.h"
56 #include "input_ext-dec.h"
57 #include "input_ext-plugins.h"
58
59 #include "debug.h"
60
61 #include "input_vcd.h"
62 #include "cdrom_tools.h"
63
64 /* how many blocks VCDRead will read in each loop */
65 #define VCD_BLOCKS_ONCE 4
66 #define VCD_DATA_ONCE   (2 * VCD_BLOCKS_ONCE)
67 #define BUFFER_SIZE VCD_DATA_SIZE
68
69 /*****************************************************************************
70  * Local prototypes
71  *****************************************************************************/
72 /* called from outside */
73 static int  VCDProbe        ( struct input_thread_s * );
74 static void VCDInit         ( struct input_thread_s * );
75 static int  VCDRead         ( struct input_thread_s *, data_packet_t ** );
76 static int  VCDSetArea      ( struct input_thread_s *, struct input_area_s * );
77 static int  VCDSetProgram   ( struct input_thread_s *, pgrm_descriptor_t * );
78 static void VCDOpen         ( struct input_thread_s *);
79 static void VCDClose        ( struct input_thread_s *);
80 static void VCDEnd          ( struct input_thread_s *);
81 static void VCDSeek         ( struct input_thread_s *, off_t );
82 static int  VCDRewind       ( struct input_thread_s * );
83
84 /*****************************************************************************
85  * Declare a buffer manager
86  *****************************************************************************/
87 #define FLAGS           BUFFERS_NOFLAGS
88 #define NB_LIFO         2
89 DECLARE_BUFFERS_EMBEDDED( FLAGS, NB_LIFO );
90 DECLARE_BUFFERS_INIT( FLAGS, NB_LIFO );
91 DECLARE_BUFFERS_END( FLAGS, NB_LIFO );
92 DECLARE_BUFFERS_NEWPACKET( FLAGS, NB_LIFO );
93 DECLARE_BUFFERS_DELETEPACKET( FLAGS, NB_LIFO, 1000 );
94 DECLARE_BUFFERS_NEWPES( FLAGS, NB_LIFO );
95 DECLARE_BUFFERS_DELETEPES( FLAGS, NB_LIFO, 1000 );
96
97
98 /*****************************************************************************
99  * Functions exported as capabilities. They are declared as static so that
100  * we don't pollute the namespace too much.
101  *****************************************************************************/
102 void _M( input_getfunctions )( function_list_t * p_function_list )
103 {
104 #define input p_function_list->functions.input
105     input.pf_probe            = VCDProbe;
106     input.pf_init             = VCDInit;
107     input.pf_open             = VCDOpen;
108     input.pf_close            = VCDClose;
109     input.pf_end              = VCDEnd;
110     input.pf_init_bit_stream  = InitBitstream;
111     input.pf_read             = VCDRead;
112     input.pf_set_area         = VCDSetArea;
113     input.pf_set_program      = VCDSetProgram;
114     input.pf_demux            = input_DemuxPS;
115     input.pf_new_packet       = input_NewPacket;
116     input.pf_new_pes          = input_NewPES;
117     input.pf_delete_packet    = input_DeletePacket;
118     input.pf_delete_pes       = input_DeletePES;
119     input.pf_rewind           = VCDRewind;
120     input.pf_seek             = VCDSeek;
121 #undef input
122 }
123
124 /*
125  * Data reading functions
126  */
127
128 /*****************************************************************************
129  * VCDProbe: verifies that the stream is a PS stream
130  *****************************************************************************/
131 static int VCDProbe( input_thread_t * p_input )
132 {
133     char * psz_name = p_input->p_source;
134
135     if( ( strlen(psz_name) > 4 ) && !strncasecmp( psz_name, "vcd:", 4 ) )
136     {
137         /* If the user specified "vcd:" then it's probably a VCD */
138         return 0;
139     }
140
141     return -1;
142 }
143
144 /*****************************************************************************
145  * VCDOpen: open vcd
146  *****************************************************************************/
147 static void VCDOpen( struct input_thread_s *p_input )
148 {
149     vlc_mutex_lock( &p_input->stream.stream_lock );
150
151     /* If we are here we can control the pace... */
152     p_input->stream.b_pace_control = 1;
153
154     p_input->stream.b_seekable = 1;
155     p_input->stream.p_selected_area->i_size = 0;
156     p_input->stream.p_selected_area->i_tell = 0;
157
158     vlc_mutex_unlock( &p_input->stream.stream_lock );
159
160     /* XXX: put this shit in an access plugin */
161     if( strlen( p_input->p_source ) > 4
162          && !strncasecmp( p_input->p_source, "vcd:", 4 ) )
163     {
164         p_input->i_handle
165             = open( p_input->p_source + 4, O_RDONLY | O_NONBLOCK );
166     }
167     else
168     {
169         p_input->i_handle
170             = open( p_input->p_source, O_RDONLY | O_NONBLOCK );
171     }
172
173     if( p_input->i_handle == -1 )
174     {
175         p_input->b_error = 1;
176     }
177 }
178
179 /*****************************************************************************
180  * VCDClose: close vcd
181  *****************************************************************************/
182 static void VCDClose( struct input_thread_s *p_input )
183 {
184     close( p_input->i_handle );
185 }
186
187 /*****************************************************************************
188  * VCDInit: initializes VCD structures
189  *****************************************************************************/
190 static void VCDInit( input_thread_t * p_input )
191 {
192     thread_vcd_data_t *  p_vcd;
193     int                  i_title;
194     int                  i_chapter;
195     int                  i;
196     input_area_t *       p_area;
197     es_descriptor_t *    p_es;
198
199     p_vcd = malloc( sizeof(thread_vcd_data_t) );
200
201     if( p_vcd == NULL )
202     {
203         intf_ErrMsg( "vcd error: out of memory" );
204         p_input->b_error = 1;
205         return;
206     }
207
208     p_input->p_plugin_data = (void *)p_vcd;
209
210     if( (p_input->p_method_data = input_BuffersInit()) == NULL )
211     {
212         free( p_vcd );
213         p_input->b_error = 1;
214         return;
215     }
216
217     p_vcd->i_handle = p_input->i_handle;
218
219     /* We read the Table Of Content information */
220     p_vcd->nb_tracks = ioctl_GetTrackCount( p_input->i_handle,
221                                             p_input->p_source );
222     if( p_vcd->nb_tracks < 0 )
223     {
224         input_BuffersEnd( p_input->p_method_data );
225         free( p_vcd );
226         p_input->b_error = 1;
227         return;
228     }
229     else if( p_vcd->nb_tracks <= 1 )
230     {
231         intf_ErrMsg( "input error: no movie tracks found" );
232         input_BuffersEnd( p_input->p_method_data );
233         free( p_vcd );
234         p_input->b_error = 1;
235         return;
236     }
237
238     p_vcd->p_sectors = ioctl_GetSectors( p_input->i_handle,
239                                          p_input->p_source );
240     if ( p_vcd->p_sectors == NULL )
241     {
242         input_BuffersEnd( p_input->p_method_data );
243         free( p_vcd );
244         p_input->b_error = 1;
245         return;
246     }
247
248     /* Set stream and area data */
249     vlc_mutex_lock( &p_input->stream.stream_lock );
250
251     /* Initialize ES structures */
252     input_InitStream( p_input, sizeof( stream_ps_data_t ) );
253
254     /* disc input method */
255     p_input->stream.i_method = INPUT_METHOD_VCD;
256
257 #define area p_input->stream.pp_areas
258     for( i = 1 ; i <= p_vcd->nb_tracks - 1 ; i++ )
259     {
260         input_AddArea( p_input );
261
262         /* Titles are Program Chains */
263         area[i]->i_id = i;
264
265         /* Absolute start offset and size */
266         area[i]->i_start = (off_t)p_vcd->p_sectors[i] * (off_t)VCD_DATA_SIZE;
267         area[i]->i_size = (off_t)(p_vcd->p_sectors[i+1] - p_vcd->p_sectors[i])
268                            * (off_t)VCD_DATA_SIZE;
269
270         /* Number of chapters */
271         area[i]->i_part_nb = 0;   // will be the entry points
272         area[i]->i_part = 1;
273
274         /* Number of angles */
275         area[i]->i_angle_nb = 1; // no angle support in VCDs
276         area[i]->i_angle = 1;
277
278         area[i]->i_plugin_data = p_vcd->p_sectors[i];
279     }
280 #undef area
281
282     /* Get requested title - if none try the first title */
283     i_title = config_GetIntVariable( INPUT_TITLE_VAR );
284     if( i_title <= 0 )
285     {
286         i_title = 1;
287     }
288
289     // p_vcd->i_track = i_title-1;
290
291     /* Get requested chapter - if none defaults to first one */
292     i_chapter = config_GetIntVariable( INPUT_CHAPTER_VAR );
293     if( i_chapter <= 0 )
294     {
295         i_chapter = 1;
296     }
297
298     p_input->stream.pp_areas[i_title]->i_part = i_chapter;
299
300     p_area = p_input->stream.pp_areas[i_title];
301
302     VCDSetArea( p_input, p_area );
303
304     /* Set program information. */
305
306     input_AddProgram( p_input, 0, sizeof( stream_ps_data_t ) );
307     p_input->stream.p_selected_program = p_input->stream.pp_programs[0];
308
309     /* No PSM to read in disc mode, we already have all the information */
310     p_input->stream.p_selected_program->b_is_ok = 1;
311
312     p_es = input_AddES( p_input, p_input->stream.p_selected_program, 0xe0, 0 );
313     p_es->i_stream_id = 0xe0;
314     p_es->i_type = MPEG1_VIDEO_ES;
315     p_es->i_cat = VIDEO_ES;
316
317     if( p_main->b_video )
318     {
319         input_SelectES( p_input, p_es );
320     }
321
322     p_es = input_AddES( p_input, p_input->stream.p_selected_program, 0xc0, 0 );
323     p_es->i_stream_id = 0xc0;
324     p_es->i_type = MPEG1_AUDIO_ES;
325     p_es->b_audio = 1;
326     p_es->i_cat = AUDIO_ES;
327
328     if( p_main->b_audio )
329     {
330         input_SelectES( p_input, p_es );
331     }
332
333     vlc_mutex_unlock( &p_input->stream.stream_lock );
334 }
335
336 /*****************************************************************************
337  * VCDEnd: frees unused data
338  *****************************************************************************/
339 static void VCDEnd( input_thread_t * p_input )
340 {
341     thread_vcd_data_t *     p_vcd;
342
343     input_BuffersEnd( p_input->p_method_data );
344
345     p_vcd = (thread_vcd_data_t*)p_input->p_plugin_data;
346
347     free( p_vcd );
348 }
349
350 /*****************************************************************************
351  * VCDSetProgram: Does nothing since a VCD is mono_program
352  *****************************************************************************/
353 static int VCDSetProgram( input_thread_t * p_input,
354                           pgrm_descriptor_t * p_program)
355 {
356     return 0;
357 }
358
359
360 /*****************************************************************************
361  * VCDSetArea: initialize input data for title x, chapter y.
362  * It should be called for each user navigation request.
363  ****************************************************************************/
364 static int VCDSetArea( input_thread_t * p_input, input_area_t * p_area )
365 {
366     thread_vcd_data_t *     p_vcd;
367
368     p_vcd = (thread_vcd_data_t*)p_input->p_plugin_data;
369
370     /* we can't use the interface slider until initilization is complete */
371     p_input->stream.b_seekable = 0;
372
373     if( p_area != p_input->stream.p_selected_area )
374     {
375         /* Reset the Chapter position of the current title */
376         p_input->stream.p_selected_area->i_part = 1;
377         p_input->stream.p_selected_area->i_tell = 0;
378
379         /* Change the default area */
380         p_input->stream.p_selected_area = p_area;
381
382         /* Change the current track */
383         /* The first track is not a valid one  */
384         p_vcd->i_track = p_area->i_id;
385         p_vcd->i_sector = p_vcd->p_sectors[p_vcd->i_track];
386     }
387
388     /* warn interface that something has changed */
389     p_input->stream.b_seekable = 1;
390     p_input->stream.b_changed = 1;
391
392     return 0;
393 }
394
395 /*****************************************************************************
396  * VCDRead: reads from the VCD into PES packets.
397  *****************************************************************************
398  * Returns -1 in case of error, 0 in case of EOF, otherwise the number of
399  * packets.
400  *****************************************************************************/
401 static int VCDRead( input_thread_t * p_input, data_packet_t ** pp_data )
402 {
403     thread_vcd_data_t *     p_vcd;
404     data_packet_t *         p_data;
405     int                     i_packet_size;
406     int                     i_index;
407     int                     i_packet;
408     u32                     i_header;
409     byte_t                  p_buffer[ VCD_DATA_SIZE ];
410     boolean_t               b_eot = 0; /* end of track */
411     /* boolean_t               b_eoc; No chapters yet */
412
413     p_vcd = (thread_vcd_data_t *)p_input->p_plugin_data;
414
415     i_packet = 0;
416     *pp_data = NULL;
417
418     while( i_packet < VCD_DATA_ONCE )
419     {
420         if( ioctl_ReadSector( p_vcd->i_handle, p_vcd->i_sector, p_buffer ) )
421         {
422             /* Read error, but assume we reached the end of the track */
423             b_eot = 1;
424             break;
425         }
426
427         p_vcd->i_sector++;
428
429         if( p_vcd->i_sector >= p_vcd->p_sectors[p_vcd->i_track + 1] )
430         {
431             b_eot = 1;
432             break;
433         }
434
435         i_index = 0;
436
437         while( i_index < BUFFER_SIZE-6 && i_packet < VCD_DATA_ONCE )
438         {
439             i_header = U32_AT(p_buffer + i_index);
440
441             /* It is common for MPEG-1 streams to pad with zeros
442              * (although it is forbidden by the recommendation), so
443              * don't bother everybody in this case. */
444             while( !i_header && (++i_index < BUFFER_SIZE - 4) )
445             {
446                 i_header = U32_AT(p_buffer + i_index);
447             }
448
449             if( !i_header )
450             {
451                 intf_WarnMsg( 12, "vcd warning: zero-padded packet" );
452                 break;
453             }
454
455             /* Read the stream until we find a startcode. */
456             while( (i_header & 0xFFFFFF00) != 0x100L
457                      && (++i_index < BUFFER_SIZE - 4) )
458             {
459                 i_header = U32_AT(p_buffer + i_index);
460             }
461
462             if( (i_header & 0xFFFFFF00) != 0x100L )
463             {
464                 intf_WarnMsg( 3, "vcd warning: no packet at sector %d",
465                                  p_vcd->i_sector - 1 );
466                 break; /* go to the next sector */
467             }
468
469             switch( i_header )
470             {
471                 /* 0x1b9 == SYSTEM_END_CODE, it is only 4 bytes long. */
472                 case 0x1b9:
473                     i_packet_size = -2;
474                     break;
475
476                 /* Pack header */
477                 case 0x1ba:
478                     if( ( *( p_buffer + ( i_index + 4 ) ) & 0xC0) == 0x40 )
479                     {
480                         /* MPEG-2 */
481                         i_packet_size = 8;
482                     }
483                     else if( (*(p_buffer + ( i_index + 4 ) ) & 0xF0) == 0x20 )
484                     {
485                         /* MPEG-1 */
486                         i_packet_size = 6;
487                     }
488                     else
489                     {
490                         intf_ErrMsg( "vcd error: unable to determine "
491                                      "stream type" );
492                         return( -1 );
493                     }
494                     break;
495
496                 /* The packet is at least 6 bytes long. */
497                 default:
498                     /* That's the case for all packets, except pack header. */
499                     i_packet_size = U16_AT((p_buffer + ( i_index + 4 )));
500                     break;
501             }
502
503             if ( i_index + i_packet_size > BUFFER_SIZE )
504             {
505                 intf_ErrMsg( "vcd error: packet too long (%i)",
506                              i_index + i_packet_size );
507                 continue;
508             }
509
510             /* Fetch a packet of the appropriate size. */
511             p_data = p_input->pf_new_packet( p_input->p_method_data,
512                                              i_packet_size + 6 );
513
514             if( p_data == NULL )
515             {
516                 intf_ErrMsg( "vcd error: out of memory" );
517                 return( -1 );
518             }
519
520             if( U32_AT(p_buffer) != 0x1B9 )
521             {
522                 FAST_MEMCPY( p_data->p_demux_start, p_buffer + i_index,
523                              6 + i_packet_size );
524                 i_index += ( 6 + i_packet_size );
525             }
526             else
527             {
528                 /* Copy the small header. */
529                 memcpy( p_data->p_demux_start, p_buffer + i_index, 4 );
530                 i_index += 4;
531             }
532
533             /* Give the packet to the other input stages. */
534             *pp_data = p_data;
535             pp_data = &p_data->p_next;
536
537             i_packet++;
538         }
539     }
540
541     vlc_mutex_lock( &p_input->stream.stream_lock );
542
543     p_input->stream.p_selected_area->i_tell =
544         (off_t)p_vcd->i_sector * (off_t)VCD_DATA_SIZE
545           - p_input->stream.p_selected_area->i_start;
546
547     /* no chapter for the moment*/
548 #if 0
549     if( b_eoc )
550     {
551         /* We modify i_part only at end of chapter not to erase
552          * some modification from the interface */
553         p_input->stream.p_selected_area->i_part = p_vcd->i_chapter;
554     }
555 #endif
556
557     if( b_eot )
558     {
559         input_area_t *p_area;
560
561         /* EOF ? */
562         if( p_vcd->i_track >= p_vcd->nb_tracks - 1 )
563         {
564             vlc_mutex_unlock( &p_input->stream.stream_lock );
565             return 0;
566         }
567
568         intf_WarnMsg( 4, "vcd info: new title" );
569
570         p_area = p_input->stream.pp_areas[
571                                  p_input->stream.p_selected_area->i_id + 1 ];
572
573         p_area->i_part = 1;
574         VCDSetArea( p_input, p_area );
575     }
576
577     vlc_mutex_unlock( &p_input->stream.stream_lock );
578
579     return( i_packet + 1 );
580 }
581
582 /*****************************************************************************
583  * VCDRewind : reads a stream backward
584  *****************************************************************************/
585 static int VCDRewind( input_thread_t * p_input )
586 {
587     return( -1 );
588 }
589
590 /****************************************************************************
591  * VCDSeek
592  ****************************************************************************/
593 static void VCDSeek( input_thread_t * p_input, off_t i_off )
594 {
595     thread_vcd_data_t *               p_vcd;
596
597     p_vcd = (thread_vcd_data_t *) p_input->p_plugin_data;
598
599     p_vcd->i_sector = p_vcd->p_sectors[p_vcd->i_track]
600                        + i_off / (off_t)VCD_DATA_SIZE;
601
602     p_input->stream.p_selected_area->i_tell = 
603         (off_t)p_vcd->i_sector * (off_t)VCD_DATA_SIZE
604          - p_input->stream.p_selected_area->i_start;
605 }
606