diff options
author | Rodeo <[email protected]> | 2014-01-26 16:12:23 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-01-26 16:12:23 +0000 |
commit | 1d7db22df59be148ed995eee7755f21d8f0b9d5b (patch) | |
tree | 32eb0acf048550576259f0798f8da0a7975c5703 /win | |
parent | ee621317fb45852db29b94308b87690827a9a0df (diff) |
libhb: support AV_FRAME_DATA_MATRIXENCODING side data.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6000 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/hb_audio.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/hb_audio.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/hb_audio.cs index 72ed63483..f0627670d 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/hb_audio.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/hb_audio.cs @@ -115,6 +115,9 @@ namespace HandBrake.Interop.HbLib /* Input bitrate (bps) */
public int bitrate;
+ /* Source matrix encoding mode, set by the audio decoder */
+ public int matrix_encoding;
+
/* Source channel layout, set by the audio decoder */
public ulong channel_layout;
|