summaryrefslogtreecommitdiff
path: root/codec.h
diff options
context:
space:
mode:
Diffstat (limited to 'codec.h')
-rw-r--r--codec.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/codec.h b/codec.h
index fbc32ec..08cc5ac 100644
--- a/codec.h
+++ b/codec.h
@@ -67,8 +67,14 @@ extern void CodecAudioOpen(AudioDecoder *, const char *, int);
/// Close audio codec.
extern void CodecAudioClose(AudioDecoder *);
- /// Decode an audio packet.
-extern void CodecAudioDecodeOld(AudioDecoder *, const AVPacket *);
+ /// Set audio drift correction.
+extern void CodecSetAudioDrift(int);
+
+ /// Set audio pass-through.
+extern void CodecSetAudioPassthrough(int);
+
+ /// Set audio downmix.
+extern void CodecSetAudioDownmix(int);
/// Decode an audio packet.
extern void CodecAudioDecode(AudioDecoder *, const AVPacket *);