Using 2 instead of 3 elements for avg_frame_qindex array.

The third array element was unused. 2 elements now: key- and interframe.

Change-Id: I5b8b9f5d889cc96a204cedfc432059293256298e
This commit is contained in:
Dmitry Kovalev
2014-06-03 19:45:13 -07:00
parent 74d47a8132
commit 4a26b240bc
2 changed files with 20 additions and 23 deletions

View File

@@ -61,7 +61,7 @@ typedef struct {
int ni_av_qi;
int ni_tot_qi;
int ni_frames;
int avg_frame_qindex[3]; // 0 - KEY, 1 - INTER, 2 - ARF/GF
int avg_frame_qindex[FRAME_TYPES];
double tot_q;
double avg_q;