diff options
author | John Stebbins <[email protected]> | 2017-02-21 10:51:33 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2017-02-21 10:53:57 -0700 |
commit | 04d8859af6f0a4cba77818dda89f5bfb4fc437ca (patch) | |
tree | a69686de843c984a0aebb0f2708e32f004d235f7 /libhb/common.h | |
parent | 587352aac0e27f86f4e9a52df20ad2f4c7782756 (diff) |
decavcodec: drop initial_padding audio samples
These are samples that were not in the original source and were added by
the encoder. To get a faithful reproduction of the source, they must be
dropped.
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 06a22c2a8..4d7c548b3 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -770,6 +770,9 @@ struct hb_audio_config_s PRIVATE int matrix_encoding; /* Source matrix encoding mode, set by the audio decoder */ PRIVATE uint64_t channel_layout; /* Source channel layout, set by the audio decoder */ PRIVATE hb_chan_map_t * channel_map; /* Source channel map, set by the audio decoder */ + PRIVATE int encoder_delay; /* Encoder delay in samples. + * These samples should be dropped + * when decoding */ } in; struct |