summaryrefslogtreecommitdiff
path: root/codec.h
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2013-02-11 16:53:51 +0100
committerJohns <johns98@gmx.net>2013-02-11 16:53:51 +0100
commit2cd667fb4435e5373b8ba2b6bb93144248aae231 (patch)
tree8340dd09055615bbba1a02d07c42620c7d9d15ae /codec.h
parent145d65ff015a4f0aba470d73e7f113b9c46d189a (diff)
downloadvdr-plugin-softhddevice-2cd667fb4435e5373b8ba2b6bb93144248aae231.tar.gz
vdr-plugin-softhddevice-2cd667fb4435e5373b8ba2b6bb93144248aae231.tar.bz2
Improved pass-through (PCM+EAC3) support.
Diffstat (limited to 'codec.h')
-rw-r--r--codec.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/codec.h b/codec.h
index 08cc5ac..4a11607 100644
--- a/codec.h
+++ b/codec.h
@@ -1,7 +1,7 @@
///
/// @file codec.h @brief Codec module headerfile
///
-/// Copyright (c) 2009 - 2012 by Johns. All Rights Reserved.
+/// Copyright (c) 2009 - 2013 by Johns. All Rights Reserved.
///
/// Contributor(s):
///
@@ -24,6 +24,16 @@
/// @{
//----------------------------------------------------------------------------
+// Defines
+//----------------------------------------------------------------------------
+
+#define CodecPCM 0x01 ///< PCM bit mask
+#define CodecMPA 0x02 ///< MPA bit mask (planned)
+#define CodecAC3 0x04 ///< AC-3 bit mask
+#define CodecEAC3 0x08 ///< EAC-3 bit mask
+#define CodecDTS 0x10 ///< DTS bit mask (planned)
+
+//----------------------------------------------------------------------------
// Typedefs
//----------------------------------------------------------------------------