summaryrefslogtreecommitdiff
path: root/cesar/mac/common/tonemap.h
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/mac/common/tonemap.h')
-rw-r--r--cesar/mac/common/tonemap.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/cesar/mac/common/tonemap.h b/cesar/mac/common/tonemap.h
index 537e3596e1..f383b304b8 100644
--- a/cesar/mac/common/tonemap.h
+++ b/cesar/mac/common/tonemap.h
@@ -191,6 +191,19 @@ struct tonemap_t
* loading algorithm).
*/
u64 ber_target_reached;
+ /**
+ * Number of frames handled by this tone map.
+ * This counter can overflow. It also count only frame handled by the CE
+ * for this tone map (the CE can drop some frames if memory is too low).
+ */
+ u32 nb_frame;
+ /**
+ * Number of PB handled by this tone map.
+ * This counter can overflow. It also count only PB handled by the CE for
+ * this tone map, even the one with a CRC false (the CE can drop some
+ * measures if memory is too low).
+ */
+ u32 nb_pb;
};
typedef struct tonemap_t tonemap_t;