summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Freyermuth <o.freyermuth@googlemail.com>2017-10-08 18:34:45 +0200
committerOliver Freyermuth <o.freyermuth@googlemail.com>2017-10-09 20:06:29 +0200
commit6b05c774a4d1177352e560a10efcc940a0966941 (patch)
tree8cbb12f8c6405237c06330a9b969e1c649b21429
parentde0c1dd4f5e4a7d3218783c6eb889c4076f780c3 (diff)
downloadmpv-6b05c774a4d1177352e560a10efcc940a0966941.tar.bz2
mpv-6b05c774a4d1177352e560a10efcc940a0966941.tar.xz
dvb: SYS_DVBC_ANNEX_B is now supported if ATSC is activated.
Signed-off-by: Oliver Freyermuth <o.freyermuth@googlemail.com>
-rw-r--r--stream/dvbin.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/stream/dvbin.h b/stream/dvbin.h
index 02b6a72968..5329179b0f 100644
--- a/stream/dvbin.h
+++ b/stream/dvbin.h
@@ -124,6 +124,7 @@ typedef struct {
/* Keep in sync with enum fe_delivery_system. */
#ifndef DVB_USE_S2API
# define SYS_DVBC_ANNEX_A 1
+# define SYS_DVBC_ANNEX_B 1
# define SYS_DVBT 3
# define SYS_DVBS 5
# define SYS_DVBS2 6
@@ -151,6 +152,7 @@ typedef struct {
DELSYS_BIT(SYS_DVBS) | \
DELSYS_BIT(SYS_DVBS2) | \
DELSYS_BIT(SYS_ATSC) | \
+ DELSYS_BIT(SYS_DVBC_ANNEX_B) | \
DELSYS_BIT(SYS_DVBT2) | \
DELSYS_BIT(SYS_DVBC_ANNEX_C) \
)