summaryrefslogtreecommitdiffstats
path: root/libhb/internal.h
diff options
context:
space:
mode:
authorawk <[email protected]>2007-07-04 02:14:42 +0000
committerawk <[email protected]>2007-07-04 02:14:42 +0000
commit2e0106d686bb69faa1182dabbceb58969a93956f (patch)
treee00e2090e8a526e8e2baf205cdc4bbcda8825df4 /libhb/internal.h
parent5ceeadd648a9952506bd3e166d9fdba1ae2b4da4 (diff)
Implement transport and program stream support. With these changes it's now possible to open a .ts or .mpg files and transcode to standard Handbrake Output files. This fixes Ticket #21.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@648 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r--libhb/internal.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/libhb/internal.h b/libhb/internal.h
index 34bca3d65..60fb80cc8 100644
--- a/libhb/internal.h
+++ b/libhb/internal.h
@@ -100,7 +100,7 @@ int hb_libmpeg2_decode( hb_libmpeg2_t *,
hb_buffer_t * es_buf,
hb_list_t * raw_list );
void hb_libmpeg2_info( hb_libmpeg2_t * m, int * width,
- int * height, int * rate );
+ int * height, int * rate, int * aspect_ratio );
void hb_libmpeg2_close( hb_libmpeg2_t ** );
/***********************************************************************
@@ -112,6 +112,7 @@ int hb_demux_ps( hb_buffer_t * ps_buf, hb_list_t * es_list );
* dvd.c
**********************************************************************/
typedef struct hb_dvd_s hb_dvd_t;
+typedef struct hb_stream_s hb_stream_t;
hb_dvd_t * hb_dvd_init( char * path );
int hb_dvd_title_count( hb_dvd_t * );
@@ -124,6 +125,15 @@ int hb_dvd_chapter( hb_dvd_t * );
int hb_dvd_is_break( hb_dvd_t * d );
void hb_dvd_close( hb_dvd_t ** );
+int hb_stream_is_stream_type( char * path);
+hb_stream_t * hb_stream_open( char * path );
+void hb_stream_close( hb_stream_t ** );
+hb_title_t * hb_stream_title_scan( hb_stream_t *);
+int hb_stream_read( hb_stream_t *, hb_buffer_t *);
+int hb_stream_seek( hb_stream_t *, float );
+void hb_stream_update_audio( hb_stream_t *, hb_audio_t *);
+void hb_stream_set_selected_audio_pid_index(hb_stream_t *, int);
+
/***********************************************************************
* Work objects
**********************************************************************/