diff options
author | John Stebbins <[email protected]> | 2018-10-11 11:22:42 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2018-11-06 07:25:35 -0800 |
commit | 6ed616b5a5b5151aac7394bcd049e57e2693978f (patch) | |
tree | 7211474d291934a3926ae24b1a250a2e8cfeb41c /libhb/stream.c | |
parent | 46598fde8cec433cd93798f46045a628734eca13 (diff) |
stream: enable probing for all unrecognized stream types
Fixes https://forum.handbrake.fr/viewtopic.php?f=5&t=38200
Diffstat (limited to 'libhb/stream.c')
-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 df7ddc1b6..543abdb8e 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -34,7 +34,7 @@ * S - Subtitle * P - PCR */ -typedef enum { N, U, A, V, P, S } kind_t; +typedef enum { U, N, A, V, P, S } kind_t; typedef struct { kind_t kind; /* not handled / unknown / audio / video */ int codec; /* HB worker object id of codec */ |