HomeSort by relevance Sort by last modified time
    Searched refs:encoded_frames (Results 1 - 6 of 6) sorted by null

  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.cpp 74 rc[n]->encoded_frames = 0;
205 if (video->rc[currLayer]->encoded_frames == 0) /* rc[currLayer]->totalFrameNumber*/
313 pMP->encoded_frames++;
441 /* New changes: bitrate and framerate, Bs, max_BitVariance_num, TMN_TH(optional), encoded_frames(optional) */
501 pMP[n]->encoded_frames_prev = pMP[n]->encoded_frames;
509 //pMP[n]->encoded_frames_prev = pMP[n]->encoded_frames;
510 pMP[n]->encoded_frames = pMP[n]->re_encoded_frames = pMP[n]->re_encoded_times = 0;
563 //average_mad = (pMP->encoded_frames < 1 ? curr_mad : pMP->sum_mad/(float)(pMP->encoded_frames+1)); /* this function is called from the scond encoded frame*/
565 if (pMP->encoded_frames >= 0) /* pMP->encoded_frames is set to -1 initially, so forget about the very first I frame *
    [all...]
rate_control.h 86 Int encoded_frames; /* counter for all encoded frames */ member in struct:__anon9411
mp4lib_int.h 278 Int encoded_frames; /* counter for all encoded frames */ member in struct:tagMultiPass
301 Int encoded_frames_prev; /* previous encoded_frames */
mp4enc_api.cpp 822 video->pMP[idx]->encoded_frames = -1; /* forget about the very first I frame */
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 194 rateCtrl->pMP->encoded_frames = -1; /* forget about the very first I frame */
227 rateCtrl->encoded_frames = 0;
345 if (rateCtrl->encoded_frames == 0)
508 aver_QP = (pMP->encoded_frames == 0 ? 0 : pMP->sum_QP / (OsclFloat)pMP->encoded_frames);
509 average_mad = (pMP->encoded_frames == 0 ? 0 : pMP->sum_mad / (OsclFloat)pMP->encoded_frames); /* this function is called from the scond encoded frame*/
549 //average_mad = (pMP->encoded_frames < 1 ? curr_mad : pMP->sum_mad/(OsclFloat)(pMP->encoded_frames+1)); /* this function is called from the scond encoded frame*/
551 if (pMP->encoded_frames >= 0) /* pMP->encoded_frames is set to -1 initially, so forget about the very first I frame *
    [all...]
avcenc_int.h 179 int encoded_frames; /* counter for all encoded frames */ member in struct:tagMultiPass
202 int encoded_frames_prev; /* previous encoded_frames */
314 int encoded_frames; /* counter for all encoded frames */ member in struct:tagAVCRateControl

Completed in 229 milliseconds