diff options
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index 577ad3032..bc6f5063c 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -119,6 +119,7 @@ void hb_dvd_close( hb_dvd_t ** ); #define HB_CONFIG_MAX_SIZE 8192 union hb_esconfig_u { + struct { uint8_t bytes[HB_CONFIG_MAX_SIZE]; @@ -137,29 +138,20 @@ union hb_esconfig_u { uint8_t bytes[HB_CONFIG_MAX_SIZE]; int length; - /* Total channels actually used for this audio track */ - int channelsused; - int lfechannels; } aac; struct { uint8_t headers[3][HB_CONFIG_MAX_SIZE]; - int channelsused; char *language; } vorbis; struct { - /* indicates the number of normal channels the source audio has */ - int channels; - /* indicates the number of lfe channels the source audio has */ - int lfechannels; - /* ac3flags: stores the flags from the AC3 source, as found in scan.c */ + /* ac3flags stores the flags from the AC3 source, as found in scan.c */ int ac3flags; - /* Total channels actually used for this audio track */ - int channelsused; } a52; + }; enum |