From: John Stebbins Date: Thu, 11 Oct 2018 18:22:42 +0000 (-0700) Subject: stream: enable probing for all unrecognized stream types X-Git-Tag: 1.2.0~88 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ed616b5a5b5151aac7394bcd049e57e2693978f;p=handbrake stream: enable probing for all unrecognized stream types Fixes https://forum.handbrake.fr/viewtopic.php?f=5&t=38200 --- 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 */