aboutsummaryrefslogtreecommitdiffstats
path: root/utils/rds-ctl/rds-ctl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rds-ctl/rds-ctl.cpp')
-rw-r--r--utils/rds-ctl/rds-ctl.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/utils/rds-ctl/rds-ctl.cpp b/utils/rds-ctl/rds-ctl.cpp
index 9ab2b65c..7745a8fd 100644
--- a/utils/rds-ctl/rds-ctl.cpp
+++ b/utils/rds-ctl/rds-ctl.cpp
@@ -489,9 +489,13 @@ static void print_decoder_info(uint8_t di)
else
printf("No Artificial Head, ");
if (di & V4L2_RDS_FLAG_COMPRESSED)
- printf("Compressed");
+ printf("Compressed, ");
else
- printf("Not Compressed");
+ printf("Not Compressed, ");
+ if (di & V4L2_RDS_FLAG_DYNAMIC_PTY)
+ printf("Dynamic PTY");
+ else
+ printf("Static PTY");
}
static void print_rds_tmc(const struct v4l2_rds *handle, uint32_t updated_fields)

Privacy Policy