123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef _ENC_STATISTICS_H_
- #define _ENC_STATISTICS_H_
- #include "global.h"
- struct stat_parameters
- {
- float bitr;
- float bitrate;
- int64 bit_ctr;
- int64 bit_ctr_n;
- int64 bit_ctr_emulationprevention;
- int bit_slice;
- int stored_bit_slice;
- int b8_mode_0_use [NUM_SLICE_TYPES][2];
- int64 mode_use_transform[NUM_SLICE_TYPES][MAXMODE][2];
- int64 intra_chroma_mode[4];
-
- int NumberBFrames;
- int frame_counter;
- int64 quant [NUM_SLICE_TYPES];
- int64 num_macroblocks [NUM_SLICE_TYPES];
- int frame_ctr [NUM_SLICE_TYPES];
- int64 bit_counter [NUM_SLICE_TYPES];
- float bitrate_st [NUM_SLICE_TYPES];
- int64 mode_use [NUM_SLICE_TYPES][MAXMODE];
- int64 bit_use_mode [NUM_SLICE_TYPES][MAXMODE];
- int64 bit_use_mb_type [NUM_SLICE_TYPES];
- int64 bit_use_header [NUM_SLICE_TYPES];
- int64 tmp_bit_use_cbp [NUM_SLICE_TYPES];
- int64 bit_use_coeffC [NUM_SLICE_TYPES];
- int64 bit_use_coeff [3][NUM_SLICE_TYPES];
- int64 bit_use_delta_quant [NUM_SLICE_TYPES];
- int64 bit_use_stuffingBits[NUM_SLICE_TYPES];
- int bit_ctr_parametersets;
- int bit_ctr_parametersets_n;
- int64 bit_ctr_filler_data;
- int64 bit_ctr_filler_data_n;
- };
- typedef struct stat_parameters StatParameters;
- #endif
|