OSDN Git Service

fc51b1b23cf776397916c5a167740ee4d3a1850a
[handbrake-jp/handbrake-jp-git.git] / libhb / stream.c
1 /* $Id$
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.fr/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include <string.h>
8 #include <ctype.h>
9 #include <errno.h>
10
11 #include "hb.h"
12 #include "hbffmpeg.h"
13 #include "lang.h"
14 #include "a52dec/a52.h"
15 #include "mp4v2/mp4v2.h"
16
17 #define min(a, b) a < b ? a : b
18
19 /*
20  * This table defines how ISO MPEG stream type codes map to HandBrake
21  * codecs. It is indexed by the 8 bit stream type and contains the codec
22  * worker object id and a parameter for that worker proc (ignored except
23  * for the ffmpeg-based codecs in which case it is the ffmpeg codec id).
24  *
25  * Entries with a worker proc id of 0 or a kind of 'U' indicate that HB
26  * doesn't handle the stream type.
27  */
28 typedef struct {
29     enum { N, U, A, V } kind; /* not handled / unknown / audio / video */
30     int codec;          /* HB worker object id of codec */
31     int codec_param;    /* param for codec (usually ffmpeg codec id) */
32     const char* name;   /* description of type */
33 } stream2codec_t;
34
35 #define st(id, kind, codec, codec_param, name) \
36  [id] = { kind, codec, codec_param, name }
37
38 static const stream2codec_t st2codec[256] = {
39     st(0x01, V, WORK_DECMPEG2,     0,              "MPEG1"),
40     st(0x02, V, WORK_DECMPEG2,     0,              "MPEG2"),
41     st(0x03, A, HB_ACODEC_MPGA,    CODEC_ID_MP2,   "MPEG1"),
42     st(0x04, A, HB_ACODEC_MPGA,    CODEC_ID_MP2,   "MPEG2"),
43     st(0x05, N, 0,                 0,              "ISO 13818-1 private section"),
44     st(0x06, U, 0,                 0,              "ISO 13818-1 PES private data"),
45     st(0x07, N, 0,                 0,              "ISO 13522 MHEG"),
46     st(0x08, N, 0,                 0,              "ISO 13818-1 DSM-CC"),
47     st(0x09, N, 0,                 0,              "ISO 13818-1 auxiliary"),
48     st(0x0a, N, 0,                 0,              "ISO 13818-6 encap"),
49     st(0x0b, N, 0,                 0,              "ISO 13818-6 DSM-CC U-N msgs"),
50     st(0x0c, N, 0,                 0,              "ISO 13818-6 Stream descriptors"),
51     st(0x0d, N, 0,                 0,              "ISO 13818-6 Sections"),
52     st(0x0e, N, 0,                 0,              "ISO 13818-1 auxiliary"),
53     st(0x0f, A, HB_ACODEC_MPGA,    CODEC_ID_AAC,   "ISO 13818-7 AAC Audio"),
54     st(0x10, V, WORK_DECAVCODECV,  CODEC_ID_MPEG4, "MPEG4"),
55     st(0x11, A, HB_ACODEC_MPGA,    CODEC_ID_AAC_LATM, "MPEG4 LATM AAC"),
56     st(0x12, U, 0,                 0,              "MPEG4 generic"),
57
58     st(0x14, N, 0,                 0,              "ISO 13818-6 DSM-CC download"),
59
60     st(0x1b, V, WORK_DECAVCODECV,  CODEC_ID_H264,  "H.264"),
61
62     st(0x80, N, 0,                 0,              "DigiCipher II Video"),
63     st(0x81, A, HB_ACODEC_AC3,     0,              "AC-3"),
64     st(0x82, A, HB_ACODEC_DCA,     0,              "HDMV DTS"),
65     st(0x83, A, HB_ACODEC_LPCM,    0,              "LPCM"),
66     st(0x84, A, 0,                 0,              "SDDS"),
67     st(0x85, U, 0,                 0,              "ATSC Program ID"),
68     st(0x86, A, HB_ACODEC_DCA,     0,              "DTS-HD"),
69     st(0x87, A, 0,                 0,              "E-AC-3"),
70
71     st(0x8a, A, HB_ACODEC_DCA,     0,              "DTS"),
72
73     st(0x91, A, HB_ACODEC_AC3,     0,              "AC-3"),
74     st(0x92, N, 0,                 0,              "Subtitle"),
75
76     st(0x94, A, 0,                 0,              "SDDS"),
77     st(0xa0, V, 0,                 0,              "MSCODEC"),
78
79     st(0xea, V, WORK_DECAVCODECV,  CODEC_ID_VC1,   "VC1"),
80 };
81 #undef st
82
83 typedef enum {
84     hb_stream_type_unknown = 0,
85     transport,
86     program,
87     dvd_program,
88     ffmpeg
89 } hb_stream_type_t;
90
91 #define kMaxNumberVideoPIDS 1
92 #define kMaxNumberAudioPIDS 31
93 #define kMaxNumberDecodeStreams (kMaxNumberVideoPIDS+kMaxNumberAudioPIDS)
94 #define kMaxNumberPMTStreams 32
95
96
97 struct hb_stream_s
98 {
99     int     frames;             /* video frames so far */
100     int     errors;             /* total errors so far */
101     int     last_error_frame;   /* frame # at last error message */
102     int     last_error_count;   /* # errors at last error message */
103     int     packetsize;         /* Transport Stream packet size */
104
105     uint8_t need_keyframe;      // non-zero if want to start at a keyframe
106     uint8_t ts_found_pcr;       // non-zero if we've found at least one input pcr
107     int     ts_pcr_out;         // sequence number of most recent output pcr
108     int     ts_pcr_in;          // sequence number of most recent input pcr
109     int64_t ts_pcr;             // most recent input pcr
110     int64_t ts_pcrhist[4];      // circular buffer of output pcrs
111
112     uint8_t *ts_packet;         /* buffer for one TS packet */
113     hb_buffer_t *ts_buf[kMaxNumberDecodeStreams];
114     int     ts_pos[kMaxNumberDecodeStreams];
115     int8_t  ts_skipbad[kMaxNumberDecodeStreams];
116     int8_t  ts_streamcont[kMaxNumberDecodeStreams];
117     uint8_t ts_pkt_summary[kMaxNumberDecodeStreams][8];
118
119     hb_buffer_t *fwrite_buf;      /* PS buffer (set by hb_ts_stream_decode) */
120
121     int      chapter;           /* Chapter that we are currently in */
122     int64_t  chapter_end;       /* HB time that the current chapter ends */
123
124     /*
125      * Stuff before this point is dynamic state updated as we read the
126      * stream. Stuff after this point is stream description state that
127      * we learn during the initial scan but cache so it can be
128      * reused during the conversion read.
129      */
130     uint8_t ts_number_video_pids;
131     uint8_t ts_number_audio_pids;
132     uint8_t ts_flags;           // stream characteristics:
133 #define         TS_HAS_PCR  (1 << 0)    // at least one PCR seen
134 #define         TS_HAS_RAP  (1 << 1)    // Random Access Point bit seen
135 #define         TS_HAS_RSEI (1 << 2)    // "Restart point" SEI seen
136     uint8_t ts_IDRs;            // # IDRs found during duration scan
137
138     int16_t ts_video_pids[kMaxNumberVideoPIDS];
139     int16_t ts_audio_pids[kMaxNumberAudioPIDS];
140
141     uint32_t ts_format_id[kMaxNumberDecodeStreams];
142 #define TS_FORMAT_ID_AC3 (('A' << 24) | ('C' << 16) | ('-' << 8) | '3')
143     uint8_t ts_stream_type[kMaxNumberDecodeStreams];
144     uint8_t ts_multiplexed[kMaxNumberDecodeStreams];
145
146     char    *path;
147     FILE    *file_handle;
148     hb_stream_type_t hb_stream_type;
149     hb_title_t *title;
150
151     AVFormatContext *ffmpeg_ic;
152     AVPacket *ffmpeg_pkt;
153     double ffmpeg_tsconv[MAX_STREAMS];
154     uint8_t ffmpeg_video_id;
155
156     struct {
157         int lang_code;
158         int flags;
159         int rate;
160         int bitrate;
161     } a52_info[kMaxNumberAudioPIDS];
162
163     struct
164     {
165         unsigned short program_number;
166         unsigned short program_map_PID;
167     } pat_info[kMaxNumberPMTStreams];
168     int     ts_number_pat_entries;
169
170     struct
171     {
172         int reading;
173         unsigned char *tablebuf;
174         unsigned int tablepos;
175         unsigned char current_continuity_counter;
176
177         int section_length;
178         int program_number;
179         unsigned int PCR_PID;
180         int program_info_length;
181         unsigned char *progam_info_descriptor_data;
182         struct
183         {
184             unsigned char stream_type;
185             unsigned short elementary_PID;
186             unsigned short ES_info_length;
187             unsigned char *es_info_descriptor_data;
188         } pmt_stream_info[kMaxNumberPMTStreams];
189     } pmt_info;
190 };
191
192 /***********************************************************************
193  * Local prototypes
194  **********************************************************************/
195 static void hb_stream_duration(hb_stream_t *stream, hb_title_t *inTitle);
196 static void hb_ts_stream_init(hb_stream_t *stream);
197 static void hb_ts_stream_find_pids(hb_stream_t *stream);
198 static int hb_ts_stream_decode(hb_stream_t *stream, hb_buffer_t *obuf);
199 static void hb_ts_stream_reset(hb_stream_t *stream);
200 static hb_audio_t *hb_ts_stream_set_audio_id_and_codec(hb_stream_t *stream,
201                                                        int aud_pid_index);
202 static void hb_ps_stream_find_audio_ids(hb_stream_t *stream, hb_title_t *title);
203 static off_t align_to_next_packet(hb_stream_t *stream);
204
205 static int ffmpeg_open( hb_stream_t *stream, hb_title_t *title );
206 static void ffmpeg_close( hb_stream_t *d );
207 static hb_title_t *ffmpeg_title_scan( hb_stream_t *stream );
208 static int ffmpeg_read( hb_stream_t *stream, hb_buffer_t *buf );
209 static int ffmpeg_seek( hb_stream_t *stream, float frac );
210 static int ffmpeg_seek_ts( hb_stream_t *stream, int64_t ts );
211
212 /*
213  * streams have a bunch of state that's learned during the scan. We don't
214  * want to throw away the state when scan does a close then relearn
215  * everything when reader does an open. So we save the stream state on
216  * the close following a scan and reuse it when 'reader' does an open.
217  */
218 static hb_list_t *stream_state_list;
219
220 static hb_stream_t *hb_stream_lookup( const char *path )
221 {
222     if ( stream_state_list == NULL )
223         return NULL;
224
225     hb_stream_t *ss;
226     int i = 0;
227
228     while ( ( ss = hb_list_item( stream_state_list, i++ ) ) != NULL )
229     {
230         if ( strcmp( path, ss->path ) == 0 )
231         {
232             break;
233         }
234     }
235     return ss;
236 }
237
238 static void hb_stream_state_delete( hb_stream_t *ss )
239 {
240     hb_list_rem( stream_state_list, ss );
241     free( ss->path );
242     free( ss );
243 }
244
245 /*
246  * logging routines.
247  * these frontend hb_log because transport streams can have a lot of errors
248  * so we want to rate limit messages. this routine limits the number of
249  * messages to at most one per minute of video. other errors that occur
250  * during the minute are counted & the count is output with the next
251  * error msg we print.
252  */
253 static void ts_warn_helper( hb_stream_t *stream, char *log, va_list args )
254 {
255     // limit error printing to at most one per minute of video (at 30fps)
256     ++stream->errors;
257     if ( stream->frames - stream->last_error_frame >= 30*60 )
258     {
259         char msg[256];
260
261         vsnprintf( msg, sizeof(msg), log, args );
262
263         if ( stream->errors - stream->last_error_count < 10 )
264         {
265             hb_log( "stream: error near frame %d: %s", stream->frames, msg );
266         }
267         else
268         {
269             int Edelta = stream->errors - stream->last_error_count;
270             double Epcnt = (double)Edelta * 100. /
271                             (stream->frames - stream->last_error_frame);
272             hb_log( "stream: %d new errors (%.0f%%) up to frame %d: %s",
273                     Edelta, Epcnt, stream->frames, msg );
274         }
275         stream->last_error_frame = stream->frames;
276         stream->last_error_count = stream->errors;
277     }
278 }
279
280 static void ts_warn( hb_stream_t*, char*, ... ) HB_WPRINTF(2,3);
281 static void ts_err( hb_stream_t*, int, char*, ... ) HB_WPRINTF(3,4);
282
283 static void ts_warn( hb_stream_t *stream, char *log, ... )
284 {
285     va_list args;
286     va_start( args, log );
287     ts_warn_helper( stream, log, args );
288     va_end( args );
289 }
290
291 static void ts_err( hb_stream_t *stream, int curstream, char *log, ... )
292 {
293     va_list args;
294     va_start( args, log );
295     ts_warn_helper( stream, log, args );
296     va_end( args );
297
298     stream->ts_skipbad[curstream] = 1;
299     stream->ts_pos[curstream] = 0;
300     stream->ts_streamcont[curstream] = -1;
301 }
302
303 static int check_ps_sync(const uint8_t *buf)
304 {
305     // a legal MPEG program stream must start with a Pack header in the
306     // first four bytes.
307     return (buf[0] == 0x00) && (buf[1] == 0x00) &&
308            (buf[2] == 0x01) && (buf[3] == 0xba);
309 }
310
311 static int check_ps_sc(const uint8_t *buf)
312 {
313     // a legal MPEG program stream must start with a Pack followed by a
314     // some other start code. If we've already verified the pack, this skip
315     // it and checks for a start code prefix.
316     int pos = 14 + ( buf[13] & 0x7 );   // skip over the PACK
317     return (buf[pos+0] == 0x00) && (buf[pos+1] == 0x00) && (buf[pos+2] == 0x01);
318 }
319
320 static int check_ts_sync(const uint8_t *buf)
321 {
322     // must have initial sync byte, no scrambling & a legal adaptation ctrl
323     return (buf[0] == 0x47) && ((buf[3] >> 6) == 0) && ((buf[3] >> 4) > 0);
324 }
325
326 static int have_ts_sync(const uint8_t *buf, int psize)
327 {
328     return check_ts_sync(&buf[0*psize]) && check_ts_sync(&buf[1*psize]) &&
329            check_ts_sync(&buf[2*psize]) && check_ts_sync(&buf[3*psize]) &&
330            check_ts_sync(&buf[4*psize]) && check_ts_sync(&buf[5*psize]) &&
331            check_ts_sync(&buf[6*psize]) && check_ts_sync(&buf[7*psize]);
332 }
333
334 static int hb_stream_check_for_ts(const uint8_t *buf)
335 {
336     // transport streams should have a sync byte every 188 bytes.
337     // search the first 8KB of buf looking for at least 8 consecutive
338     // correctly located sync patterns.
339     int offset = 0;
340
341     for ( offset = 0; offset < 8*1024-8*188; ++offset )
342     {
343         if ( have_ts_sync( &buf[offset], 188) )
344             return 188 | (offset << 8);
345         if ( have_ts_sync( &buf[offset], 192) )
346             return 192 | (offset << 8);
347         if ( have_ts_sync( &buf[offset], 204) )
348             return 204 | (offset << 8);
349         if ( have_ts_sync( &buf[offset], 208) )
350             return 208 | (offset << 8);
351     }
352     return 0;
353 }
354
355 static int hb_stream_check_for_ps(const uint8_t *buf)
356 {
357     // program streams should start with a PACK then some other mpeg start
358     // code (usually a SYS but that might be missing if we only have a clip).
359     return check_ps_sync(buf) && check_ps_sc(buf);
360 }
361
362 static int hb_stream_check_for_dvd_ps(const uint8_t *buf)
363 {
364     // DVD program streams should have a Pack header every 2048 bytes.
365     // check that we have 4 of these in a row.
366     return check_ps_sync(&buf[0*2048]) && check_ps_sync(&buf[1*2048]) &&
367            check_ps_sync(&buf[2*2048]) && check_ps_sync(&buf[3*2048]);
368 }
369
370 static int hb_stream_get_type(hb_stream_t *stream)
371 {
372     uint8_t buf[2048*4];
373
374     if ( fread(buf, 1, sizeof(buf), stream->file_handle) == sizeof(buf) )
375     {
376         int psize;
377         if ( ( psize = hb_stream_check_for_ts(buf) ) != 0 )
378         {
379             int offset = psize >> 8;
380             psize &= 0xff;
381             hb_log("file is MPEG Transport Stream with %d byte packets"
382                    " offset %d bytes", psize, offset);
383             stream->packetsize = psize;
384             stream->hb_stream_type = transport;
385             hb_ts_stream_init(stream);
386             if ( !stream->ts_number_video_pids || !stream->ts_number_audio_pids )
387             {
388                 return 0;
389             }
390             return 1;
391         }
392         if ( hb_stream_check_for_dvd_ps(buf) != 0 )
393         {
394             hb_log("file is MPEG DVD Program Stream");
395             stream->hb_stream_type = dvd_program;
396             return 1;
397         }
398         if ( hb_stream_check_for_ps(buf) != 0 )
399         {
400             hb_log("file is MPEG Program Stream");
401             stream->hb_stream_type = program;
402             return 1;
403         }
404     }
405     return 0;
406 }
407
408 static void hb_stream_delete_dynamic( hb_stream_t *d )
409 {
410     if( d->file_handle )
411     {
412         fclose( d->file_handle );
413                 d->file_handle = NULL;
414     }
415
416         int i=0;
417
418     if ( d->ts_packet )
419     {
420         free( d->ts_packet );
421         d->ts_packet = NULL;
422     }
423         for (i = 0; i < kMaxNumberDecodeStreams; i++)
424         {
425                 if (d->ts_buf[i])
426                 {
427                         hb_buffer_close(&(d->ts_buf[i]));
428                         d->ts_buf[i] = NULL;
429                 }
430         }
431 }
432
433 static void hb_stream_delete( hb_stream_t *d )
434 {
435     hb_stream_delete_dynamic( d );
436     free( d->path );
437     free( d );
438 }
439
440 static int audio_inactive( hb_stream_t *stream, int indx )
441 {
442     int aud_indx = indx - 1;
443
444     if ( stream->ts_audio_pids[aud_indx] < 0 )
445     {
446         // PID declared inactive by hb_stream_title_scan
447         return 1;
448     }
449     if ( stream->ts_audio_pids[aud_indx] == stream->pmt_info.PCR_PID )
450     {
451         // PCR PID is always active
452         return 0;
453     }
454
455     // see if we should make the stream inactive because scan.c didn't
456     // find a valid audio bitstream.
457     int i;
458     for ( i = 0; i < hb_list_count( stream->title->list_audio ); ++i )
459     {
460         hb_audio_t *audio = hb_list_item( stream->title->list_audio, i );
461         if ( audio->id == indx )
462         {
463             return 0;
464         }
465     }
466     // not in the title's audio list - declare the PID inactive
467     stream->ts_audio_pids[aud_indx] = -stream->ts_audio_pids[aud_indx];
468     return 1;
469 }
470
471 /***********************************************************************
472  * hb_stream_open
473  ***********************************************************************
474  *
475  **********************************************************************/
476 hb_stream_t * hb_stream_open( char *path, hb_title_t *title )
477 {
478     FILE *f = fopen( path, "rb" );
479     if ( f == NULL )
480     {
481         hb_log( "hb_stream_open: open %s failed", path );
482         return NULL;
483     }
484
485     hb_stream_t *d = calloc( sizeof( hb_stream_t ), 1 );
486     if ( d == NULL )
487     {
488         fclose( f );
489         hb_log( "hb_stream_open: can't allocate space for %s stream state", path );
490         return NULL;
491     }
492
493     /*
494      * if we're opening the stream to read & convert, we need
495      * the state we saved when we scanned the stream. if we're
496      * opening the stream to scan it we want to rebuild the state
497      * (even if we have saved state, the stream may have changed).
498      */
499     hb_stream_t *ss = hb_stream_lookup( path );
500     if ( title && ss && ss->hb_stream_type != ffmpeg )
501     {
502         /*
503          * copy the saved state since we might be encoding the same stream
504          * multiple times.
505          */
506         memcpy( d, ss, sizeof(*d) );
507         d->file_handle = f;
508         d->title = title;
509         d->path = strdup( path );
510
511         if ( d->hb_stream_type == transport )
512         {
513             d->ts_packet = malloc( d->packetsize );
514
515             int i = 0;
516             for ( ; i < d->ts_number_video_pids + d->ts_number_audio_pids; i++)
517             {
518                 if ( i && audio_inactive( d, i ) )
519                 {
520                     // this PID isn't wanted (we don't have a codec for it
521                     // or scan didn't find audio parameters)
522                     continue;
523                 }
524                 d->ts_buf[i] = hb_buffer_init(d->packetsize);
525                                 d->ts_buf[i]->size = 0;
526             }
527             hb_stream_seek( d, 0. );
528         }
529         return d;
530     }
531
532     /*
533      * opening for scan - delete any saved state then (re)scan the stream.
534      * If it's something we can deal with (MPEG2 PS or TS) return a stream
535      * reference structure & null otherwise.
536      */
537     if ( ss != NULL )
538     {
539         hb_stream_state_delete( ss );
540     }
541     d->file_handle = f;
542     d->title = title;
543     d->path = strdup( path );
544     if (d->path != NULL )
545     {
546         if ( hb_stream_get_type( d ) != 0 )
547         {
548             return d;
549         }
550         fclose( d->file_handle );
551                 d->file_handle = NULL;
552         if ( ffmpeg_open( d, title ) )
553         {
554             return d;
555         }
556     }
557     if ( d->file_handle )
558     {
559         fclose( d->file_handle );
560     }
561     if (d->path)
562     {
563         free( d->path );
564     }
565     hb_log( "hb_stream_open: open %s failed", path );
566     free( d );
567     return NULL;
568 }
569
570 /***********************************************************************
571  * hb_stream_close
572  ***********************************************************************
573  * Closes and frees everything
574  **********************************************************************/
575 void hb_stream_close( hb_stream_t ** _d )
576 {
577     hb_stream_t *stream = * _d;
578
579     if ( stream->hb_stream_type == ffmpeg )
580     {
581         ffmpeg_close( stream );
582         hb_stream_delete( stream );
583         *_d = NULL;
584         return;
585     }
586
587     if ( stream->frames )
588     {
589         hb_log( "stream: %d good frames, %d errors (%.0f%%)", stream->frames,
590                 stream->errors, (double)stream->errors * 100. /
591                 (double)stream->frames );
592     }
593
594     /*
595      * if the stream was opened for a scan, cache the result, otherwise delete
596      * the state.
597      */
598     if ( stream->title == NULL )
599     {
600         hb_stream_delete_dynamic( stream );
601         if ( stream_state_list == NULL )
602         {
603             stream_state_list = hb_list_init();
604         }
605         hb_list_add( stream_state_list, stream );
606     }
607     else
608     {
609         hb_stream_delete( stream );
610     }
611     *_d = NULL;
612 }
613
614 /* when the file was first opened we made entries for all the audio elementary
615  * streams we found in it. Streams that were later found during the preview scan
616  * now have an audio codec, type, rate, etc., associated with them. At the end
617  * of the scan we delete all the audio entries that weren't found by the scan
618  * or don't have a format we support. This routine deletes audio entry 'indx'
619  * by setting its PID to an invalid value so no packet will match it. (We can't
620  * move any of the entries since the index of the entry is used as the id
621  * of the media stream for HB. */
622 static void hb_stream_delete_audio_entry(hb_stream_t *stream, int indx)
623 {
624     if ( stream->ts_audio_pids[indx] > 0 )
625     {
626         stream->ts_audio_pids[indx] = -stream->ts_audio_pids[indx];
627     }
628 }
629
630 static int index_of_pid(int pid, hb_stream_t *stream)
631 {
632     int i;
633
634     if ( pid == stream->ts_video_pids[0] )
635         return 0;
636
637     for ( i = 0; i < stream->ts_number_audio_pids; ++i )
638         if ( pid == stream->ts_audio_pids[i] )
639             return i + 1;
640
641     return -1;
642 }
643
644 /***********************************************************************
645  * hb_ps_stream_title_scan
646  ***********************************************************************
647  *
648  **********************************************************************/
649 hb_title_t * hb_stream_title_scan(hb_stream_t *stream)
650 {
651         if ( stream->hb_stream_type == ffmpeg )
652         return ffmpeg_title_scan( stream );
653
654     // 'Barebones Title'
655     hb_title_t *aTitle = hb_title_init( stream->path, 0 );
656     aTitle->type = HB_STREAM_TYPE;
657     aTitle->index = 1;
658
659         // Copy part of the stream path to the title name
660         char *sep = strrchr(stream->path, '/');
661         if (sep)
662                 strcpy(aTitle->name, sep+1);
663         char *dot_term = strrchr(aTitle->name, '.');
664         if (dot_term)
665                 *dot_term = '\0';
666
667     // Height, width,  rate and aspect ratio information is filled in when the previews are built
668
669     hb_stream_duration(stream, aTitle);
670
671     // One Chapter
672     hb_chapter_t * chapter;
673     chapter = calloc( sizeof( hb_chapter_t ), 1 );
674     chapter->index = 1;
675     chapter->duration = aTitle->duration;
676     chapter->hours = aTitle->hours;
677     chapter->minutes = aTitle->minutes;
678     chapter->seconds = aTitle->seconds;
679     hb_list_add( aTitle->list_chapter, chapter );
680
681     // Figure out how many audio streams we really have:
682     // - For transport streams, for each PID listed in the PMT (whether
683     //   or not it was an audio stream type) read the bitstream until we
684     //   find an packet from that PID containing a PES header and see if
685     //   the elementary stream is an audio type.
686     // - For program streams read the first 4MB and take every unique
687     //   audio stream we find.
688         if (stream->hb_stream_type == transport)
689         {
690         int i;
691
692         for (i=0; i < stream->ts_number_audio_pids; i++)
693         {
694             hb_audio_t *audio = hb_ts_stream_set_audio_id_and_codec(stream, i);
695             if (audio->config.in.codec)
696                 hb_list_add( aTitle->list_audio, audio );
697             else
698             {
699                 free(audio);
700                 hb_stream_delete_audio_entry(stream, i);
701             }
702         }
703
704         // make sure we're grabbing the PCR PID
705         if ( index_of_pid( stream->pmt_info.PCR_PID, stream ) < 0 )
706         {
707             stream->ts_audio_pids[stream->ts_number_audio_pids++] =
708                 stream->pmt_info.PCR_PID;
709         }
710
711         // set the video id, codec & muxer
712         aTitle->video_id = 0;
713         aTitle->video_codec = st2codec[stream->ts_stream_type[0]].codec;
714         aTitle->video_codec_param = st2codec[stream->ts_stream_type[0]].codec_param;
715         aTitle->demuxer = HB_MPEG2_TS_DEMUXER;
716
717         if ( ( stream->ts_flags & TS_HAS_PCR ) == 0 )
718         {
719             hb_log( "transport stream missing PCRs - using video DTS instead" );
720         }
721
722         if ( stream->ts_IDRs < 1 )
723         {
724             hb_log( "transport stream doesn't seem to have video IDR frames" );
725             aTitle->flags |= HBTF_NO_IDR;
726         }
727         }
728     else
729     {
730         hb_ps_stream_find_audio_ids(stream, aTitle);
731     }
732
733   return aTitle;
734 }
735
736 /*
737  * read the next transport stream packet from 'stream'. Return NULL if
738  * we hit eof & a pointer to the sync byte otherwise.
739  */
740 static const uint8_t *next_packet( hb_stream_t *stream )
741 {
742     uint8_t *buf = stream->ts_packet + stream->packetsize - 188;
743
744     while ( 1 )
745     {
746         if ( fread(stream->ts_packet, 1, stream->packetsize, stream->file_handle) !=
747              stream->packetsize )
748         {
749             return NULL;
750         }
751         if (buf[0] == 0x47)
752         {
753             return buf;
754         }
755         // lost sync - back up to where we started then try to re-establish.
756         off_t pos = ftello(stream->file_handle) - stream->packetsize;
757         off_t pos2 = align_to_next_packet(stream);
758         if ( pos2 == 0 )
759         {
760             hb_log( "next_packet: eof while re-establishing sync @ %"PRId64, pos );
761             return NULL;
762         }
763         ts_warn( stream, "next_packet: sync lost @ %"PRId64", regained after %"PRId64" bytes",
764                  pos, pos2 );
765     }
766 }
767
768 /*
769  * skip to the start of the next PACK header in program stream src_stream.
770  */
771 static void skip_to_next_pack( hb_stream_t *src_stream )
772 {
773     // scan forward until we find the start of the next pack
774     uint32_t strt_code = -1;
775     int c;
776
777     flockfile( src_stream->file_handle );
778     while ( ( c = getc_unlocked( src_stream->file_handle ) ) != EOF )
779     {
780         strt_code = ( strt_code << 8 ) | c;
781         if ( strt_code == 0x000001ba )
782             // we found the start of the next pack
783             break;
784     }
785     funlockfile( src_stream->file_handle );
786
787     // if we didn't terminate on an eof back up so the next read
788     // starts on the pack boundary.
789     if ( c != EOF )
790     {
791         fseeko( src_stream->file_handle, -4, SEEK_CUR );
792     }
793 }
794
795 static int isIframe( hb_stream_t *stream, const uint8_t *buf, int adapt_len )
796 {
797     // For mpeg2: look for a gop start or i-frame picture start
798     // for h.264: look for idr nal type or a slice header for an i-frame
799     // for vc1:   look for a Sequence header
800     int i;
801     uint32_t strid = 0;
802
803
804     if ( stream->ts_stream_type[0] <= 2 )
805     {
806         // This section of the code handles MPEG-1 and MPEG-2 video streams
807         for (i = 13 + adapt_len; i < 188; i++)
808         {
809             strid = (strid << 8) | buf[i];
810             if ( ( strid >> 8 ) == 1 )
811             {
812                 // we found a start code
813                 uint8_t id = strid;
814                 switch ( id )
815                 {
816                     case 0xB8: // group_start_code (GOP header)
817                     case 0xB3: // sequence_header code
818                         return 1;
819
820                     case 0x00: // picture_start_code
821                         // picture_header, let's see if it's an I-frame
822                         if (i<185)
823                         {
824                             // check if picture_coding_type == 1
825                             if ((buf[i+2] & (0x7 << 3)) == (1 << 3))
826                             {
827                                 // found an I-frame picture
828                                 return 1;
829                             }
830                         }
831                         break;
832                 }
833             }
834         }
835         // didn't find an I-frame
836         return 0;
837     }
838     if ( stream->ts_stream_type[0] == 0x1b )
839     {
840         // we have an h.264 stream 
841         for (i = 13 + adapt_len; i < 188; i++)
842         {
843             strid = (strid << 8) | buf[i];
844             if ( ( strid >> 8 ) == 1 )
845             {
846                 // we found a start code - remove the ref_idc from the nal type
847                 uint8_t nal_type = strid & 0x1f;
848                 if ( nal_type == 0x05 )
849                     // h.264 IDR picture start
850                     return 1;
851             }
852         }
853         // didn't find an I-frame
854         return 0;
855     }
856     if ( stream->ts_stream_type[0] == 0xea )
857     {
858         // we have an vc1 stream 
859         for (i = 13 + adapt_len; i < 188; i++)
860         {
861             strid = (strid << 8) | buf[i];
862             if ( strid == 0x10f )
863             {
864                 // the ffmpeg vc1 decoder requires a seq hdr code in the first
865                 // frame.
866                 return 1;
867             }
868         }
869         // didn't find an I-frame
870         return 0;
871     }
872
873     // we don't understand the stream type so just say "yes" otherwise
874     // we'll discard all the video.
875     return 1;
876 }
877
878 /*
879  * scan the next MB of 'stream' to find the next start packet for
880  * the Packetized Elementary Stream associated with TS PID 'pid'.
881  */
882 static const uint8_t *hb_ts_stream_getPEStype(hb_stream_t *stream, uint32_t pid)
883 {
884     int npack = 300000; // max packets to read
885
886     while (--npack >= 0)
887     {
888         const uint8_t *buf = next_packet( stream );
889         if ( buf == NULL )
890         {
891             hb_log("hb_ts_stream_getPEStype: EOF while searching for PID 0x%x", pid);
892             return 0;
893         }
894
895         // while we're reading the stream, check if it has valid PCRs
896         // and/or random access points.
897         uint32_t pack_pid = ( (buf[1] & 0x1f) << 8 ) | buf[2];
898         if ( pack_pid == stream->pmt_info.PCR_PID )
899         {
900             if ( ( buf[5] & 0x10 ) &&
901                  ( ( ( buf[3] & 0x30 ) == 0x20 ) ||
902                    ( ( buf[3] & 0x30 ) == 0x30 && buf[4] > 6 ) ) )
903             {
904                 stream->ts_flags |= TS_HAS_PCR;
905             }
906         }
907         if ( buf[5] & 0x40 )
908         {
909             stream->ts_flags |= TS_HAS_RAP;
910         }
911
912         /*
913          * The PES header is only in TS packets with 'start' set so we check
914          * that first then check for the right PID.
915          */
916         if ((buf[1] & 0x40) == 0 || pack_pid != pid )
917         {
918             // not a start packet or not the pid we want
919             continue;
920         }
921
922         /* skip over the TS hdr to return a pointer to the PES hdr */
923         int udata = 4;
924         switch (buf[3] & 0x30)
925         {
926             case 0x00: // illegal
927             case 0x20: // fill packet
928                 continue;
929
930             case 0x30: // adaptation
931                 if (buf[4] > 182)
932                 {
933                     hb_log("hb_ts_stream_getPEStype: invalid adaptation field length %d for PID 0x%x", buf[4], pid);
934                     continue;
935                 }
936                 udata += buf[4] + 1;
937                 break;
938         }
939         /* PES hdr has to begin with an mpeg start code */
940         if (buf[udata+0] == 0x00 && buf[udata+1] == 0x00 && buf[udata+2] == 0x01)
941         {
942             return &buf[udata];
943         }
944     }
945
946     /* didn't find it */
947     return 0;
948 }
949
950 static uint64_t hb_ps_stream_getVideoPTS(hb_stream_t *stream)
951 {
952     hb_buffer_t *buf  = hb_buffer_init(HB_DVD_READ_BUFFER_SIZE);
953     hb_list_t *list = hb_list_init();
954     // how many blocks we read while searching for a video PES header
955     int blksleft = 1024;
956     uint64_t pts = 0;
957
958     while (--blksleft >= 0 && hb_stream_read(stream, buf) == 1)
959     {
960         hb_buffer_t *es;
961
962         // 'buf' contains an MPEG2 PACK - get a list of all it's elementary streams
963         hb_demux_ps( buf, list, 0 );
964
965         while ( ( es = hb_list_item( list, 0 ) ) )
966         {
967             hb_list_rem( list, es );
968             if ( es->id == 0xe0 )
969             {
970                 // this PES contains video - if there's a PTS we're done
971                 // hb_demux_ps left the PTS in buf_es->start.
972                 if ( es->start != ~0 )
973                 {
974                     pts = es->start;
975                     blksleft = 0;
976                     break;
977                 }
978             }
979             hb_buffer_close( &es );
980         }
981     }
982     hb_list_empty( &list );
983     hb_buffer_close(&buf);
984     return pts;
985 }
986
987 /***********************************************************************
988  * hb_stream_duration
989  ***********************************************************************
990  *
991  * Finding stream duration is difficult.  One issue is that the video file
992  * may have chunks from several different program fragments (main feature,
993  * commercials, station id, trailers, etc.) all with their own base pts
994  * value.  We can't find the piece boundaries without reading the entire
995  * file but if we compute a rate based on time stamps from two different
996  * pieces the result will be meaningless.  The second issue is that the
997  * data rate of compressed video normally varies by 5-10x over the length
998  * of the video. This says that we want to compute the rate over relatively
999  * long segments to get a representative average but long segments increase
1000  * the likelihood that we'll cross a piece boundary.
1001  *
1002  * What we do is take time stamp samples at several places in the file
1003  * (currently 16) then compute the average rate (i.e., ticks of video per
1004  * byte of the file) for all pairs of samples (N^2 rates computed for N
1005  * samples). Some of those rates will be absurd because the samples came
1006  * from different segments. Some will be way low or high because the
1007  * samples came from a low or high motion part of the segment. But given
1008  * that we're comparing *all* pairs the majority of the computed rates
1009  * should be near the overall average.  So we median filter the computed
1010  * rates to pick the most representative value.
1011  *
1012  **********************************************************************/
1013 struct pts_pos {
1014     uint64_t pos;   /* file position of this PTS sample */
1015     uint64_t pts;   /* PTS from video stream */
1016 };
1017
1018 #define NDURSAMPLES 128
1019
1020 // get one (position, timestamp) sampple from a transport or program
1021 // stream.
1022 static struct pts_pos hb_sample_pts(hb_stream_t *stream, uint64_t fpos)
1023 {
1024     struct pts_pos pp = { 0, 0 };
1025
1026     if ( stream->hb_stream_type == transport )
1027     {
1028         const uint8_t *buf;
1029         fseeko( stream->file_handle, fpos, SEEK_SET );
1030         align_to_next_packet( stream );
1031         buf = hb_ts_stream_getPEStype( stream, stream->ts_video_pids[0] );
1032         if ( buf == NULL )
1033         {
1034             hb_log("hb_sample_pts: couldn't find video packet near %"PRIu64, fpos);
1035             return pp;
1036         }
1037         if ( ( buf[7] >> 7 ) != 1 )
1038         {
1039             hb_log("hb_sample_pts: no PTS in video packet near %"PRIu64, fpos);
1040             return pp;
1041         }
1042         pp.pts = ( ( (uint64_t)buf[9] >> 1 ) & 7 << 30 ) |
1043                  ( (uint64_t)buf[10] << 22 ) |
1044                  ( ( (uint64_t)buf[11] >> 1 ) << 15 ) |
1045                  ( (uint64_t)buf[12] << 7 ) |
1046                  ( (uint64_t)buf[13] >> 1 );
1047
1048         if ( isIframe( stream, buf, -4 ) )
1049         {
1050             if (  stream->ts_IDRs < 255 )
1051             {
1052                 ++stream->ts_IDRs;
1053             }
1054         }
1055     }
1056     else
1057     {
1058         // round address down to nearest dvd sector start
1059         fpos &=~ ( HB_DVD_READ_BUFFER_SIZE - 1 );
1060         fseeko( stream->file_handle, fpos, SEEK_SET );
1061         if ( stream->hb_stream_type == program )
1062         {
1063             skip_to_next_pack( stream );
1064         }
1065         pp.pts = hb_ps_stream_getVideoPTS( stream );
1066     }
1067     pp.pos = ftello(stream->file_handle);
1068     return pp;
1069 }
1070
1071 static int dur_compare( const void *a, const void *b )
1072 {
1073     const double *aval = a, *bval = b;
1074     return ( *aval < *bval ? -1 : ( *aval == *bval ? 0 : 1 ) );
1075 }
1076
1077 // given an array of (position, time) samples, compute a max-likelihood
1078 // estimate of the average rate by computing the rate between all pairs
1079 // of samples then taking the median of those rates.
1080 static double compute_stream_rate( struct pts_pos *pp, int n )
1081 {
1082     int i, j;
1083     double rates[NDURSAMPLES * NDURSAMPLES / 8];
1084     double *rp = rates;
1085
1086     // the following nested loops compute the rates between all pairs.
1087     *rp = 0;
1088     for ( i = 0; i < n-1; ++i )
1089     {
1090         // Bias the median filter by not including pairs that are "far"
1091         // from one another. This is to handle cases where the file is
1092         // made of roughly equal size pieces where a symmetric choice of
1093         // pairs results in having the same number of intra-piece &
1094         // inter-piece rate estimates. This would mean that the median
1095         // could easily fall in the inter-piece part of the data which
1096         // would give a bogus estimate. The 'ns' index creates an
1097         // asymmetry that favors locality.
1098         int ns = i + ( n >> 3 );
1099         if ( ns > n )
1100             ns = n;
1101         for ( j = i+1; j < ns; ++j )
1102         {
1103             if ( (uint64_t)(pp[j].pts - pp[i].pts) > 90000LL*3600*6 )
1104                 break;
1105             if ( pp[j].pts != pp[i].pts && pp[j].pos > pp[i].pos )
1106             {
1107                 *rp = ((double)( pp[j].pts - pp[i].pts )) /
1108                       ((double)( pp[j].pos - pp[i].pos ));
1109                                 ++rp;
1110             }
1111         }
1112     }
1113     // now compute and return the median of all the (n*n/2) rates we computed
1114     // above.
1115     int nrates = rp - rates;
1116     qsort( rates, nrates, sizeof (rates[0] ), dur_compare );
1117     return rates[nrates >> 1];
1118 }
1119
1120 static void hb_stream_duration(hb_stream_t *stream, hb_title_t *inTitle)
1121 {
1122     struct pts_pos ptspos[NDURSAMPLES];
1123     struct pts_pos *pp = ptspos;
1124     int i;
1125
1126     fseeko(stream->file_handle, 0, SEEK_END);
1127     uint64_t fsize = ftello(stream->file_handle);
1128     uint64_t fincr = fsize / NDURSAMPLES;
1129     uint64_t fpos = fincr / 2;
1130     for ( i = NDURSAMPLES; --i >= 0; fpos += fincr )
1131     {
1132         *pp++ = hb_sample_pts(stream, fpos);
1133     }
1134     uint64_t dur = compute_stream_rate( ptspos, pp - ptspos ) * (double)fsize;
1135     inTitle->duration = dur;
1136     dur /= 90000;
1137     inTitle->hours    = dur / 3600;
1138     inTitle->minutes  = ( dur % 3600 ) / 60;
1139     inTitle->seconds  = dur % 60;
1140
1141     rewind(stream->file_handle);
1142 }
1143
1144 /***********************************************************************
1145  * hb_stream_read
1146  ***********************************************************************
1147  *
1148  **********************************************************************/
1149 int hb_stream_read( hb_stream_t * src_stream, hb_buffer_t * b )
1150 {
1151         if ( src_stream->hb_stream_type == ffmpeg )
1152     {
1153         return ffmpeg_read( src_stream, b );
1154     }
1155     if ( src_stream->hb_stream_type == dvd_program )
1156     {
1157         size_t amt_read = fread(b->data, HB_DVD_READ_BUFFER_SIZE, 1,
1158                                 src_stream->file_handle);
1159         return (amt_read > 0);
1160     }
1161     if ( src_stream->hb_stream_type == program )
1162     {
1163         // a general program stream has arbitrary sized pack's. we're
1164         // currently positioned at the start of a pack so read up to but
1165         // not including the start of the next, expanding the buffer
1166         // as necessary.
1167         uint8_t *cp = b->data;
1168         uint8_t *ep = cp + b->alloc;
1169         uint32_t strt_code = -1;
1170         int c;
1171
1172         // consume the first byte of the initial pack so we don't match on
1173         // it in the loop below.
1174         if ( ( c = getc( src_stream->file_handle ) ) == EOF )
1175             return 0;
1176
1177         *cp++ = c;
1178
1179         flockfile( src_stream->file_handle );
1180         while ( ( c = getc_unlocked( src_stream->file_handle ) ) != EOF )
1181         {
1182             strt_code = ( strt_code << 8 ) | c;
1183             if ( strt_code == 0x000001ba )
1184                 // we found the start of the next pack
1185                 break;
1186             if ( cp >= ep )
1187             {
1188                 // need to expand the buffer
1189                 int curSize = cp - b->data;
1190                 hb_buffer_realloc( b, curSize * 2 );
1191                 cp = b->data + curSize;
1192                 ep = b->data + b->alloc;
1193             }
1194             *cp++ = c;
1195         }
1196         funlockfile( src_stream->file_handle );
1197
1198         // if we didn't terminate on an eof back up so the next read
1199         // starts on the pack boundary.
1200         b->size = cp - b->data;
1201         if ( c != EOF )
1202         {
1203             fseeko( src_stream->file_handle, -4, SEEK_CUR );
1204             b->size -= 4;
1205         }
1206         return 1;
1207     }
1208     return hb_ts_stream_decode( src_stream, b );
1209 }
1210
1211 int hb_stream_seek_chapter( hb_stream_t * stream, int chapter_num )
1212 {
1213
1214     if ( stream->hb_stream_type != ffmpeg )
1215     {
1216         // currently meaningliess for transport and program streams
1217         return 1;
1218     }
1219     if ( !stream || !stream->title ||
1220          chapter_num > hb_list_count( stream->title->list_chapter ) )
1221     {
1222         return 0;
1223     }
1224
1225     int64_t sum_dur = 0;
1226     hb_chapter_t *chapter = NULL;
1227     int i;
1228     for ( i = 0; i < chapter_num; ++i)
1229     {
1230         chapter = hb_list_item( stream->title->list_chapter, i );
1231         sum_dur += chapter->duration;
1232     }
1233     stream->chapter = chapter_num - 1;
1234     stream->chapter_end = sum_dur;
1235
1236     int64_t pos = ( ( ( sum_dur - chapter->duration ) * AV_TIME_BASE ) / 90000 );
1237
1238     hb_deep_log( 2, "Seeking to chapter %d: starts %"PRId64", ends %"PRId64", AV pos %"PRId64,
1239                  chapter_num, sum_dur - chapter->duration, sum_dur, pos);
1240
1241     if ( chapter_num > 1 && pos > 0 )
1242     {
1243         av_seek_frame( stream->ffmpeg_ic, -1, pos, 0);
1244     }
1245     return 1;
1246 }
1247
1248 /***********************************************************************
1249  * hb_stream_chapter
1250  ***********************************************************************
1251  * Return the number of the chapter that we are currently in. We store
1252  * the chapter number starting from 0, so + 1 for the real chpater num.
1253  **********************************************************************/
1254 int hb_stream_chapter( hb_stream_t * src_stream )
1255 {
1256     return( src_stream->chapter + 1 );
1257 }
1258
1259 /***********************************************************************
1260  * hb_stream_seek
1261  ***********************************************************************
1262  *
1263  **********************************************************************/
1264 int hb_stream_seek( hb_stream_t * stream, float f )
1265 {
1266         if ( stream->hb_stream_type == ffmpeg )
1267     {
1268         return ffmpeg_seek( stream, f );
1269     }
1270     off_t stream_size, cur_pos, new_pos;
1271     double pos_ratio = f;
1272     cur_pos = ftello( stream->file_handle );
1273     fseeko( stream->file_handle, 0, SEEK_END );
1274     stream_size = ftello( stream->file_handle );
1275     new_pos = (off_t) ((double) (stream_size) * pos_ratio);
1276     new_pos &=~ (HB_DVD_READ_BUFFER_SIZE - 1);
1277
1278     int r = fseeko( stream->file_handle, new_pos, SEEK_SET );
1279     if (r == -1)
1280     {
1281         fseeko( stream->file_handle, cur_pos, SEEK_SET );
1282         return 0;
1283     }
1284
1285     if ( stream->hb_stream_type == transport )
1286     {
1287         // We need to drop the current decoder output and move
1288         // forwards to the next transport stream packet.
1289         hb_ts_stream_reset(stream);
1290         if ( f > 0 )
1291         {
1292             if ( stream->ts_IDRs )
1293             {
1294                 // the stream has IDRs so look for one.
1295                 stream->need_keyframe = 1;
1296             }
1297         }
1298         else
1299         {
1300             // we're at the beginning - say we have video sync so that we
1301             // won't drop initial SPS & PPS data on an AVC stream.
1302             stream->need_keyframe = 0;
1303         }
1304     }
1305     else if ( stream->hb_stream_type == program )
1306     {
1307         skip_to_next_pack( stream );
1308     }
1309
1310     return 1;
1311 }
1312
1313 int hb_stream_seek_ts( hb_stream_t * stream, int64_t ts )
1314 {
1315         if ( stream->hb_stream_type == ffmpeg )
1316     {
1317         return ffmpeg_seek_ts( stream, ts );
1318     }
1319     return -1;
1320 }
1321
1322 static const char* make_upper( const char* s )
1323 {
1324     static char name[8];
1325     char *cp = name;
1326     char *ep = cp + sizeof(name)-1;
1327
1328     while ( *s && cp < ep )
1329     {
1330         *cp++ = islower(*s)? toupper(*s) : *s;
1331         ++s;
1332     }
1333     *cp = 0;
1334     return name;
1335 }
1336
1337 static void set_audio_description( hb_audio_t *audio, iso639_lang_t *lang )
1338 {
1339     /* XXX
1340      * This is a duplicate of code in dvd.c - it should get factored out
1341      * into a common routine. We probably should only be putting the lang
1342      * code or a lang pointer into the audio config & let the common description
1343      * formatting routine in scan.c do all the stuff below.
1344      */
1345     const char *codec_name;
1346     AVCodecContext *cc;
1347
1348     if ( audio->config.in.codec == HB_ACODEC_FFMPEG &&
1349          ( cc = hb_ffmpeg_context( audio->config.in.codec_param ) ) &&
1350          avcodec_find_decoder( cc->codec_id ) )
1351     {
1352         codec_name = make_upper( avcodec_find_decoder( cc->codec_id )->name );
1353         if ( !strcmp( codec_name, "LIBFAAD" ) )
1354         {
1355             codec_name = "AAC";
1356         }
1357     }
1358     else if ( audio->config.in.codec == HB_ACODEC_MPGA &&
1359               avcodec_find_decoder( audio->config.in.codec_param ) )
1360     {
1361         codec_name = avcodec_find_decoder( audio->config.in.codec_param )->name;
1362     }
1363     else
1364     {
1365         codec_name = audio->config.in.codec == HB_ACODEC_AC3 ? "AC3" :
1366                      audio->config.in.codec == HB_ACODEC_DCA ? "DTS" :
1367                      audio->config.in.codec == HB_ACODEC_MPGA ? "MPEG" : 
1368                      audio->config.in.codec == HB_ACODEC_LPCM ? "LPCM" : 
1369                      audio->config.in.codec == HB_ACODEC_FFMPEG ? "FFMPEG" :
1370                      "Unknown";
1371     }
1372     snprintf( audio->config.lang.description,
1373               sizeof( audio->config.lang.description ), "%s (%s)",
1374               strlen(lang->native_name) ? lang->native_name : lang->eng_name,
1375               codec_name );
1376     snprintf( audio->config.lang.simple, sizeof( audio->config.lang.simple ), "%s",
1377               strlen(lang->native_name) ? lang->native_name : lang->eng_name );
1378     snprintf( audio->config.lang.iso639_2, sizeof( audio->config.lang.iso639_2 ),
1379               "%s", lang->iso639_2);
1380 }
1381
1382 static hb_audio_t *hb_ts_stream_set_audio_id_and_codec(hb_stream_t *stream,
1383                                                        int aud_pid_index)
1384 {
1385     off_t cur_pos = ftello(stream->file_handle);
1386     hb_audio_t *audio = calloc( sizeof( hb_audio_t ), 1 );
1387     const uint8_t *buf;
1388
1389     fseeko(stream->file_handle, 0, SEEK_SET);
1390     align_to_next_packet(stream);
1391     buf = hb_ts_stream_getPEStype(stream, stream->ts_audio_pids[aud_pid_index]);
1392
1393     /* check that we found a PES header */
1394     uint8_t stype = 0;
1395     if (buf && buf[0] == 0x00 && buf[1] == 0x00 && buf[2] == 0x01)
1396     {
1397         stype = stream->ts_stream_type[1 + aud_pid_index];
1398
1399         // 0xbd ("private stream 1") is the normal container for non-ISO
1400         // media - AC3/DCA/PCM/etc.
1401         if ( buf[3] == 0xbd )
1402         {
1403             if ( st2codec[stype].kind == U )
1404             {
1405                 // XXX assume unknown stream types are AC-3 (if they're not
1406                 // audio we'll find that out during the scan but if they're
1407                 // some other type of audio we'll end up ignoring them).
1408                 stype = 0x81;
1409                 stream->ts_stream_type[1 + aud_pid_index] = 0x81;
1410             }
1411         }
1412         else if ( buf[3] == 0xfd )
1413         {
1414             // 0xfd indicates an extended stream id (ISO 13818-1(2007)).
1415             // the blu ray consortium apparently forgot to read the portion
1416             // of the MPEG spec that says one PID should map to one media
1417             // stream and multiplexed multiple types of audio into one PID
1418             // using the extended stream identifier of the PES header to
1419             // distinguish them. So we have to check if that's happening and
1420             // if so tell the runtime what esid we want.
1421             if ( st2codec[stype].kind == A && stype == 0x83 &&
1422                  stream->ts_format_id[1 + aud_pid_index] == TS_FORMAT_ID_AC3 )
1423             {
1424                 // This is an interleaved TrueHD/AC-3 stream and the esid of
1425                 // the AC-3 is 0x76
1426                 stream->ts_multiplexed[1 + aud_pid_index] = 0x76;
1427                 stype = 0x81;
1428                 stream->ts_stream_type[1 + aud_pid_index] = 0x81;
1429             }
1430             if ( st2codec[stype].kind == A && stype == 0x86 )
1431             {
1432                 // This is an interleaved DTS-HD/DTS stream and the esid of
1433                 // the DTS is 0x71
1434                 stream->ts_multiplexed[1 + aud_pid_index] = 0x71;
1435                 stype = 0x82;
1436                 stream->ts_stream_type[1 + aud_pid_index] = 0x82;
1437             }
1438         }
1439         else if ((buf[3] & 0xe0) == 0xc0)
1440         {
1441             // 0xC0 - 0xCF are the normal containers for ISO-standard
1442             // media (mpeg2 audio and mpeg4 AAC).
1443             if ( st2codec[stype].kind == U )
1444             {
1445                 // XXX assume unknown stream types are MPEG audio
1446                 stype = 0x03;
1447                 stream->ts_stream_type[1 + aud_pid_index] = 0x03;
1448             }
1449         }
1450         else
1451         {
1452             stype = 0;
1453         }
1454     }
1455     // if we found an audio stream type & HB has a codec that can decode it
1456     // finish configuring the audio so we'll add it to the title's list.
1457     if ( st2codec[stype].kind == A && st2codec[stype].codec )
1458     {
1459         audio->id = 1 + aud_pid_index;
1460         audio->config.in.codec = st2codec[stype].codec;
1461         audio->config.in.codec_param = st2codec[stype].codec_param;
1462                 set_audio_description( audio,
1463                   lang_for_code( stream->a52_info[aud_pid_index].lang_code ) );
1464         hb_log("transport stream pid 0x%x (type 0x%x) may be %s audio (id 0x%x)",
1465                stream->ts_audio_pids[aud_pid_index],
1466                stype, st2codec[stype].name, audio->id);
1467     }
1468     else
1469     {
1470         if ( buf )
1471         {
1472             hb_log("transport stream pid 0x%x (type 0x%x, substream 0x%x) "
1473                     "isn't audio", stream->ts_audio_pids[aud_pid_index],
1474                     stream->ts_stream_type[1 + aud_pid_index], buf[3]);
1475         }
1476         else
1477         {
1478             hb_log("transport stream pid 0x%x (type 0x%x) isn't audio",
1479                     stream->ts_audio_pids[aud_pid_index],
1480                     stream->ts_stream_type[1 + aud_pid_index]);
1481         }
1482         }
1483     fseeko(stream->file_handle, cur_pos, SEEK_SET);
1484     return audio;
1485 }
1486
1487 static void add_audio_to_title(hb_title_t *title, int id)
1488 {
1489     hb_audio_t *audio = calloc( sizeof( hb_audio_t ), 1 );
1490
1491     audio->id = id;
1492     switch ( id >> 12 )
1493     {
1494         case 0x0:
1495             audio->config.in.codec = HB_ACODEC_MPGA;
1496             hb_log("add_audio_to_title: added MPEG audio stream 0x%x", id);
1497             break;
1498         case 0x2:
1499             // type 2 is a DVD subtitle stream - just ignore it */
1500             free( audio );
1501             return;
1502         case 0x8:
1503             audio->config.in.codec = HB_ACODEC_AC3;
1504             hb_log("add_audio_to_title: added AC3 audio stream 0x%x", id);
1505             break;
1506         case 0xa:
1507             audio->config.in.codec = HB_ACODEC_LPCM;
1508             hb_log("add_audio_to_title: added LPCM audio stream 0x%x", id);
1509             break;
1510         default:
1511             hb_log("add_audio_to_title: unknown audio stream type 0x%x", id);
1512             free( audio );
1513             return;
1514
1515     }
1516     set_audio_description( audio, lang_for_code( 0 ) );
1517     hb_list_add( title->list_audio, audio );
1518 }
1519
1520 static void hb_ps_stream_find_audio_ids(hb_stream_t *stream, hb_title_t *title)
1521 {
1522     off_t cur_pos = ftello(stream->file_handle);
1523     hb_buffer_t *buf  = hb_buffer_init(HB_DVD_READ_BUFFER_SIZE);
1524     hb_list_t *list = hb_list_init();
1525     // how many blocks we read while searching for audio streams
1526     int blksleft = 4096;
1527     // there can be at most 16 unique streams in an MPEG PS (8 in a DVD)
1528     // so we use a bitmap to keep track of the ones we've already seen.
1529     // Bit 'i' of smap is set if we've already added the audio for
1530     // audio substream id 'i' to the title's audio list.
1531     uint32_t smap = 0;
1532
1533     // start looking 20% into the file since there's occasionally no
1534     // audio at the beginning (particularly for vobs).
1535     hb_stream_seek(stream, 0.2f);
1536
1537     while (--blksleft >= 0 && hb_stream_read(stream, buf) == 1)
1538     {
1539         hb_buffer_t *es;
1540
1541         // 'buf' contains an MPEG2 PACK - get a list of all it's elementary streams
1542         hb_demux_ps( buf, list, 0 );
1543
1544         while ( ( es = hb_list_item( list, 0 ) ) )
1545         {
1546             hb_list_rem( list, es );
1547             if ( (es->id & 0xff) == 0xbd || (es->id & 0xe0) == 0xc0 )
1548             {
1549                 // this PES contains some kind of audio - get the substream id
1550                 // and check if we've seen it already.
1551                 int ssid = (es->id > 0xff ? es->id >> 8 : es->id) & 0xf;
1552                 if ( (smap & (1 << ssid)) == 0 )
1553                 {
1554                     // we haven't seen this stream before - add it to the
1555                     // title's list of audio streams.
1556                     smap |= (1 << ssid);
1557                     add_audio_to_title(title, es->id);
1558                 }
1559             }
1560             hb_buffer_close( &es );
1561         }
1562     }
1563     hb_list_empty( &list );
1564     hb_buffer_close(&buf);
1565     fseeko(stream->file_handle, cur_pos, SEEK_SET);
1566 }
1567
1568 /***********************************************************************
1569  * hb_ts_stream_init
1570  ***********************************************************************
1571  *
1572  **********************************************************************/
1573
1574 static void hb_ts_stream_init(hb_stream_t *stream)
1575 {
1576         int i;
1577
1578         for (i=0; i < kMaxNumberDecodeStreams; i++)
1579         {
1580                 stream->ts_streamcont[i] = -1;
1581         }
1582         stream->ts_video_pids[0] = -1;
1583     for ( i = 0; i < stream->ts_number_audio_pids; i++ )
1584     {
1585         stream-> ts_audio_pids[i] = -1;
1586     }
1587
1588     stream->ts_packet = malloc( stream->packetsize );
1589
1590         // Find the audio and video pids in the stream
1591         hb_ts_stream_find_pids(stream);
1592
1593         for (i = 0; i < stream->ts_number_video_pids + stream->ts_number_audio_pids; i++)
1594         {
1595         // demuxing buffer for TS to PS conversion
1596                 stream->ts_buf[i] = hb_buffer_init(stream->packetsize);
1597                 stream->ts_buf[i]->size = 0;
1598         }
1599 }
1600
1601 #define MAX_HOLE 208*80
1602
1603 static off_t align_to_next_packet(hb_stream_t *stream)
1604 {
1605     uint8_t buf[MAX_HOLE];
1606         off_t pos = 0;
1607     off_t start = ftello(stream->file_handle);
1608
1609     if ( start >= stream->packetsize ) {
1610         start -= stream->packetsize;
1611         fseeko(stream->file_handle, start, SEEK_SET);
1612     }
1613
1614     if (fread(buf, sizeof(buf), 1, stream->file_handle) == 1)
1615         {
1616         const uint8_t *bp = buf;
1617         int i;
1618
1619         for ( i = sizeof(buf); --i >= 0; ++bp )
1620         {
1621             if ( have_ts_sync( bp, stream->packetsize ) )
1622             {
1623                 break;
1624             }
1625         }
1626         if ( i >= 0 )
1627         {
1628             pos = ( bp - buf ) - stream->packetsize + 188;
1629             if ( pos < 0 )
1630                 pos = 0;
1631         }
1632         }
1633     fseeko(stream->file_handle, start+pos, SEEK_SET);
1634         return pos;
1635 }
1636
1637
1638 typedef struct {
1639     uint8_t *buf;
1640     uint32_t val;
1641     int pos;
1642 } bitbuf_t;
1643
1644 static const unsigned int bitmask[] = {
1645         0x0,0x1,0x3,0x7,0xf,0x1f,0x3f,0x7f,0xff,
1646         0x1ff,0x3ff,0x7ff,0xfff,0x1fff,0x3fff,0x7fff,0xffff,
1647         0x1ffff,0x3ffff,0x7ffff,0xfffff,0x1fffff,0x3fffff,0x7fffff,0xffffff,
1648         0x1ffffff,0x3ffffff,0x7ffffff,0xfffffff,0x1fffffff,0x3fffffff,0x7fffffff,0xffffffff};
1649
1650 static inline void set_buf(bitbuf_t *bb, uint8_t* buf, int bufsize, int clear)
1651 {
1652         bb->pos = 0;
1653         bb->buf = buf;
1654         bb->val = (bb->buf[0] << 24) | (bb->buf[1] << 16) |
1655               (bb->buf[2] << 8) | bb->buf[3];
1656         if (clear)
1657                 memset(bb->buf, 0, bufsize);
1658 }
1659
1660 static inline int buf_size(bitbuf_t *bb)
1661 {
1662         return bb->pos >> 3;
1663 }
1664
1665 static inline unsigned int get_bits(bitbuf_t *bb, int bits)
1666 {
1667         unsigned int val;
1668         int left = 32 - (bb->pos & 31);
1669
1670         if (bits < left)
1671         {
1672                 val = (bb->val >> (left - bits)) & bitmask[bits];
1673                 bb->pos += bits;
1674         }
1675         else
1676         {
1677                 val = (bb->val & bitmask[left]) << (bits - left);
1678                 bb->pos += left;
1679                 bits -= left;
1680
1681                 int pos = bb->pos >> 3;
1682                 bb->val = (bb->buf[pos] << 24) | (bb->buf[pos + 1] << 16) | (bb->buf[pos + 2] << 8) | bb->buf[pos + 3];
1683
1684                 if (bits > 0)
1685                 {
1686                         val |= (bb->val >> (32 - bits)) & bitmask[bits];
1687                         bb->pos += bits;
1688                 }
1689         }
1690
1691         return val;
1692 }
1693
1694 // extract what useful information we can from the elementary stream
1695 // descriptor list at 'dp' and add it to the stream at 'esindx'.
1696 // Descriptors with info we don't currently use are ignored.
1697 // The descriptor list & descriptor item formats are defined in
1698 // ISO 13818-1 (2000E) section 2.6 (pg. 62).
1699 static void decode_element_descriptors(hb_stream_t* stream, int esindx,
1700                                        const uint8_t *dp, uint8_t dlen)
1701 {
1702     const uint8_t *ep = dp + dlen;
1703
1704     while (dp < ep)
1705     {
1706         switch (dp[0])
1707         {
1708             case 5:    // Registration descriptor
1709                 stream->ts_format_id[esindx+1] = (dp[2] << 24) | (dp[3] << 16) |
1710                                                (dp[4] << 8)  | dp[5];
1711                 break;
1712
1713             case 10:    // ISO_639_language descriptor
1714                 stream->a52_info[esindx].lang_code = lang_to_code(lang_for_code2((const char *)&dp[2]));
1715                 break;
1716
1717             case 0x6a:  // DVB AC-3 descriptor
1718                 stream->ts_stream_type[esindx+1] = 0x81;
1719                 break;
1720
1721             default:
1722                 break;
1723         }
1724         dp += dp[1] + 2;
1725     }
1726 }
1727
1728 static const char *stream_type_name (uint8_t stream_type)
1729 {
1730     return st2codec[stream_type].name? st2codec[stream_type].name : "Unknown";
1731 }
1732
1733 int decode_program_map(hb_stream_t* stream)
1734 {
1735     bitbuf_t bb;
1736         set_buf(&bb, stream->pmt_info.tablebuf, stream->pmt_info.tablepos, 0);
1737
1738     get_bits(&bb, 8);  // table_id
1739     get_bits(&bb, 4);
1740     unsigned int section_length = get_bits(&bb, 12);
1741     stream->pmt_info.section_length = section_length;
1742
1743     unsigned int program_number = get_bits(&bb, 16);
1744     stream->pmt_info.program_number = program_number;
1745     get_bits(&bb, 2);
1746     get_bits(&bb, 5);  // version_number
1747     get_bits(&bb, 1);
1748     get_bits(&bb, 8);  // section_number
1749     get_bits(&bb, 8);  // last_section_number
1750     get_bits(&bb, 3);
1751     unsigned int PCR_PID = get_bits(&bb, 13);
1752     stream->pmt_info.PCR_PID = PCR_PID;
1753     get_bits(&bb, 4);
1754     unsigned int program_info_length = get_bits(&bb, 12);
1755     stream->pmt_info.program_info_length = program_info_length;
1756
1757         int i=0;
1758         unsigned char *descriptor_buf = (unsigned char *) malloc(program_info_length);
1759         for (i = 0; i < program_info_length; i++)
1760         {
1761           descriptor_buf[i] = get_bits(&bb, 8);
1762         }
1763
1764         int cur_pos =  9 /* data after the section length field*/ + program_info_length;
1765         int done_reading_stream_types = 0;
1766         while (!done_reading_stream_types)
1767     {
1768         unsigned char stream_type = get_bits(&bb, 8);
1769         get_bits(&bb, 3);
1770         unsigned int elementary_PID = get_bits(&bb, 13);
1771         get_bits(&bb, 4);
1772         unsigned int ES_info_length = get_bits(&bb, 12);
1773
1774         int i=0;
1775         unsigned char *ES_info_buf = (unsigned char *) malloc(ES_info_length);
1776         for (i=0; i < ES_info_length; i++)
1777         {
1778             ES_info_buf[i] = get_bits(&bb, 8);
1779         }
1780
1781
1782         if ( index_of_pid( elementary_PID, stream ) < 0 )
1783         {
1784             // don't have this pid yet
1785             if (stream->ts_number_video_pids == 0 && 
1786                 st2codec[stream_type].kind == V )
1787             {
1788                 stream->ts_video_pids[0] = elementary_PID;
1789                 stream->ts_stream_type[0] = stream_type;
1790                 stream->ts_number_video_pids = 1;
1791             }
1792             else
1793             {
1794                 // Defined audio stream types are 0x81 for AC-3/A52 audio 
1795                 // and 0x03 for mpeg audio. But content producers seem to 
1796                 // use other values (0x04 and 0x06 have both been observed) 
1797                 // so at this point we say everything that isn't a video 
1798                 // pid is audio then at the end of hb_stream_title_scan 
1799                 // we'll figure out which are really audio by looking at 
1800                 // the PES headers.
1801                 i = stream->ts_number_audio_pids;
1802                 if (i < kMaxNumberAudioPIDS)
1803                 {
1804                     stream->ts_audio_pids[i] = elementary_PID;
1805                     stream->ts_stream_type[1 + i] = stream_type;
1806                     if (ES_info_length > 0)
1807                     {
1808                         decode_element_descriptors(stream, i, ES_info_buf,
1809                                                 ES_info_length);
1810                     }
1811                     ++stream->ts_number_audio_pids;
1812                 }
1813             }
1814         }
1815
1816         cur_pos += 5 /* stream header */ + ES_info_length;
1817
1818         free(ES_info_buf);
1819
1820         if (cur_pos >= section_length - 4 /* stop before the CRC */)
1821             done_reading_stream_types = 1;
1822     }
1823
1824         free(descriptor_buf);
1825         return 1;
1826 }
1827
1828 static int build_program_map(const uint8_t *buf, hb_stream_t *stream)
1829 {
1830     // Get adaption header info
1831     int adapt_len = 0;
1832     int adaption = (buf[3] & 0x30) >> 4;
1833     if (adaption == 0)
1834             return 0;
1835     else if (adaption == 0x2)
1836             adapt_len = 184;
1837     else if (adaption == 0x3)
1838             adapt_len = buf[4] + 1;
1839     if (adapt_len > 184)
1840             return 0;
1841
1842     // Get payload start indicator
1843     int start;
1844     start = (buf[1] & 0x40) != 0;
1845
1846     // Get pointer length - only valid in packets with a start flag
1847     int pointer_len = 0;
1848
1849         if (start)
1850         {
1851                 pointer_len = buf[4 + adapt_len] + 1;
1852                 stream->pmt_info.tablepos = 0;
1853         }
1854         // Get Continuity Counter
1855         int continuity_counter = buf[3] & 0x0f;
1856         if (!start && (stream->pmt_info.current_continuity_counter + 1 != continuity_counter))
1857         {
1858                 hb_log("build_program_map - Continuity Counter %d out of sequence - expected %d", continuity_counter, stream->pmt_info.current_continuity_counter+1);
1859                 return 0;
1860         }
1861         stream->pmt_info.current_continuity_counter = continuity_counter;
1862         stream->pmt_info.reading |= start;
1863
1864     // Add the payload for this packet to the current buffer
1865         int amount_to_copy = 184 - adapt_len - pointer_len;
1866     if (stream->pmt_info.reading && (amount_to_copy > 0))
1867     {
1868                         stream->pmt_info.tablebuf = realloc(stream->pmt_info.tablebuf, stream->pmt_info.tablepos + amount_to_copy);
1869
1870             memcpy(stream->pmt_info.tablebuf + stream->pmt_info.tablepos, buf + 4 + adapt_len + pointer_len, amount_to_copy);
1871             stream->pmt_info.tablepos += amount_to_copy;
1872     }
1873     if (stream->pmt_info.tablepos > 3)
1874     {
1875         // We have enough to check the section length
1876         int length;
1877         length = ((stream->pmt_info.tablebuf[1] << 8) + 
1878                   stream->pmt_info.tablebuf[2]) & 0xFFF;
1879         if (stream->pmt_info.tablepos > length + 1)
1880         {
1881             // We just finished a bunch of packets - parse the program map details
1882             int decode_ok = 0;
1883             if (stream->pmt_info.tablebuf[0] == 0x02)
1884                 decode_ok = decode_program_map(stream);
1885             free(stream->pmt_info.tablebuf);
1886             stream->pmt_info.tablebuf = NULL;
1887             stream->pmt_info.tablepos = 0;
1888             stream->pmt_info.reading = 0;
1889             if (decode_ok)
1890                 return decode_ok;
1891         }
1892
1893     }
1894
1895     return 0;
1896 }
1897
1898 static int decode_PAT(const uint8_t *buf, hb_stream_t *stream)
1899 {
1900     unsigned char tablebuf[1024];
1901     unsigned int tablepos = 0;
1902
1903     int reading = 0;
1904
1905
1906     // Get adaption header info
1907     int adapt_len = 0;
1908     int adaption = (buf[3] & 0x30) >> 4;
1909     if (adaption == 0)
1910             return 0;
1911     else if (adaption == 0x2)
1912             adapt_len = 184;
1913     else if (adaption == 0x3)
1914             adapt_len = buf[4] + 1;
1915     if (adapt_len > 184)
1916             return 0;
1917
1918     // Get pointer length
1919     int pointer_len = buf[4 + adapt_len] + 1;
1920
1921     // Get payload start indicator
1922     int start;
1923     start = (buf[1] & 0x40) != 0;
1924
1925     if (start)
1926             reading = 1;
1927
1928     // Add the payload for this packet to the current buffer
1929     if (reading && (184 - adapt_len) > 0)
1930     {
1931             if (tablepos + 184 - adapt_len - pointer_len > 1024)
1932             {
1933                     hb_log("decode_PAT - Bad program section length (> 1024)");
1934                     return 0;
1935             }
1936             memcpy(tablebuf + tablepos, buf + 4 + adapt_len + pointer_len, 184 - adapt_len - pointer_len);
1937             tablepos += 184 - adapt_len - pointer_len;
1938     }
1939
1940     if (start && reading)
1941     {
1942             memcpy(tablebuf + tablepos, buf + 4 + adapt_len + 1, pointer_len - 1);
1943
1944
1945             unsigned int pos = 0;
1946             //while (pos < tablepos)
1947             {
1948                     bitbuf_t bb;
1949                     set_buf(&bb, tablebuf + pos, tablepos - pos, 0);
1950
1951                     unsigned char section_id    = get_bits(&bb, 8);
1952                     get_bits(&bb, 4);
1953                     unsigned int section_len    = get_bits(&bb, 12);
1954                     get_bits(&bb, 16); // transport_id
1955                     get_bits(&bb, 2);
1956                     get_bits(&bb, 5);  // version_num
1957                     get_bits(&bb, 1);  // current_next
1958                     get_bits(&bb, 8);  // section_num
1959                     get_bits(&bb, 8);  // last_section
1960
1961                     switch (section_id)
1962                     {
1963                       case 0x00:
1964                         {
1965                           // Program Association Section
1966                           section_len -= 5;    // Already read transport stream ID, version num, section num, and last section num
1967                           section_len -= 4;   // Ignore the CRC
1968                           int curr_pos = 0;
1969                                                   stream->ts_number_pat_entries = 0;
1970                           while ((curr_pos < section_len) && (stream->ts_number_pat_entries < kMaxNumberPMTStreams))
1971                           {
1972                             unsigned int pkt_program_num = get_bits(&bb, 16);
1973                                                         stream->pat_info[stream->ts_number_pat_entries].program_number = pkt_program_num;
1974
1975                             get_bits(&bb, 3);  // Reserved
1976                             if (pkt_program_num == 0)
1977                             {
1978                               get_bits(&bb, 13); // pkt_network_id
1979                             }
1980                             else
1981                             {
1982                               unsigned int pkt_program_map_PID = get_bits(&bb, 13);
1983                                 stream->pat_info[stream->ts_number_pat_entries].program_map_PID = pkt_program_map_PID;
1984                             }
1985                             curr_pos += 4;
1986                                                         stream->ts_number_pat_entries++;
1987                           }
1988                         }
1989                         break;
1990                       case 0xC7:
1991                             {
1992                                     break;
1993                             }
1994                       case 0xC8:
1995                             {
1996                                     break;
1997                             }
1998                     }
1999
2000                     pos += 3 + section_len;
2001             }
2002
2003             tablepos = 0;
2004     }
2005     return 1;
2006 }
2007
2008 static void hb_ts_stream_find_pids(hb_stream_t *stream)
2009 {
2010     // To be different from every other broadcaster in the world, New Zealand TV
2011     // changes PMTs (and thus video & audio PIDs) when 'programs' change. Since
2012     // we may have the tail of the previous program at the beginning of this
2013     // file, take our PMT from the middle of the file.
2014     fseeko(stream->file_handle, 0, SEEK_END);
2015     uint64_t fsize = ftello(stream->file_handle);
2016     fseeko(stream->file_handle, fsize >> 1, SEEK_SET);
2017     align_to_next_packet(stream);
2018
2019         // Read the Transport Stream Packets (188 bytes each) looking at first for PID 0 (the PAT PID), then decode that
2020         // to find the program map PID and then decode that to get the list of audio and video PIDs
2021
2022         for (;;)
2023         {
2024         const uint8_t *buf = next_packet( stream );
2025
2026         if ( buf == NULL )
2027         {
2028                         hb_log("hb_ts_stream_find_pids - end of file");
2029                         break;
2030                 }
2031
2032                 // Get pid
2033                 int pid = (((buf[1] & 0x1F) << 8) | buf[2]) & 0x1FFF;
2034
2035         if ((pid == 0x0000) && (stream->ts_number_pat_entries == 0))
2036                 {
2037                   decode_PAT(buf, stream);
2038                   continue;
2039                 }
2040
2041                 int pat_index = 0;
2042                 for (pat_index = 0; pat_index < stream->ts_number_pat_entries; pat_index++)
2043                 {
2044                         // There are some streams where the PAT table has multiple entries as if their are
2045                         // multiple programs in the same transport stream, and yet there's actually only one
2046                         // program really in the stream. This seems to be true for transport streams that
2047                         // originate in the HDHomeRun but have been output by EyeTV's export utility. What I think
2048                         // is happening is that the HDHomeRun is sending the entire transport stream as broadcast,
2049                         // but the EyeTV is only recording a single (selected) program number and not rewriting the
2050                         // PAT info on export to match what's actually on the stream.
2051                         // Until we have a way of handling multiple programs per transport stream elegantly we'll match
2052                         // on the first pat entry for which we find a matching program map PID.  The ideal solution would
2053                         // be to build a title choice popup from the PAT program number details and then select from
2054                         // their - but right now the API's not capable of that.
2055             if (stream->pat_info[pat_index].program_number != 0 &&
2056                 pid == stream->pat_info[pat_index].program_map_PID)
2057                         {
2058                           if (build_program_map(buf, stream) > 0)
2059                                 break;
2060                         }
2061                 }
2062                 // Keep going  until we have a complete set of PIDs
2063                 if (stream->ts_number_video_pids > 0)
2064                   break;
2065         }
2066
2067         hb_log("hb_ts_stream_find_pids - found the following PIDS");
2068         hb_log("    Video PIDS : ");
2069     int i;
2070         for (i=0; i < stream->ts_number_video_pids; i++)
2071         {
2072         hb_log( "      0x%x type %s (0x%x)", 
2073                 stream->ts_video_pids[i],
2074                 stream_type_name(stream->ts_stream_type[i]),
2075                 stream->ts_stream_type[i]);
2076         }
2077         hb_log("    Audio PIDS : ");
2078         for (i = 0; i < stream->ts_number_audio_pids; i++)
2079         {
2080         hb_log( "      0x%x type %s (0x%x)", 
2081                 stream->ts_audio_pids[i],
2082                 stream_type_name(stream->ts_stream_type[i+1]),
2083                 stream->ts_stream_type[i+1] );
2084         }
2085  }
2086
2087
2088 static void fwrite64( hb_stream_t *stream, void *buf, int len )
2089 {
2090     if ( len > 0 )
2091     {
2092         int pos = stream->fwrite_buf->size;
2093         if ( pos + len > stream->fwrite_buf->alloc )
2094         {
2095             int size = MAX(stream->fwrite_buf->alloc * 2, pos + len);
2096             hb_buffer_realloc(stream->fwrite_buf, size);
2097         }
2098         memcpy( &(stream->fwrite_buf->data[pos]), buf, len );
2099         stream->fwrite_buf->size += len;
2100     }
2101 }
2102
2103 // convert a PES PTS or DTS to an int64
2104 static int64_t pes_timestamp( const uint8_t *pes )
2105 {
2106     int64_t ts = ( (uint64_t)(pes[0] & 0xe ) << 29 );
2107     ts |= ( pes[1] << 22 ) | ( ( pes[2] >> 1 ) << 15 ) |
2108           ( pes[3] << 7 ) | ( pes[4] >> 1 );
2109     return ts;
2110 }
2111
2112 static void generate_output_data(hb_stream_t *stream, int curstream)
2113 {
2114     hb_buffer_t *buf = stream->fwrite_buf;
2115     uint8_t *tdat = stream->ts_buf[curstream]->data;
2116
2117     buf->id = curstream;
2118
2119     // check if this packet was referenced to an older pcr and if that
2120     // pcr was significantly different than the one we're using now.
2121     // (the reason for the uint cast on the pcr difference is that the
2122     // difference is significant if it advanced by more than 200ms or if
2123     // it went backwards by any amount. The negative numbers look like huge
2124     // unsigned ints so the cast allows both conditions to be checked at once.
2125     int bufpcr = stream->ts_buf[curstream]->cur;
2126     int curpcr = stream->ts_pcr_out;
2127     if ( bufpcr && bufpcr < curpcr &&
2128          (uint64_t)(stream->ts_pcrhist[curpcr & 3] - stream->ts_pcrhist[bufpcr & 3]) > 200*90LL )
2129     {
2130         // we've sent up a new pcr but have a packet referenced to an
2131         // old pcr and the difference was enough to trigger a discontinuity
2132         // correction. smash the timestamps or we'll mess up the correction.
2133         buf->start = -1;
2134         buf->renderOffset = -1;
2135     }
2136     else
2137     {
2138         if ( stream->ts_pcr_out != stream->ts_pcr_in )
2139         {
2140             // we have a new pcr
2141             stream->ts_pcr_out = stream->ts_pcr_in;
2142             buf->stop = stream->ts_pcr;
2143             stream->ts_pcrhist[stream->ts_pcr_out & 3] = stream->ts_pcr;
2144         }
2145         else
2146         {
2147             buf->stop = -1;
2148         }
2149
2150         // put the PTS & possible DTS into 'start' & 'renderOffset' then strip
2151         // off the PES header.
2152         if ( tdat[7] & 0xc0 )
2153         {
2154             buf->start = pes_timestamp( tdat + 9 );
2155             buf->renderOffset = ( tdat[7] & 0x40 )? pes_timestamp( tdat + 14 ) :
2156                                                     buf->start;
2157         }
2158         else
2159         {
2160             buf->start = -1;
2161             buf->renderOffset = -1;
2162         }
2163     }
2164     int hlen = tdat[8] + 9;
2165
2166     fwrite64( stream,  tdat + hlen, stream->ts_pos[curstream] - hlen );
2167
2168     stream->ts_pos[curstream] = 0;
2169     stream->ts_buf[curstream]->size = 0;
2170 }
2171
2172 static void hb_ts_stream_append_pkt(hb_stream_t *stream, int idx, const uint8_t *buf, int len)
2173 {
2174     if (stream->ts_pos[idx] + len > stream->ts_buf[idx]->alloc)
2175     {
2176         int size;
2177
2178         size = MAX(stream->ts_buf[idx]->alloc * 2, stream->ts_pos[idx] + len);
2179         hb_buffer_realloc(stream->ts_buf[idx], size);
2180     }
2181     memcpy(stream->ts_buf[idx]->data + stream->ts_pos[idx], buf, len);
2182     stream->ts_pos[idx] += len;
2183     stream->ts_buf[idx]->size += len;
2184 }
2185
2186 /***********************************************************************
2187  * hb_ts_stream_decode
2188  ***********************************************************************
2189  *
2190  **********************************************************************/
2191 static int hb_ts_stream_decode( hb_stream_t *stream, hb_buffer_t *obuf )
2192 {
2193     /*
2194      * stash the output buffer pointer in our stream so we don't have to
2195      * pass it & its original value to everything we call.
2196      */
2197     obuf->size = 0;
2198     stream->fwrite_buf = obuf;
2199
2200         // spin until we get a packet of data from some stream or hit eof
2201         while ( 1 )
2202         {
2203         int curstream;
2204
2205         const uint8_t *buf = next_packet(stream);
2206         if ( buf == NULL )
2207         {
2208             // end of file - we didn't finish filling our ps write buffer
2209             // so just discard the remainder (the partial buffer is useless)
2210             hb_log("hb_ts_stream_decode - eof");
2211             return 0;
2212                 }
2213
2214         /* This next section validates the packet */
2215
2216                 // Get pid and use it to find stream state.
2217                 int pid = ((buf[1] & 0x1F) << 8) | buf[2];
2218         if ( ( curstream = index_of_pid( pid, stream ) ) < 0 )
2219             continue;
2220
2221                 // Get error
2222                 int errorbit = (buf[1] & 0x80) != 0;
2223                 if (errorbit)
2224                 {
2225                         ts_err( stream, curstream,  "packet error bit set");
2226                         continue;
2227                 }
2228
2229                 // Get adaption header info
2230                 int adaption = (buf[3] & 0x30) >> 4;
2231                 int adapt_len = 0;
2232                 if (adaption == 0)
2233                 {
2234                         ts_err( stream, curstream,  "adaptation code 0");
2235                         continue;
2236                 }
2237                 else if (adaption == 0x2)
2238                         adapt_len = 184;
2239                 else if (adaption == 0x3)
2240                 {
2241                         adapt_len = buf[4] + 1;
2242                         if (adapt_len > 184)
2243                         {
2244                                 ts_err( stream, curstream,  "invalid adapt len %d", adapt_len);
2245                 continue;
2246                         }
2247                 }
2248
2249         if ( adapt_len > 0 )
2250         {
2251             if ( buf[5] & 0x40 )
2252             {
2253                 // found a random access point
2254             }
2255             // if there's an adaptation header & PCR_flag is set
2256             // get the PCR (Program Clock Reference)
2257             if ( adapt_len > 7 && ( buf[5] & 0x10 ) != 0 )
2258             {
2259                 stream->ts_pcr = ( (uint64_t)buf[6] << (33 - 8) ) |
2260                                  ( (uint64_t)buf[7] << (33 - 16) ) |
2261                                  ( (uint64_t)buf[8] << (33 - 24) ) |
2262                                  ( (uint64_t)buf[9] << (33 - 32) ) |
2263                                  ( buf[10] >> 7 );
2264                 ++stream->ts_pcr_in;
2265                 stream->ts_found_pcr = 1;
2266             }
2267         }
2268
2269         // If we don't have a PCR yet but the stream has PCRs just loop
2270         // so we don't process anything until we have a clock reference.
2271         // Unfortunately the HD Home Run appears to null out the PCR so if
2272         // we didn't detect a PCR during scan keep going and we'll use
2273         // the video stream DTS for the PCR.
2274
2275         if ( !stream->ts_found_pcr && ( stream->ts_flags & TS_HAS_PCR ) )
2276         {
2277             continue;
2278         }
2279
2280                 // Get continuity
2281         // Continuity only increments for adaption values of 0x3 or 0x01
2282         // and is not checked for start packets.
2283
2284                 int start = (buf[1] & 0x40) != 0;
2285
2286         if ( (adaption & 0x01) != 0 )
2287                 {
2288             int continuity = (buf[3] & 0xF);
2289             if ( continuity == stream->ts_streamcont[curstream] )
2290             {
2291                 // Spliced transport streams can have duplicate 
2292                 // continuity counts at the splice boundary.
2293                 // Test to see if the packet is really a duplicate
2294                 // by comparing packet summaries to see if they
2295                 // match.
2296                 uint8_t summary[8];
2297
2298                 summary[0] = adaption;
2299                 summary[1] = adapt_len;
2300                 if (adapt_len + 4 + 6 + 9 <= 188)
2301                 {
2302                     memcpy(&summary[2], buf+4+adapt_len+9, 6);
2303                 }
2304                 else
2305                 {
2306                     memset(&summary[2], 0, 6);
2307                 }
2308                 if ( memcmp( summary, stream->ts_pkt_summary[curstream], 8 ) == 0 )
2309                 {
2310                     // we got a duplicate packet (usually used to introduce
2311                     // a PCR when one is needed). The only thing that can
2312                     // change in the dup is the PCR which we grabbed above
2313                     // so ignore the rest.
2314                     continue;
2315                 }
2316             }
2317             if ( !start && (stream->ts_streamcont[curstream] != -1) &&
2318                  !stream->ts_skipbad[curstream] &&
2319                  (continuity != ( (stream->ts_streamcont[curstream] + 1) & 0xf ) ) )
2320                         {
2321                                 ts_err( stream, curstream,  "continuity error: got %d expected %d",
2322                         (int)continuity,
2323                         (stream->ts_streamcont[curstream] + 1) & 0xf );
2324                 stream->ts_streamcont[curstream] = continuity;
2325                 continue;
2326             }
2327             stream->ts_streamcont[curstream] = continuity;
2328
2329             // Save a summary of this packet for later duplicate
2330             // testing.  The summary includes some header information
2331             // and payload bytes.  Should be enough to detect 
2332             // non-duplicates.
2333             stream->ts_pkt_summary[curstream][0] = adaption;
2334             stream->ts_pkt_summary[curstream][1] = adapt_len;
2335             if (adapt_len + 4 + 6 + 9 <= 188)
2336             {
2337                 memcpy(&stream->ts_pkt_summary[curstream][2], 
2338                         buf+4+adapt_len+9, 6);
2339             }
2340             else
2341             {
2342                 memset(&stream->ts_pkt_summary[curstream][2], 0, 6);
2343             }
2344         }
2345
2346         /* If we get here the packet is valid - process its data */
2347
2348         if ( start )
2349         {
2350             // Found a random access point (now we can start a frame/audio packet..)
2351
2352             if ( stream->need_keyframe )
2353             {
2354                 // we're looking for the first video frame because we're
2355                 // doing random access during 'scan'
2356                 if ( curstream != 0 || !isIframe( stream, buf, adapt_len ) )
2357                 {
2358                     // not the video stream or didn't find an I frame
2359                     // but we'll only wait 255 video frames for an I frame.
2360                     if ( curstream != 0 || ++stream->need_keyframe )
2361                     {
2362                         continue;
2363                     }
2364                 }
2365                 stream->need_keyframe = 0;
2366             }
2367
2368                         // If we were skipping a bad packet, start fresh on this new PES packet..
2369                         if (stream->ts_skipbad[curstream] == 1)
2370                         {
2371                                 stream->ts_skipbad[curstream] = 0;
2372                         }
2373
2374                         if ( curstream == 0 )
2375             {
2376                 ++stream->frames;
2377
2378                 // if we don't have a pcr yet use the dts from this frame
2379                 if ( !stream->ts_found_pcr )
2380                 {
2381                     // PES must begin with an mpeg start code & contain
2382                     // a DTS or PTS.
2383                     const uint8_t *pes = buf + adapt_len + 4;
2384                     if ( pes[0] != 0x00 || pes[1] != 0x00 || pes[2] != 0x01 ||
2385                          ( pes[7] >> 6 ) == 0 )
2386                     {
2387                         continue;
2388                     }
2389                     // if we have a dts use it otherwise use the pts
2390                     stream->ts_pcr = pes_timestamp( pes + ( pes[7] & 0x40? 14 : 9 ) );
2391                     ++stream->ts_pcr_in;
2392                 }
2393             }
2394
2395             // if this is a multiplexed stream make sure this is the
2396             // substream we want.
2397             if ( stream->ts_multiplexed[curstream] )
2398             {
2399                 // PES must begin with an mpeg start code & contain
2400                 // a DTS or PTS.
2401                 const uint8_t *pes = buf + adapt_len + 4;
2402                 if ( pes[0] != 0x00 || pes[1] != 0x00 || pes[2] != 0x01 ||
2403                      pes[3] != 0xfd )
2404                 {
2405                     stream->ts_skipbad[curstream] = 1;
2406                     continue;
2407                 }
2408                 // the last byte of the header is the extension id. see if
2409                 // it's the one we want.
2410                 if ( pes[pes[8]+8] != stream->ts_multiplexed[curstream] )
2411                 {
2412                     stream->ts_skipbad[curstream] = 1;
2413                     continue;
2414                 }
2415             }
2416
2417             // If we have some data already on this stream, turn it into
2418             // a program stream packet. Then add the payload for this
2419             // packet to the current pid's buffer.
2420             if ( stream->ts_pos[curstream] )
2421             {
2422                 // we have to ship the old packet before updating the pcr
2423                 // since the packet we've been accumulating is referenced
2424                 // to the old pcr.
2425                 generate_output_data(stream, curstream);
2426
2427                 // remember the pcr that was in effect when we started
2428                 // this packet.
2429                 stream->ts_buf[curstream]->cur = stream->ts_pcr_in;
2430                 hb_ts_stream_append_pkt(stream, curstream, buf + 4 + adapt_len,
2431                                         184 - adapt_len);
2432                 return 1;
2433             }
2434             // remember the pcr that was in effect when we started this packet.
2435             stream->ts_buf[curstream]->cur = stream->ts_pcr_in;
2436         }
2437
2438                 // Add the payload for this packet to the current buffer
2439                 if (!stream->ts_skipbad[curstream] && (184 - adapt_len) > 0)
2440                 {
2441             hb_ts_stream_append_pkt(stream, curstream, buf + 4 + adapt_len,
2442                                     184 - adapt_len);
2443             // see if we've hit the end of this PES packet
2444             const uint8_t *pes = stream->ts_buf[curstream]->data;
2445             int len = ( pes[4] << 8 ) + pes[5] + 6;
2446             if ( len > 6 && stream->ts_pos[curstream] == len &&
2447                  pes[0] == 0x00 && pes[1] == 0x00 && pes[2] == 0x01 )
2448             {
2449                 generate_output_data(stream, curstream);
2450                 return 1;
2451             }
2452                 }
2453         }
2454 }
2455
2456 static void hb_ts_stream_reset(hb_stream_t *stream)
2457 {
2458         int i;
2459
2460         for (i=0; i < kMaxNumberDecodeStreams; i++)
2461         {
2462                 stream->ts_pos[i] = 0;
2463                 stream->ts_skipbad[i] = 1;
2464                 stream->ts_streamcont[i] = -1;
2465         }
2466
2467     stream->need_keyframe = 0;
2468
2469     stream->ts_found_pcr = 0;
2470     stream->ts_pcr_out = 0;
2471     stream->ts_pcr_in = 0;
2472     stream->ts_pcr = 0;
2473
2474     stream->frames = 0;
2475     stream->errors = 0;
2476     stream->last_error_frame = -10000;
2477     stream->last_error_count = 0;
2478
2479     align_to_next_packet(stream);
2480 }
2481
2482 // ------------------------------------------------------------------
2483 // Support for reading media files via the ffmpeg libraries.
2484
2485 static void ffmpeg_add_codec( hb_stream_t *stream, int stream_index )
2486 {
2487     // add a codec to the context here so it will be there when we
2488     // read the first packet.
2489     AVCodecContext *context = stream->ffmpeg_ic->streams[stream_index]->codec;
2490     context->workaround_bugs = FF_BUG_AUTODETECT;
2491     context->error_recognition = 1;
2492     context->error_concealment = FF_EC_GUESS_MVS|FF_EC_DEBLOCK;
2493     AVCodec *codec = avcodec_find_decoder( context->codec_id );
2494     hb_avcodec_open( context, codec );
2495 }
2496
2497 // The ffmpeg stream reader / parser shares a lot of state with the 
2498 // decoder via a codec context kept in the AVStream of the reader's
2499 // AVFormatContext. Since decoding is done in a different thread we
2500 // have to somehow pass this codec context to the decoder and we have
2501 // to do it before the first packet is read (so we can't put the info
2502 // in the buf we'll send downstream). Decoders don't have any way to
2503 // get to the stream directly (they're not passed the title or job
2504 // pointers during a scan) so this is a back door for the decoder to
2505 // get the codec context. We just stick the stream pointer in the next
2506 // slot an array of pointers maintained as a circular list then return
2507 // the index into the list combined with the ffmpeg stream index as the
2508 // codec_param that will be passed to the decoder init routine. We make
2509 // the list 'big' (enough for 1024 simultaneously open ffmpeg streams)
2510 // so that we don't have to do a complicated allocator or worry about
2511 // deleting entries on close. 
2512 //
2513 // Entries can only be added to this list during a scan and are never
2514 // deleted so the list access doesn't require locking.
2515 static hb_stream_t **ffmpeg_streams;    // circular list of stream pointers
2516 static int ffmpeg_stream_cur;           // where we put the last stream pointer
2517 #define ffmpeg_sl_bits (10)             // log2 stream list size (in entries)
2518 #define ffmpeg_sl_size (1 << ffmpeg_sl_bits)
2519
2520 // add a stream to the list & return the appropriate codec_param to access it
2521 static int ffmpeg_codec_param( hb_stream_t *stream, int stream_index )
2522 {
2523     if ( !ffmpeg_streams )
2524     {
2525         ffmpeg_streams = calloc( ffmpeg_sl_size, sizeof(stream) );
2526     }
2527
2528     // the title scan adds all the ffmpeg media streams at once so we
2529     // only add a new entry to our stream list if the stream is different
2530     // than last time.
2531     int slot = ffmpeg_stream_cur;
2532     if ( ffmpeg_streams[slot] != stream )
2533     {
2534         // new stream - put it in the next slot of the stream list
2535         slot = ++ffmpeg_stream_cur & (ffmpeg_sl_size - 1);
2536         ffmpeg_streams[slot] = stream;
2537     }
2538
2539     ffmpeg_add_codec( stream, stream_index );
2540
2541     return ( stream_index << ffmpeg_sl_bits ) | slot;
2542 }
2543
2544 // we're about to open 'title' to convert it - remap the stream associated
2545 // with the video & audio codec params of the title to refer to 'stream'
2546 // (the original scan stream was closed and no longer exists).
2547 static void ffmpeg_remap_stream( hb_stream_t *stream, hb_title_t *title )
2548 {
2549     // all the video & audio came from the same stream so remapping
2550     // the video's stream slot takes care of everything.
2551     int slot = title->video_codec_param & (ffmpeg_sl_size - 1);
2552     ffmpeg_streams[slot] = stream;
2553
2554     // add codecs for all the streams used by the title
2555     ffmpeg_add_codec( stream, title->video_codec_param >> ffmpeg_sl_bits );
2556
2557     int i;
2558     hb_audio_t *audio;
2559     for ( i = 0; ( audio = hb_list_item( title->list_audio, i ) ); ++i )
2560     {
2561         if ( audio->config.in.codec == HB_ACODEC_FFMPEG )
2562         {
2563             ffmpeg_add_codec( stream,
2564                               audio->config.in.codec_param >> ffmpeg_sl_bits );
2565         }
2566     }
2567 }
2568
2569 void *hb_ffmpeg_context( int codec_param )
2570 {
2571     int slot = codec_param & (ffmpeg_sl_size - 1);
2572     int stream_index = codec_param >> ffmpeg_sl_bits;
2573     return ffmpeg_streams[slot]->ffmpeg_ic->streams[stream_index]->codec;
2574 }
2575
2576 void *hb_ffmpeg_avstream( int codec_param )
2577 {
2578     int slot = codec_param & (ffmpeg_sl_size - 1);
2579     int stream_index = codec_param >> ffmpeg_sl_bits;
2580     return ffmpeg_streams[slot]->ffmpeg_ic->streams[stream_index];
2581 }
2582
2583 static AVFormatContext *ffmpeg_deferred_close;
2584
2585 static int ffmpeg_open( hb_stream_t *stream, hb_title_t *title )
2586 {
2587     if ( ffmpeg_deferred_close )
2588     {
2589         av_close_input_file( ffmpeg_deferred_close );
2590         ffmpeg_deferred_close = NULL;
2591     }
2592     AVFormatContext *ic;
2593
2594     av_log_set_level( AV_LOG_ERROR );
2595     if ( av_open_input_file( &ic, stream->path, NULL, 0, NULL ) < 0 )
2596     {
2597         return 0;
2598     }
2599     if ( av_find_stream_info( ic ) < 0 )
2600         goto fail;
2601
2602     stream->ffmpeg_ic = ic;
2603     stream->hb_stream_type = ffmpeg;
2604     stream->ffmpeg_pkt = malloc(sizeof(*stream->ffmpeg_pkt));
2605     av_init_packet( stream->ffmpeg_pkt );
2606     stream->chapter_end = INT64_MAX;
2607
2608     if ( title )
2609     {
2610         // we're opening for read. scan passed out codec params that
2611         // indexed its stream so we need to remap them so they point
2612         // to this stream.
2613         ffmpeg_remap_stream( stream, title );
2614         av_log_set_level( AV_LOG_ERROR );
2615     }
2616     else
2617     {
2618         // we're opening for scan. let ffmpeg put some info into the
2619         // log about what we've got.
2620         av_log_set_level( AV_LOG_INFO );
2621         dump_format( ic, 0, stream->path, 0 );
2622         av_log_set_level( AV_LOG_ERROR );
2623
2624         // accept this file if it has at least one video stream we can decode
2625         int i;
2626         for (i = 0; i < ic->nb_streams; ++i )
2627         {
2628             if ( ic->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO )
2629             {
2630                 break;
2631             }
2632         }
2633         if ( i >= ic->nb_streams )
2634             goto fail;
2635     }
2636     return 1;
2637
2638   fail:
2639     av_close_input_file( ic );
2640     return 0;
2641 }
2642
2643 static void ffmpeg_close( hb_stream_t *d )
2644 {
2645     // XXX since we're sharing the CodecContext with the downstream
2646     // decoder proc we can't close the stream. We need to reference count
2647     // this so we can close it when both are done with their instance but
2648     // for now just defer the close until the next stream open or close.
2649     if ( ffmpeg_deferred_close )
2650     {
2651         av_close_input_file( ffmpeg_deferred_close );
2652     }
2653     ffmpeg_deferred_close = d->ffmpeg_ic;
2654     if ( d->ffmpeg_pkt != NULL )
2655     {
2656         free( d->ffmpeg_pkt );
2657         d->ffmpeg_pkt = NULL;
2658     }
2659 }
2660
2661 static void add_ffmpeg_audio( hb_title_t *title, hb_stream_t *stream, int id )
2662 {
2663     AVStream *st = stream->ffmpeg_ic->streams[id];
2664     AVCodecContext *codec = st->codec;
2665
2666     // scan will ignore any audio without a bitrate. Since we've already
2667     // typed the audio in order to determine its codec we set up the audio
2668     // paramters here.
2669     if ( codec->bit_rate || codec->sample_rate )
2670     {
2671         static const int chan2layout[] = {
2672             HB_INPUT_CH_LAYOUT_MONO,  // We should allow no audio really.
2673             HB_INPUT_CH_LAYOUT_MONO,   
2674             HB_INPUT_CH_LAYOUT_STEREO,
2675             HB_INPUT_CH_LAYOUT_2F1R,   
2676             HB_INPUT_CH_LAYOUT_2F2R,
2677             HB_INPUT_CH_LAYOUT_3F2R,   
2678             HB_INPUT_CH_LAYOUT_4F2R,
2679             HB_INPUT_CH_LAYOUT_STEREO, 
2680             HB_INPUT_CH_LAYOUT_STEREO,
2681         };
2682
2683         hb_audio_t *audio = calloc( 1, sizeof(*audio) );;
2684
2685         audio->id = id;
2686         if ( codec->codec_id == CODEC_ID_AC3 )
2687         {
2688             audio->config.in.codec = HB_ACODEC_AC3;
2689         }
2690         else if ( codec->codec_id == CODEC_ID_DTS )
2691         {
2692             audio->config.in.codec = HB_ACODEC_DCA;
2693         }
2694         else
2695         {
2696             audio->config.in.codec = HB_ACODEC_FFMPEG;
2697             audio->config.in.codec_param = ffmpeg_codec_param( stream, id );
2698
2699             audio->config.in.bitrate = codec->bit_rate? codec->bit_rate : 1;
2700             audio->config.in.samplerate = codec->sample_rate;
2701             audio->config.in.channel_layout = chan2layout[codec->channels & 7];
2702         }
2703
2704         set_audio_description( audio, lang_for_code2( st->language ) );
2705
2706         hb_list_add( title->list_audio, audio );
2707     }
2708 }
2709
2710 static hb_title_t *ffmpeg_title_scan( hb_stream_t *stream )
2711 {
2712     AVFormatContext *ic = stream->ffmpeg_ic;
2713
2714     // 'Barebones Title'
2715     hb_title_t *title = hb_title_init( stream->path, 0 );
2716     title->type = HB_STREAM_TYPE;
2717     title->index = 1;
2718
2719         // Copy part of the stream path to the title name
2720         char *sep = strrchr(stream->path, '/');
2721         if (sep)
2722                 strcpy(title->name, sep+1);
2723         char *dot_term = strrchr(title->name, '.');
2724         if (dot_term)
2725                 *dot_term = '\0';
2726
2727     uint64_t dur = ic->duration * 90000 / AV_TIME_BASE;
2728     title->duration = dur;
2729     dur /= 90000;
2730     title->hours    = dur / 3600;
2731     title->minutes  = ( dur % 3600 ) / 60;
2732     title->seconds  = dur % 60;
2733
2734     // set the title to decode the first video stream in the file
2735     title->demuxer = HB_NULL_DEMUXER;
2736     title->video_codec = 0;
2737     int i;
2738     for (i = 0; i < ic->nb_streams; ++i )
2739     {
2740         if ( ic->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO &&
2741              avcodec_find_decoder( ic->streams[i]->codec->codec_id ) &&
2742              title->video_codec == 0 )
2743         {
2744             title->video_id = i;
2745             stream->ffmpeg_video_id = i;
2746
2747             // We have to use the 'internal' avcodec decoder because
2748             // it needs to share the codec context from this video
2749             // stream. The parser internal to av_read_frame
2750             // passes a bunch of state info to the decoder via the context.
2751             title->video_codec = WORK_DECAVCODECVI;
2752             title->video_codec_param = ffmpeg_codec_param( stream, i );
2753         }
2754         else if ( ic->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO &&
2755                   avcodec_find_decoder( ic->streams[i]->codec->codec_id ) )
2756         {
2757             add_ffmpeg_audio( title, stream, i );
2758         }
2759     }
2760
2761     title->container_name = strdup( ic->iformat->name );
2762     title->data_rate = ic->bit_rate;
2763
2764     hb_deep_log( 2, "Found ffmpeg %d chapters, container=%s", ic->nb_chapters, ic->iformat->name );
2765
2766     if( ic->nb_chapters != 0 )
2767     {
2768         AVChapter *m;
2769         uint64_t duration_sum = 0;
2770         for( i = 0; i < ic->nb_chapters; i++ )
2771             if( ( m = ic->chapters[i] ) != NULL )
2772             {
2773                 hb_chapter_t * chapter;
2774                 chapter = calloc( sizeof( hb_chapter_t ), 1 );
2775                 chapter->index    = i+1;
2776                 chapter->duration = ( m->end / ( (double) m->time_base.num * m->time_base.den ) ) * 90000  - duration_sum;
2777                 duration_sum     += chapter->duration;
2778                 chapter->hours    = chapter->duration / 90000 / 3600;
2779                 chapter->minutes  = ( ( chapter->duration / 90000 ) % 3600 ) / 60;
2780                 chapter->seconds  = ( chapter->duration / 90000 ) % 60;
2781                 strcpy( chapter->title, m->title );
2782                 hb_deep_log( 2, "Added chapter %i, name='%s', dur=%"PRIu64", (%02i:%02i:%02i)",
2783                             chapter->index, chapter->title,
2784                             chapter->duration, chapter->hours,
2785                             chapter->minutes, chapter->seconds );
2786                 hb_list_add( title->list_chapter, chapter );
2787             }
2788     }
2789
2790     /*
2791      * Fill the metadata.
2792      */
2793     decmetadata( title );
2794
2795     if( hb_list_count( title->list_chapter ) == 0 )
2796     {
2797         // Need at least one chapter
2798         hb_chapter_t * chapter;
2799         chapter = calloc( sizeof( hb_chapter_t ), 1 );
2800         chapter->index = 1;
2801         chapter->duration = title->duration;
2802         chapter->hours = title->hours;
2803         chapter->minutes = title->minutes;
2804         chapter->seconds = title->seconds;
2805         hb_list_add( title->list_chapter, chapter );
2806     }
2807
2808     return title;
2809 }
2810
2811 static int64_t av_to_hb_pts( int64_t pts, double conv_factor )
2812 {
2813     if ( pts == AV_NOPTS_VALUE )
2814         return -1;
2815     return (int64_t)( (double)pts * conv_factor );
2816 }
2817
2818 static int ffmpeg_is_keyframe( hb_stream_t *stream )
2819 {
2820     uint8_t *pkt;
2821
2822     switch ( stream->ffmpeg_ic->streams[stream->ffmpeg_video_id]->codec->codec_id )
2823     {
2824         case CODEC_ID_VC1:
2825             // XXX the VC1 codec doesn't mark key frames so to get previews
2826             // we do it ourselves here. The decoder gets messed up if it
2827             // doesn't get a SEQ header first so we consider that to be a key frame.
2828             pkt = stream->ffmpeg_pkt->data;
2829             if ( !pkt[0] && !pkt[1] && pkt[2] == 1 && pkt[3] == 0x0f )
2830                 return 1;
2831
2832             return 0;
2833
2834         case CODEC_ID_WMV3:
2835             // XXX the ffmpeg WMV3 codec doesn't mark key frames.
2836             // Only M$ could make I-frame detection this complicated: there
2837             // are two to four bits of unused junk ahead of the frame type
2838             // so we have to look at the sequence header to find out how much
2839             // to skip. Then there are three different ways of coding the type
2840             // depending on whether it's main or advanced profile then whether
2841             // there are bframes or not so we have to look at the sequence
2842             // header to get that.
2843             pkt = stream->ffmpeg_pkt->data;
2844             uint8_t *seqhdr = stream->ffmpeg_ic->streams[stream->ffmpeg_video_id]->codec->extradata;
2845             int pshift = 2;
2846             if ( ( seqhdr[3] & 0x02 ) == 0 )
2847                 // no FINTERPFLAG
2848                 ++pshift;
2849             if ( ( seqhdr[3] & 0x80 ) == 0 )
2850                 // no RANGEREDUCTION
2851                 ++pshift;
2852             if ( seqhdr[3] & 0x70 )
2853                 // stream has b-frames
2854                 return ( ( pkt[0] >> pshift ) & 0x3 ) == 0x01;
2855
2856             return ( ( pkt[0] >> pshift ) & 0x2 ) == 0;
2857
2858         default:
2859             break;
2860     }
2861     return ( stream->ffmpeg_pkt->flags & PKT_FLAG_KEY );
2862 }
2863
2864 static int ffmpeg_read( hb_stream_t *stream, hb_buffer_t *buf )
2865 {
2866     int err;
2867   again:
2868     if ( ( err = av_read_frame( stream->ffmpeg_ic, stream->ffmpeg_pkt )) < 0 )
2869     {
2870         // XXX the following conditional is to handle avi files that
2871         // use M$ 'packed b-frames' and occasionally have negative
2872         // sizes for the null frames these require.
2873         if ( err != AVERROR_NOMEM || stream->ffmpeg_pkt->size >= 0 )
2874             // eof
2875             return 0;
2876     }
2877     if ( stream->ffmpeg_pkt->size <= 0 )
2878     {
2879         // M$ "invalid and inefficient" packed b-frames require 'null frames'
2880         // following them to preserve the timing (since the packing puts two
2881         // or more frames in what looks like one avi frame). The contents and
2882         // size of these null frames are ignored by the ff_h263_decode_frame
2883         // as long as they're < 20 bytes. We need a positive size so we use
2884         // one byte if we're given a zero or negative size. We don't know
2885         // if the pkt data points anywhere reasonable so we just stick a
2886         // byte of zero in our outbound buf.
2887         buf->size = 1;
2888         *buf->data = 0;
2889     }
2890     else
2891     {
2892         if ( stream->ffmpeg_pkt->size > buf->alloc )
2893         {
2894             // sometimes we get absurd sizes from ffmpeg
2895             if ( stream->ffmpeg_pkt->size >= (1 << 25) )
2896             {
2897                 hb_log( "ffmpeg_read: pkt too big: %d bytes", stream->ffmpeg_pkt->size );
2898                 av_free_packet( stream->ffmpeg_pkt );
2899                 return ffmpeg_read( stream, buf );
2900             }
2901             // need to expand buffer
2902             hb_buffer_realloc( buf, stream->ffmpeg_pkt->size );
2903         }
2904         memcpy( buf->data, stream->ffmpeg_pkt->data, stream->ffmpeg_pkt->size );
2905         buf->size = stream->ffmpeg_pkt->size;
2906     }
2907     buf->id = stream->ffmpeg_pkt->stream_index;
2908     if ( buf->id == stream->ffmpeg_video_id )
2909     {
2910         if ( stream->need_keyframe )
2911         {
2912             // we've just done a seek (generally for scan or live preview) and
2913             // want to start at a keyframe. Some ffmpeg codecs seek to a key
2914             // frame but most don't. So we spin until we either get a keyframe
2915             // or we've looked through 50 video frames without finding one.
2916             if ( ! ffmpeg_is_keyframe( stream ) && ++stream->need_keyframe < 50 )
2917             {
2918                 av_free_packet( stream->ffmpeg_pkt );
2919                 goto again;
2920             }
2921             stream->need_keyframe = 0;
2922         }
2923         ++stream->frames;
2924     }
2925
2926     // if we haven't done it already, compute a conversion factor to go
2927     // from the ffmpeg timebase for the stream to HB's 90KHz timebase.
2928     double tsconv = stream->ffmpeg_tsconv[stream->ffmpeg_pkt->stream_index];
2929     if ( ! tsconv )
2930     {
2931         AVStream *s = stream->ffmpeg_ic->streams[stream->ffmpeg_pkt->stream_index];
2932         tsconv = 90000. * (double)s->time_base.num / (double)s->time_base.den;
2933         stream->ffmpeg_tsconv[stream->ffmpeg_pkt->stream_index] = tsconv;
2934     }
2935
2936     buf->start = av_to_hb_pts( stream->ffmpeg_pkt->pts, tsconv );
2937     buf->renderOffset = av_to_hb_pts( stream->ffmpeg_pkt->dts, tsconv );
2938     if ( buf->renderOffset >= 0 && buf->start == -1 )
2939     {
2940         buf->start = buf->renderOffset;
2941     }
2942     else if ( buf->renderOffset == -1 && buf->start >= 0 )
2943     {
2944         buf->renderOffset = buf->start;
2945     }
2946
2947     /*
2948      * Check to see whether this video buffer is on a chapter
2949      * boundary, if so mark it as such in the buffer then advance
2950      * chapter_end to the end of the next chapter.
2951      * If there are no chapters, chapter_end is always initialized to INT64_MAX
2952      * (roughly 3 million years at our 90KHz clock rate) so the test
2953      * below handles both the chapters & no chapters case.
2954      */
2955     if ( buf->id == stream->ffmpeg_video_id && buf->start >= stream->chapter_end )
2956     {
2957         hb_chapter_t *chapter = hb_list_item( stream->title->list_chapter,
2958                                               stream->chapter+1 );
2959         if( chapter )
2960         {
2961             stream->chapter++;
2962             stream->chapter_end += chapter->duration;
2963             buf->new_chap = stream->chapter + 1;
2964             hb_deep_log( 2, "ffmpeg_read starting chapter %i at %"PRId64,
2965                          buf->new_chap, buf->start);
2966         } else {
2967             // Must have run out of chapters, stop looking.
2968             stream->chapter_end = INT64_MAX;
2969         }
2970     } else {
2971         buf->new_chap = 0;
2972     }
2973     av_free_packet( stream->ffmpeg_pkt );
2974     return 1;
2975 }
2976
2977 static int ffmpeg_seek( hb_stream_t *stream, float frac )
2978 {
2979     AVFormatContext *ic = stream->ffmpeg_ic;
2980     if ( frac > 0. )
2981     {
2982         int64_t pos = (double)ic->duration * (double)frac;
2983         if ( ic->start_time != AV_NOPTS_VALUE && ic->start_time > 0 )
2984         {
2985             pos += ic->start_time;
2986         }
2987         av_seek_frame( ic, -1, pos, 0 );
2988         stream->need_keyframe = 1;
2989     }
2990     else
2991     {
2992         av_seek_frame( ic, -1, 0LL, AVSEEK_FLAG_BACKWARD );
2993     }
2994     return 1;
2995 }
2996
2997 // Assumes that we are always seeking forward
2998 static int ffmpeg_seek_ts( hb_stream_t *stream, int64_t ts )
2999 {
3000     AVFormatContext *ic = stream->ffmpeg_ic;
3001     int64_t pos;
3002
3003     pos = ts * AV_TIME_BASE / 90000;
3004     stream->need_keyframe = 1;
3005     // Seek to the nearest timestamp before that requested where
3006     // there is an I-frame
3007     return av_seek_frame( ic, -1, pos, AVSEEK_FLAG_BACKWARD );
3008 }