Lines Matching refs:codec_data
101 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width ||
102 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) &&
103 (data->codec_data->frame_width > 0) && (data->codec_data->frame_height)) {
105 ITRACE("Video size is changed. from %dx%d to %dx%d\n",mVideoFormatInfo.width,mVideoFormatInfo.height, data->codec_data->frame_width,data->codec_data->frame_height);
109 mVideoFormatInfo.width = data->codec_data->frame_width;
110 mVideoFormatInfo.height = data->codec_data->frame_height;
168 int frameType = data->codec_data->frame_type;
334 if ((data->codec_data->profile_and_level_indication & 0x70) == 0x50) {
363 data->codec_data->frame_width,
364 data->codec_data->frame_height);
366 mVideoFormatInfo.cropBottom = (data->codec_data->frame_height > mVideoFormatInfo.height) ?
367 (data->codec_data->frame_height - mVideoFormatInfo.height) : 0;
368 mVideoFormatInfo.cropRight = (data->codec_data->frame_width > mVideoFormatInfo.width) ?
369 (data->codec_data->frame_width - mVideoFormatInfo.width) : 0;
371 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width ||
372 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) &&
373 (data->codec_data->frame_width > 0) && (data->codec_data->frame_height)) {
375 mVideoFormatInfo.width = data->codec_data->frame_width;
376 mVideoFormatInfo.height = data->codec_data->frame_height;
382 mVideoFormatInfo.videoRange = data->codec_data->video_range;
384 switch (data->codec_data->matrix_coefficients) {
402 mVideoFormatInfo.aspectX = data->codec_data->par_width;
403 mVideoFormatInfo.aspectY = data->codec_data->par_height;
404 mVideoFormatInfo.bitrate = data->codec_data->bit_rate;