diff options
author | awk <[email protected]> | 2007-07-04 02:14:42 +0000 |
---|---|---|
committer | awk <[email protected]> | 2007-07-04 02:14:42 +0000 |
commit | 2e0106d686bb69faa1182dabbceb58969a93956f (patch) | |
tree | e00e2090e8a526e8e2baf205cdc4bbcda8825df4 /libhb/common.h | |
parent | 5ceeadd648a9952506bd3e166d9fdba1ae2b4da4 (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/common.h')
-rw-r--r-- | libhb/common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index a6ea8ac95..123e528c2 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -28,6 +28,8 @@ #define EVEN( a ) ( (a) + ( (a) & 1 ) ) #define MULTIPLE_16( a ) ( 16 * ( ( (a) + 8 ) / 16 ) ) +#define HB_DVD_READ_BUFFER_SIZE 2048 + typedef struct hb_handle_s hb_handle_t; typedef struct hb_list_s hb_list_t; typedef struct hb_rate_s hb_rate_t; @@ -338,6 +340,8 @@ struct hb_audio_s /* amixdown is the mixdown format to be used for this audio track */ int amixdown; + /* Source PID is only valid for MPEG Transport Streams */ + int source_pid; #endif }; |