Qt: do not show open options in both normal and advanced UI
[vlc.git] / modules / access / vdr.c
blob0a073307d2d6bb5916939dfab1ec0d0a6c90c046
1 /*****************************************************************************
2 * vdr.c: VDR recordings access plugin
3 *****************************************************************************
4 * Copyright (C) 2010 Tobias Güntner
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 /***
22 VDR splits recordings into multiple files and stores each recording in a
23 separate directory. If VLC opens a normal directory, the filesystem module
24 will add all files to the playlist. If, however, VLC opens a VDR recording,
25 this module will join all files within that directory and provide a single
26 continuous stream instead.
28 VDR recordings have either of two directory layouts:
29 1) PES format:
30 /path/to/0000-00-00.00.00.00.00.rec/
31 001.vdr, 002.vdr, 003.vdr, ...
32 index.vdr, info.vdr, marks.vdr, ...
33 2) TS format:
34 /path/to/0000-00-00.00.00.0.0.rec/
35 001.ts, 002.ts, 003.ts, ...
36 index, info, marks, ...
37 See http://www.vdr-wiki.de/ and http://www.tvdr.de/ for more information.
38 ***/
40 /*****************************************************************************
41 * Preamble
42 *****************************************************************************/
44 #ifdef HAVE_CONFIG_H
45 # include "config.h"
46 #endif
48 #ifdef HAVE_SYS_TYPES_H
49 # include <sys/types.h>
50 #endif
51 #ifdef HAVE_SYS_STAT_H
52 # include <sys/stat.h>
53 #endif
54 #ifdef HAVE_FCNTL_H
55 # include <fcntl.h>
56 #endif
57 #ifdef HAVE_UNISTD_H
58 # include <unistd.h>
59 #elif defined( WIN32 ) && !defined( UNDER_CE )
60 # include <io.h>
61 #endif
63 #include <ctype.h>
64 #include <time.h>
65 #include <errno.h>
67 #if defined( WIN32 ) && !defined( UNDER_CE )
68 # undef lseek
69 # define lseek _lseeki64
70 #endif
72 #include <vlc_common.h>
73 #include <vlc_plugin.h>
74 #include <vlc_access.h>
75 #include <vlc_input.h>
76 #include <vlc_fs.h>
77 #include <vlc_charset.h>
78 #include <vlc_dialog.h>
79 #include <vlc_configuration.h>
81 /*****************************************************************************
82 * Module descriptor
83 *****************************************************************************/
84 static int Open ( vlc_object_t * );
85 static void Close( vlc_object_t * );
87 #define HELP_TEXT N_("Support for VDR recordings (http://www.tvdr.de/).")
89 #define CHAPTER_OFFSET_TEXT N_("Chapter offset in ms")
90 #define CHAPTER_OFFSET_LONGTEXT N_( \
91 "Move all chapters. This value should be set in milliseconds." )
93 #define FPS_TEXT N_("Frame rate")
94 #define FPS_LONGTEXT N_( \
95 "Default frame rate for chapter import." )
97 vlc_module_begin ()
98 set_category( CAT_INPUT )
99 set_shortname( N_("VDR") )
100 set_help( HELP_TEXT )
101 set_subcategory( SUBCAT_INPUT_ACCESS )
102 set_description( N_("VDR recordings") )
103 add_integer( "vdr-chapter-offset", 0,
104 CHAPTER_OFFSET_TEXT, CHAPTER_OFFSET_LONGTEXT, true )
105 add_float_with_range( "vdr-fps", 25, 1, 1000,
106 FPS_TEXT, FPS_LONGTEXT, true )
107 set_capability( "access", 60 )
108 add_shortcut( "vdr" )
109 add_shortcut( "directory" )
110 add_shortcut( "dir" )
111 add_shortcut( "file" )
112 set_callbacks( Open, Close )
113 vlc_module_end ()
115 /*****************************************************************************
116 * Local prototypes, constants, structures
117 *****************************************************************************/
119 /* minimum chapter size in seconds */
120 #define MIN_CHAPTER_SIZE 5
122 TYPEDEF_ARRAY( uint64_t, size_array_t );
124 struct access_sys_t
126 /* file sizes of all parts */
127 size_array_t file_sizes;
129 /* index and fd of current open file */
130 unsigned i_current_file;
131 int fd;
133 /* meta data */
134 vlc_meta_t *p_meta;
136 /* cut marks */
137 input_title_t *p_marks;
138 float fps;
140 /* file format: true=TS, false=PES */
141 bool b_ts_format;
144 #define CURRENT_FILE_SIZE ARRAY_VAL(p_sys->file_sizes, p_sys->i_current_file)
145 #define FILE_SIZE(pos) ARRAY_VAL(p_sys->file_sizes, pos)
146 #define FILE_COUNT (unsigned)p_sys->file_sizes.i_size
148 static int Control( access_t *, int, va_list );
149 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len );
150 static int Seek( access_t *p_access, uint64_t i_pos);
151 static void FindSeekpoint( access_t *p_access );
152 static bool ScanDirectory( access_t *p_access, bool b_strict );
153 static char *GetFilePath( access_t *p_access, unsigned i_file );
154 static bool ImportNextFile( access_t *p_access );
155 static bool SwitchFile( access_t *p_access, unsigned i_file );
156 static void OptimizeForRead( int fd );
157 static void UpdateFileSize( access_t *p_access );
158 static int StatRelativeFile( access_t *p_access, const char *psz_file,
159 struct stat *p_stat );
160 static FILE *OpenRelativeFile( access_t *p_access, const char *psz_file );
161 static bool ReadLine( char **ppsz_line, size_t *pi_size, FILE *p_file );
162 static void ImportMeta( access_t *p_access );
163 static void ImportMarks( access_t *p_access );
164 static bool ReadIndexRecord( FILE *p_file, bool b_ts, int64_t i_frame,
165 uint64_t *pi_offset, uint16_t *pi_file_num );
166 static int64_t ParseFrameNumber( const char *psz_line, float fps );
168 /*****************************************************************************
169 * Open a directory
170 *****************************************************************************/
171 static int Open( vlc_object_t *p_this )
173 access_t *p_access = (access_t*)p_this;
175 if( !p_access->psz_filepath )
176 return VLC_EGENERIC;
178 /* Some tests can be skipped if this module was explicitly requested.
179 * That way, the user can play "corrupt" recordings if necessary
180 * and we can avoid false positives in the general case. */
181 bool b_strict = strcmp( p_access->psz_access, "vdr" );
183 /* Do a quick test based on the directory extension to see if this
184 * directory might contain a VDR recording. We can be reasonably
185 * sure if ScanDirectory() actually finds files. */
186 if( b_strict )
188 const char *psz_ext = strrchr( p_access->psz_filepath, '.' );
189 if( !psz_ext || ( strcasecmp( psz_ext, ".rec" )
190 && strcasecmp( psz_ext, ".rec" DIR_SEP ) ) )
191 return VLC_EGENERIC;
194 /* Only directories can be recordings */
195 struct stat st;
196 if( vlc_stat( p_access->psz_filepath, &st ) ||
197 !S_ISDIR( st.st_mode ) )
198 return VLC_EGENERIC;
200 access_sys_t *p_sys;
201 STANDARD_READ_ACCESS_INIT;
202 p_sys->fd = -1;
203 p_sys->fps = var_InheritFloat( p_access, "vdr-fps" );
204 ARRAY_INIT( p_sys->file_sizes );
206 /* Import all files and prepare playback. */
207 if( !ScanDirectory( p_access, b_strict ) ||
208 !SwitchFile( p_access, 0 ) )
210 Close( p_this );
211 return VLC_EGENERIC;
214 return VLC_SUCCESS;
217 /*****************************************************************************
218 * Close files and free resources
219 *****************************************************************************/
220 static void Close( vlc_object_t * p_this )
222 access_t *p_access = (access_t*)p_this;
223 access_sys_t *p_sys = p_access->p_sys;
225 if( p_sys->fd != -1 )
226 close( p_sys->fd );
227 ARRAY_RESET( p_sys->file_sizes );
229 if( p_sys->p_meta )
230 vlc_meta_Delete( p_sys->p_meta );
232 vlc_input_title_Delete( p_sys->p_marks );
233 free( p_sys );
236 /*****************************************************************************
237 * Determine format and import files
238 *****************************************************************************/
239 static bool ScanDirectory( access_t *p_access, bool b_strict )
241 access_sys_t *p_sys = p_access->p_sys;
243 /* find first part and determine directory format */
244 p_sys->b_ts_format = true;
245 if( !ImportNextFile( p_access ) )
247 p_sys->b_ts_format = !p_sys->b_ts_format;
248 if( !ImportNextFile( p_access ) )
249 return false;
252 /* meta data and index should exist */
253 if( b_strict )
255 struct stat st;
256 if( StatRelativeFile( p_access, "info", &st ) ||
257 StatRelativeFile( p_access, "index", &st ) )
258 return false;
261 /* get all remaining parts */
262 while( ImportNextFile( p_access ) )
263 continue;
265 /* import meta data etc. */
266 ImportMeta( p_access );
268 /* cut marks depend on meta data and file sizes */
269 ImportMarks( p_access );
271 return true;
274 /*****************************************************************************
275 * Control input stream
276 *****************************************************************************/
277 static int Control( access_t *p_access, int i_query, va_list args )
279 access_sys_t *p_sys = p_access->p_sys;
280 input_title_t ***ppp_title;
281 int i;
282 int64_t *pi64;
283 vlc_meta_t *p_meta;
285 switch( i_query )
287 case ACCESS_CAN_SEEK:
288 case ACCESS_CAN_FASTSEEK:
289 case ACCESS_CAN_PAUSE:
290 case ACCESS_CAN_CONTROL_PACE:
291 *va_arg( args, bool* ) = true;
292 break;
294 case ACCESS_GET_PTS_DELAY:
295 pi64 = va_arg( args, int64_t * );
296 *pi64 = INT64_C(1000)
297 * var_InheritInteger( p_access, "file-caching" );
298 break;
300 case ACCESS_SET_PAUSE_STATE:
301 /* nothing to do */
302 break;
304 case ACCESS_GET_TITLE_INFO:
305 /* return a copy of our seek points */
306 if( !p_sys->p_marks )
307 return VLC_EGENERIC;
308 ppp_title = va_arg( args, input_title_t*** );
309 *va_arg( args, int* ) = 1;
310 *ppp_title = malloc( sizeof( input_title_t** ) );
311 if( !*ppp_title )
312 return VLC_ENOMEM;
313 **ppp_title = vlc_input_title_Duplicate( p_sys->p_marks );
314 break;
316 case ACCESS_SET_TITLE:
317 /* ignore - only one title */
318 break;
320 case ACCESS_SET_SEEKPOINT:
321 i = va_arg( args, int );
322 /* Seek updates p_access->info */
323 return Seek( p_access, p_sys->p_marks->seekpoint[i]->i_byte_offset );
325 case ACCESS_GET_META:
326 if( !p_sys->p_meta )
327 return VLC_EGENERIC;
328 p_meta = va_arg( args, vlc_meta_t* );
329 vlc_meta_Merge( p_meta, p_sys->p_meta );
330 break;
332 case ACCESS_SET_PRIVATE_ID_STATE:
333 case ACCESS_GET_CONTENT_TYPE:
334 return VLC_EGENERIC;
336 default:
337 msg_Warn( p_access, "unimplemented query in control" );
338 return VLC_EGENERIC;
340 return VLC_SUCCESS;
343 /*****************************************************************************
344 * Read and concatenate files
345 *****************************************************************************/
346 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
348 access_sys_t *p_sys = p_access->p_sys;
350 if( p_sys->fd == -1 )
352 /* no more data */
353 p_access->info.b_eof = true;
354 return 0;
357 ssize_t i_ret = read( p_sys->fd, p_buffer, i_len );
359 if( i_ret > 0 )
361 /* success */
362 p_access->info.i_pos += i_ret;
363 UpdateFileSize( p_access );
364 FindSeekpoint( p_access );
365 return i_ret;
367 else if( i_ret == 0 )
369 /* check for new files in case the recording is still active */
370 if( p_sys->i_current_file >= FILE_COUNT - 1 )
371 ImportNextFile( p_access );
372 /* play next file */
373 SwitchFile( p_access, p_sys->i_current_file + 1 );
374 return -1;
376 else if( errno == EINTR )
378 /* try again later */
379 return -1;
381 else
383 /* abort on read error */
384 msg_Err( p_access, "failed to read (%m)" );
385 dialog_Fatal( p_access, _("File reading failed"), "%s (%m)",
386 _("VLC could not read the file.") );
387 SwitchFile( p_access, -1 );
388 return 0;
392 /*****************************************************************************
393 * Seek to a specific location in a file
394 *****************************************************************************/
395 static int Seek( access_t *p_access, uint64_t i_pos )
397 access_sys_t *p_sys = p_access->p_sys;
399 /* might happen if called by ACCESS_SET_SEEKPOINT */
400 i_pos = __MIN( i_pos, p_access->info.i_size );
402 p_access->info.i_pos = i_pos;
403 p_access->info.b_eof = false;
405 /* find correct chapter */
406 FindSeekpoint( p_access );
408 /* find correct file */
409 unsigned i_file = 0;
410 while( i_file < FILE_COUNT - 1 &&
411 i_pos >= FILE_SIZE( i_file ) )
413 i_pos -= FILE_SIZE( i_file );
414 i_file++;
416 if( !SwitchFile( p_access, i_file ) )
417 return VLC_EGENERIC;
419 /* adjust position within that file */
420 return lseek( p_sys->fd, i_pos, SEEK_SET ) != -1 ?
421 VLC_SUCCESS : VLC_EGENERIC;
424 /*****************************************************************************
425 * Change the chapter index to match the current position
426 *****************************************************************************/
427 static void FindSeekpoint( access_t *p_access )
429 access_sys_t *p_sys = p_access->p_sys;
430 if( !p_sys->p_marks )
431 return;
433 int i_new_seekpoint = p_access->info.i_seekpoint;
434 if( p_access->info.i_pos < (uint64_t)p_sys->p_marks->
435 seekpoint[ p_access->info.i_seekpoint ]->i_byte_offset )
437 /* i_pos moved backwards, start fresh */
438 i_new_seekpoint = 0;
441 /* only need to check the following seekpoints */
442 while( i_new_seekpoint + 1 < p_sys->p_marks->i_seekpoint &&
443 p_access->info.i_pos >= (uint64_t)p_sys->p_marks->
444 seekpoint[ i_new_seekpoint + 1 ]->i_byte_offset )
446 i_new_seekpoint++;
449 /* avoid unnecessary events */
450 if( p_access->info.i_seekpoint != i_new_seekpoint )
452 p_access->info.i_seekpoint = i_new_seekpoint;
453 p_access->info.i_update |= INPUT_UPDATE_SEEKPOINT;
457 /*****************************************************************************
458 * Returns the path of a certain part
459 *****************************************************************************/
460 static char *GetFilePath( access_t *p_access, unsigned i_file )
462 char *psz_path;
463 if( asprintf( &psz_path, p_access->p_sys->b_ts_format ?
464 "%s" DIR_SEP "%05u.ts" : "%s" DIR_SEP "%03u.vdr",
465 p_access->psz_filepath, i_file + 1 ) == -1 )
466 return NULL;
467 else
468 return psz_path;
471 /*****************************************************************************
472 * Check if another part exists and import it
473 *****************************************************************************/
474 static bool ImportNextFile( access_t *p_access )
476 access_sys_t *p_sys = p_access->p_sys;
478 char *psz_path = GetFilePath( p_access, FILE_COUNT );
479 if( !psz_path )
480 return false;
482 struct stat st;
483 if( vlc_stat( psz_path, &st ) )
485 msg_Dbg( p_access, "could not stat %s: %m", psz_path );
486 free( psz_path );
487 return false;
489 if( !S_ISREG( st.st_mode ) )
491 msg_Dbg( p_access, "%s is not a regular file", psz_path );
492 free( psz_path );
493 return false;
495 msg_Dbg( p_access, "%s exists", psz_path );
496 free( psz_path );
498 ARRAY_APPEND( p_sys->file_sizes, st.st_size );
499 p_access->info.i_size += st.st_size;
500 p_access->info.i_update |= INPUT_UPDATE_SIZE;
502 return true;
505 /*****************************************************************************
506 * Close the current file and open another
507 *****************************************************************************/
508 static bool SwitchFile( access_t *p_access, unsigned i_file )
510 access_sys_t *p_sys = p_access->p_sys;
512 /* requested file already open? */
513 if( p_sys->fd != -1 && p_sys->i_current_file == i_file )
514 return true;
516 /* close old file */
517 if( p_sys->fd != -1 )
519 close( p_sys->fd );
520 p_sys->fd = -1;
523 /* switch */
524 if( i_file >= FILE_COUNT )
525 return false;
526 p_sys->i_current_file = i_file;
528 /* open new file */
529 char *psz_path = GetFilePath( p_access, i_file );
530 if( !psz_path )
531 return false;
532 p_sys->fd = vlc_open( psz_path, O_RDONLY );
534 if( p_sys->fd == -1 )
536 msg_Err( p_access, "Failed to open %s: %m", psz_path );
537 goto error;
540 /* cannot handle anything except normal files */
541 struct stat st;
542 if( fstat( p_sys->fd, &st ) || !S_ISREG( st.st_mode ) )
544 msg_Err( p_access, "%s is not a regular file", psz_path );
545 goto error;
548 OptimizeForRead( p_sys->fd );
550 msg_Dbg( p_access, "opened %s", psz_path );
551 free( psz_path );
552 return true;
554 error:
555 dialog_Fatal (p_access, _("File reading failed"), _("VLC could not"
556 " open the file \"%s\". (%m)"), psz_path);
557 if( p_sys->fd != -1 )
559 close( p_sys->fd );
560 p_sys->fd = -1;
562 free( psz_path );
563 return false;
566 /*****************************************************************************
567 * Some tweaks to speed up read()
568 *****************************************************************************/
569 static void OptimizeForRead( int fd )
571 /* cf. Open() in file access module */
572 VLC_UNUSED(fd);
573 #ifdef HAVE_POSIX_FADVISE
574 posix_fadvise( fd, 0, 4096, POSIX_FADV_WILLNEED );
575 posix_fadvise( fd, 0, 0, POSIX_FADV_NOREUSE );
576 #endif
577 #ifdef HAVE_FCNTL
578 #ifdef F_RDAHEAD
579 fcntl( fd, F_RDAHEAD, 1 );
580 #endif
581 #ifdef F_NOCACHE
582 fcntl( fd, F_NOCACHE, 1 );
583 #endif
584 #endif
587 /*****************************************************************************
588 * Fix size if the (last) part is still growing
589 *****************************************************************************/
590 static void UpdateFileSize( access_t *p_access )
592 access_sys_t *p_sys = p_access->p_sys;
593 struct stat st;
595 if( p_access->info.i_size >= p_access->info.i_pos )
596 return;
598 /* TODO: not sure if this can happen or what to do in this case */
599 if( fstat( p_sys->fd, &st ) )
600 return;
601 if( (uint64_t)st.st_size <= CURRENT_FILE_SIZE )
602 return;
604 p_access->info.i_size -= CURRENT_FILE_SIZE;
605 CURRENT_FILE_SIZE = st.st_size;
606 p_access->info.i_size += CURRENT_FILE_SIZE;
607 p_access->info.i_update |= INPUT_UPDATE_SIZE;
610 /*****************************************************************************
611 * Stat file relative to base directory
612 *****************************************************************************/
613 static int StatRelativeFile( access_t *p_access, const char *psz_file,
614 struct stat *p_stat )
616 /* build path and add extension */
617 char *psz_path;
618 if( asprintf( &psz_path, "%s" DIR_SEP "%s%s",
619 p_access->psz_filepath, psz_file,
620 p_access->p_sys->b_ts_format ? "" : ".vdr" ) == -1 )
621 return -1;
623 int ret = vlc_stat( psz_path, p_stat );
624 if( ret )
625 msg_Dbg( p_access, "could not stat %s: %m", psz_path );
626 free( psz_path );
628 return ret;
631 /*****************************************************************************
632 * Open file relative to base directory for reading.
633 *****************************************************************************/
634 static FILE *OpenRelativeFile( access_t *p_access, const char *psz_file )
636 /* build path and add extension */
637 char *psz_path;
638 if( asprintf( &psz_path, "%s" DIR_SEP "%s%s",
639 p_access->psz_filepath, psz_file,
640 p_access->p_sys->b_ts_format ? "" : ".vdr" ) == -1 )
641 return NULL;
643 FILE *file = vlc_fopen( psz_path, "rb" );
644 if( !file )
645 msg_Warn( p_access, "Failed to open %s: %m", psz_path );
646 free( psz_path );
648 return file;
651 /*****************************************************************************
652 * Read a line of text. Returns false on error or EOF.
653 *****************************************************************************/
654 static bool ReadLine( char **ppsz_line, size_t *pi_size, FILE *p_file )
656 ssize_t read = getline( ppsz_line, pi_size, p_file );
658 if( read == -1 )
660 /* automatically free buffer on eof */
661 free( *ppsz_line );
662 *ppsz_line = NULL;
663 return false;
666 if( read > 0 && (*ppsz_line)[ read - 1 ] == '\n' )
667 (*ppsz_line)[ read - 1 ] = '\0';
668 EnsureUTF8( *ppsz_line );
670 return true;
673 /*****************************************************************************
674 * Import meta data
675 *****************************************************************************/
676 static void ImportMeta( access_t *p_access )
678 access_sys_t *p_sys = p_access->p_sys;
680 FILE *infofile = OpenRelativeFile( p_access, "info" );
681 if( !infofile )
682 return;
684 vlc_meta_t *p_meta = vlc_meta_New();
685 p_sys->p_meta = p_meta;
686 if( !p_meta )
688 fclose( infofile );
689 return;
692 char *line = NULL;
693 size_t line_len;
694 char *psz_title = NULL, *psz_smalltext = NULL, *psz_date = NULL;
696 while( ReadLine( &line, &line_len, infofile ) )
698 if( !isalpha( (unsigned char)line[0] ) || line[1] != ' ' )
699 continue;
701 char tag = line[0];
702 char *text = line + 2;
704 if( tag == 'C' )
706 char *psz_name = strchr( text, ' ' );
707 if( psz_name )
709 *psz_name = '\0';
710 vlc_meta_AddExtra( p_meta, "Channel", psz_name + 1 );
712 vlc_meta_AddExtra( p_meta, "Transponder", text );
715 else if( tag == 'E' )
717 unsigned i_id, i_start, i_length;
718 if( sscanf( text, "%u %u %u", &i_id, &i_start, &i_length ) == 3 )
720 char str[50];
721 struct tm tm;
722 time_t start = i_start;
723 localtime_r( &start, &tm );
725 /* TODO: locale */
726 strftime( str, sizeof(str), "%Y-%m-%d %H:%M", &tm );
727 vlc_meta_AddExtra( p_meta, "Date", str );
728 free( psz_date );
729 psz_date = strdup( str );
731 /* display in minutes */
732 i_length = ( i_length + 59 ) / 60;
733 snprintf( str, sizeof(str), "%u:%02u", i_length / 60, i_length % 60 );
734 vlc_meta_AddExtra( p_meta, "Duration", str );
738 else if( tag == 'T' )
740 free( psz_title );
741 psz_title = strdup( text );
742 vlc_meta_AddExtra( p_meta, "Title", text );
745 else if( tag == 'S' )
747 free( psz_smalltext );
748 psz_smalltext = strdup( text );
749 vlc_meta_AddExtra( p_meta, "Info", text );
752 else if( tag == 'D' )
754 for( char *p = text; *p; ++p )
756 if( *p == '|' )
757 *p = '\n';
759 vlc_meta_SetDescription( p_meta, text );
762 /* FPS are required to convert between timestamps and frames */
763 else if( tag == 'F' )
765 float fps = atof( text );
766 if( fps >= 1 )
767 p_sys->fps = fps;
768 vlc_meta_AddExtra( p_meta, "Frame Rate", text );
771 else if( tag == 'P' )
773 vlc_meta_AddExtra( p_meta, "Priority", text );
776 else if( tag == 'L' )
778 vlc_meta_AddExtra( p_meta, "Lifetime", text );
782 /* create a meaningful title */
783 int i_len = 10 +
784 ( psz_title ? strlen( psz_title ) : 0 ) +
785 ( psz_smalltext ? strlen( psz_smalltext ) : 0 ) +
786 ( psz_date ? strlen( psz_date ) : 0 );
787 char *psz_display = malloc( i_len );
789 if( psz_display )
791 *psz_display = '\0';
792 if( psz_title )
793 strcat( psz_display, psz_title );
794 if( psz_title && psz_smalltext )
795 strcat( psz_display, " - " );
796 if( psz_smalltext )
797 strcat( psz_display, psz_smalltext );
798 if( ( psz_title || psz_smalltext ) && psz_date )
800 strcat( psz_display, " (" );
801 strcat( psz_display, psz_date );
802 strcat( psz_display, ")" );
804 if( *psz_display )
805 vlc_meta_SetTitle( p_meta, psz_display );
808 free( psz_display );
809 free( psz_title );
810 free( psz_smalltext );
811 free( psz_date );
813 fclose( infofile );
816 /*****************************************************************************
817 * Import cut marks and convert them to seekpoints (chapters).
818 *****************************************************************************/
819 static void ImportMarks( access_t *p_access )
821 access_sys_t *p_sys = p_access->p_sys;
823 FILE *marksfile = OpenRelativeFile( p_access, "marks" );
824 if( !marksfile )
825 return;
827 FILE *indexfile = OpenRelativeFile( p_access, "index" );
828 if( !indexfile )
830 fclose( marksfile );
831 return;
834 /* get the length of this recording (index stores 8 bytes per frame) */
835 struct stat st;
836 if( fstat( fileno( indexfile ), &st ) )
838 fclose( marksfile );
839 fclose( indexfile );
840 return;
842 int64_t i_frame_count = st.st_size / 8;
844 /* Put all cut marks in a "dummy" title */
845 input_title_t *p_marks = vlc_input_title_New();
846 if( !p_marks )
848 fclose( marksfile );
849 fclose( indexfile );
850 return;
852 p_marks->psz_name = strdup( _("VDR Cut Marks") );
854 /* offset for chapter positions */
855 int i_chapter_offset = p_sys->fps / 1000 *
856 var_InheritInteger( p_access, "vdr-chapter-offset" );
858 /* minimum chapter size in frames */
859 int i_min_chapter_size = p_sys->fps * MIN_CHAPTER_SIZE;
861 /* the last chapter started at this frame (init to 0 so
862 * we skip useless chapters near the beginning as well) */
863 int64_t i_prev_chapter = 0;
865 /* parse lines of the form "0:00:00.00 foobar" */
866 char *line = NULL;
867 size_t line_len;
868 while( ReadLine( &line, &line_len, marksfile ) )
870 int64_t i_frame = ParseFrameNumber( line, p_sys->fps );
872 /* skip chapters which are near the end or too close to each other */
873 if( i_frame - i_prev_chapter < i_min_chapter_size ||
874 i_frame >= i_frame_count - i_min_chapter_size )
875 continue;
876 i_prev_chapter = i_frame;
878 /* move chapters (simple workaround for inaccurate cut marks) */
879 if( i_frame > -i_chapter_offset )
880 i_frame += i_chapter_offset;
881 else
882 i_frame = 0;
884 uint64_t i_offset;
885 uint16_t i_file_number;
886 if( !ReadIndexRecord( indexfile, p_sys->b_ts_format,
887 i_frame, &i_offset, &i_file_number ) )
888 continue;
889 if( i_file_number < 1 || i_file_number > FILE_COUNT )
890 continue;
892 /* add file sizes to get the "global" offset */
893 seekpoint_t *sp = vlc_seekpoint_New();
894 if( !sp )
895 continue;
896 sp->i_time_offset = i_frame * (int64_t)( CLOCK_FREQ / p_sys->fps );
897 sp->i_byte_offset = i_offset;
898 for( int i = 0; i + 1 < i_file_number; ++i )
899 sp->i_byte_offset += FILE_SIZE( i );
900 sp->psz_name = strdup( line );
902 TAB_APPEND( p_marks->i_seekpoint, p_marks->seekpoint, sp );
905 /* add a chapter at the beginning if missing */
906 if( p_marks->i_seekpoint > 0 && p_marks->seekpoint[0]->i_byte_offset > 0 )
908 seekpoint_t *sp = vlc_seekpoint_New();
909 if( sp )
911 sp->i_byte_offset = 0;
912 sp->i_time_offset = 0;
913 sp->psz_name = strdup( _("Start") );
914 TAB_INSERT( p_marks->i_seekpoint, p_marks->seekpoint, sp, 0 );
918 if( p_marks->i_seekpoint > 0 )
919 p_sys->p_marks = p_marks;
920 else
921 vlc_input_title_Delete( p_marks );
923 fclose( marksfile );
924 fclose( indexfile );
927 /*****************************************************************************
928 * Lookup frame offset in index file
929 *****************************************************************************/
930 static bool ReadIndexRecord( FILE *p_file, bool b_ts, int64_t i_frame,
931 uint64_t *pi_offset, uint16_t *pi_file_num )
933 uint8_t index_record[8];
934 if( fseek( p_file, sizeof(index_record) * i_frame, SEEK_SET ) != 0 )
935 return false;
936 if( fread( &index_record, sizeof(index_record), 1, p_file ) <= 0 )
937 return false;
939 /* VDR usually (only?) runs on little endian machines, but VLC has a
940 * broader audience. See recording.* in VDR source for data layout. */
941 if( b_ts )
943 uint64_t i_index_entry = GetQWLE( &index_record );
944 *pi_offset = i_index_entry & UINT64_C(0xFFFFFFFFFF);
945 *pi_file_num = i_index_entry >> 48;
947 else
949 *pi_offset = GetDWLE( &index_record );
950 *pi_file_num = index_record[5];
953 return true;
956 /*****************************************************************************
957 * Convert time stamp from file to frame number
958 *****************************************************************************/
959 static int64_t ParseFrameNumber( const char *psz_line, float fps )
961 unsigned h, m, s, f, n;
963 /* hour:min:sec.frame (frame is optional) */
964 n = sscanf( psz_line, "%u:%u:%u.%u", &h, &m, &s, &f );
965 if( n >= 3 )
967 if( n < 4 )
968 f = 1;
969 int64_t i_seconds = (int64_t)h * 3600 + (int64_t)m * 60 + s;
970 return (int64_t)( i_seconds * (double)fps ) + __MAX(1, f) - 1;
973 /* only a frame number */
974 int64_t i_frame = strtoll( psz_line, NULL, 10 );
975 return __MAX(1, i_frame) - 1;