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

  /hardware/intel/img/psb_video/src/
pnw_H264ES.c 209 VAEncSequenceParameterBufferH264 *pSequenceParams;
230 pSequenceParams = (VAEncSequenceParameterBufferH264 *) obj_buffer->buffer_data;
234 if (!pSequenceParams->bits_per_second) {
235 pSequenceParams->bits_per_second = ctx->Height * ctx->Width * 30 * 12;
237 pSequenceParams->bits_per_second);
240 (pSequenceParams->bits_per_second == ctx->sRCParams.BitsPerSecond ?
243 if (pSequenceParams->bits_per_second > TOPAZ_H264_MAX_BITRATE) {
247 pSequenceParams->bits_per_second,
261 if (pSequenceParams->bits_per_second > max_bps) {
264 "\n clip to %d bps\n", pSequenceParams->bits_per_second, max_bps)
    [all...]
pnw_H263ES.c 182 VAEncSequenceParameterBufferH263 *pSequenceParams;
199 pSequenceParams = (VAEncSequenceParameterBufferH263 *) obj_buffer->buffer_data;
203 if (pSequenceParams->bits_per_second > TOPAZ_H263_MAX_BITRATE) {
207 pSequenceParams->bits_per_second,
210 ctx->sRCParams.BitsPerSecond = pSequenceParams->bits_per_second;
212 ctx->sRCParams.FrameRate = (pSequenceParams->frame_rate < 1) ? 1 :
213 ((65535 < pSequenceParams->frame_rate) ? 65535 : pSequenceParams->frame_rate);
214 ctx->sRCParams.InitialQp = pSequenceParams->initial_qp;
215 ctx->sRCParams.MinQP = pSequenceParams->min_qp
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
lnc_H263ES.c 190 VAEncSequenceParameterBufferH263 *pSequenceParams;
201 pSequenceParams = (VAEncSequenceParameterBufferH263 *) obj_buffer->buffer_data;
206 (ctx->sRCParams.BitsPerSecond != pSequenceParams->bits_per_second))
209 if (pSequenceParams->bits_per_second > TOPAZ_H263_MAX_BITRATE) {
213 pSequenceParams->bits_per_second,
216 ctx->sRCParams.BitsPerSecond = pSequenceParams->bits_per_second;
218 if (pSequenceParams->initial_qp < 3)
219 pSequenceParams->initial_qp = 3;
221 ctx->sRCParams.FrameRate = pSequenceParams->frame_rate;
222 ctx->sRCParams.InitialQp = pSequenceParams->initial_qp
    [all...]
lnc_H264ES.c 210 VAEncSequenceParameterBufferH264 *pSequenceParams;
227 pSequenceParams = (VAEncSequenceParameterBufferH264 *) obj_buffer->buffer_data;
232 (ctx->sRCParams.BitsPerSecond != pSequenceParams->bits_per_second))
238 if (pSequenceParams->bits_per_second > TOPAZ_H264_MAX_BITRATE) {
242 pSequenceParams->bits_per_second,
245 ctx->sRCParams.BitsPerSecond = pSequenceParams->bits_per_second;
249 ctx->sRCParams.IntraFreq = pSequenceParams->intra_period;
253 ctx->sRCParams.IDRFreq = pSequenceParams->intra_idr_period;
285 lnc__H264_prepare_sequence_header((IMG_UINT32 *)(cmdbuf->header_mem_p + ctx->seq_header_ofs), pSequenceParams->max_num_ref_frames,
286 pSequenceParams->picture_width_in_mbs
    [all...]

Completed in 82 milliseconds