cc status 0x03 means either "authentication failed" or "no srm required"

svn path=/trunk/; revision=46119
This commit is contained in:
Martin Kaiser 2012-11-21 21:08:43 +00:00
parent f3792fdf6b
commit 52f1565bd4
1 changed files with 12 additions and 12 deletions

View File

@ -304,7 +304,7 @@
#define CC_STATUS_OK 0x0
#define CC_STATUS_NO_CC_SUPPORT 0x1
#define CC_STATUS_HOST_BUSY 0x2
#define CC_STATUS_AUTH_FAILED 0x3
#define CC_STATUS_AUTH_FAILED_OR_NO_SRM 0x3
#define CC_STATUS_CICAM_BUSY 0x4
#define CC_STATUS_REC_MODE_ERR 0x5
@ -1340,7 +1340,7 @@ static const value_string dvbci_cc_status[] = {
{ CC_STATUS_OK, "Ok" },
{ CC_STATUS_NO_CC_SUPPORT, "No CC support" },
{ CC_STATUS_HOST_BUSY, "Host busy" },
{ CC_STATUS_AUTH_FAILED, "Authentication failed" },
{ CC_STATUS_AUTH_FAILED_OR_NO_SRM, "Authentication failed / SRM not required" },
{ CC_STATUS_CICAM_BUSY, "CICAM busy" },
{ CC_STATUS_REC_MODE_ERR, "Recording mode error" },
{ 0, NULL }