summaryrefslogtreecommitdiffstats
path: root/demux/stheader.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-05 16:45:41 +0200
committerwm4 <wm4@nowhere>2014-07-05 17:07:14 +0200
commit58880c00eeca254a5391dd61a920081bb16bc2c1 (patch)
tree56f9bb23059b96c0d7e0eaf58b7ae44f36b0af84 /demux/stheader.h
parenta97256c1d58fae714ae94301ab09044081d08c8e (diff)
downloadmpv-58880c00eeca254a5391dd61a920081bb16bc2c1.tar.bz2
mpv-58880c00eeca254a5391dd61a920081bb16bc2c1.tar.xz
demux: make replaygain per-track
It's unlikely that files with multiple audio tracks and with replaygain actually happen, but this change might help avoid minor corner cases with later changes.
Diffstat (limited to 'demux/stheader.h')
-rw-r--r--demux/stheader.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/demux/stheader.h b/demux/stheader.h
index 101c75e880..1771f75ff5 100644
--- a/demux/stheader.h
+++ b/demux/stheader.h
@@ -73,6 +73,7 @@ typedef struct sh_audio {
// note codec extradata may be either under "wf" or "codecdata"
unsigned char *codecdata;
int codecdata_len;
+ struct replaygain_data *replaygain_data;
} sh_audio_t;
typedef struct sh_video {