Lines Matching refs:output_frame

6570                     vdec_msg->msgdata.output_frame.time_stamp, expected_ts);
6572 if (vdec_msg->msgdata.output_frame.time_stamp != expected_ts) {
6636 *timestamp = vdec_msg->msgdata.output_frame.time_stamp;
6640 vdec_msg->msgdata.output_frame.time_stamp);
6646 omxhdr = (OMX_BUFFERHEADERTYPE*)vdec_msg->msgdata.output_frame.client_data;
6648 omxhdr, vdec_msg->msgdata.output_frame.time_stamp,
6649 vdec_msg->msgdata.output_frame.pic_type);
6654 if (vdec_msg->msgdata.output_frame.pic_type == PICTURE_TYPE_IDR)
6655 vdec_msg->msgdata.output_frame.flags |= OMX_BUFFERFLAG_SYNCFRAME;
6657 vdec_msg->msgdata.output_frame.flags &= ~OMX_BUFFERFLAG_SYNCFRAME;
6660 if (vdec_msg->msgdata.output_frame.pic_type == PICTURE_TYPE_I)
6661 vdec_msg->msgdata.output_frame.flags |= OMX_BUFFERFLAG_SYNCFRAME;
6663 vdec_msg->msgdata.output_frame.flags &= ~OMX_BUFFERFLAG_SYNCFRAME;
6670 if (vdec_msg->msgdata.output_frame.len <= omxhdr->nAllocLen) {
6671 omxhdr->nFilledLen = vdec_msg->msgdata.output_frame.len;
6672 omxhdr->nOffset = vdec_msg->msgdata.output_frame.offset;
6673 omxhdr->nTimeStamp = vdec_msg->msgdata.output_frame.time_stamp;
6674 omxhdr->nFlags = (vdec_msg->msgdata.output_frame.flags);
6679 vdec_msg->msgdata.output_frame.framesize.bottom;
6681 vdec_msg->msgdata.output_frame.framesize.left;
6683 vdec_msg->msgdata.output_frame.framesize.right;
6685 vdec_msg->msgdata.output_frame.framesize.top;
6686 output_respbuf->len = vdec_msg->msgdata.output_frame.len;
6687 output_respbuf->offset = vdec_msg->msgdata.output_frame.offset;
6688 output_respbuf->time_stamp = vdec_msg->msgdata.output_frame.time_stamp;
6689 output_respbuf->flags = vdec_msg->msgdata.output_frame.flags;
6690 output_respbuf->pic_type = vdec_msg->msgdata.output_frame.pic_type;
6691 output_respbuf->interlaced_format = vdec_msg->msgdata.output_frame.interlaced_format;
6693 vdec_msg->msgdata.output_frame.aspect_ratio_info;
6697 (vdec_msg->msgdata.output_frame.bufferaddr +
6698 vdec_msg->msgdata.output_frame.offset),
6699 vdec_msg->msgdata.output_frame.len );
6705 } else if (vdec_msg->msgdata.output_frame.flags & OMX_BUFFERFLAG_EOS)