diff options
author | John Stebbins <[email protected]> | 2017-11-27 10:28:56 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2017-11-27 10:28:56 -0800 |
commit | 4df3c6b2a6a75d6e2333b1fb012731e2718d490c (patch) | |
tree | 28a008fe0b5020d0fe66f22cac183ca87def04aa /libhb | |
parent | f0200cb414f57e50361e263ddb78ef2ed8f6cbdc (diff) |
stream: better probing of PS files
The probe did not inspect enough data and did not always detect all
streams.
Thanks to josephpaul0
Fixes https://github.com/HandBrake/HandBrake/issues/1023
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index d4d03ab12..e223482cd 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -107,7 +107,7 @@ typedef enum { ffmpeg } hb_stream_type_t; -#define MAX_PS_PROBE_SIZE (5*1024*1024) +#define MAX_PS_PROBE_SIZE (32*1024*1024) #define kMaxNumberPMTStreams 32 typedef struct |