Lines Matching refs:vst
101 AVStream* vst; in dc1394_read_common() local
141 vst = avformat_new_stream(c, NULL); in dc1394_read_common()
142 if (!vst) { in dc1394_read_common()
146 avpriv_set_pts_info(vst, 64, 1, 1000); in dc1394_read_common()
147 vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; in dc1394_read_common()
148 vst->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO; in dc1394_read_common()
149 vst->codecpar->width = fmt->width; in dc1394_read_common()
150 vst->codecpar->height = fmt->height; in dc1394_read_common()
151 vst->codecpar->format = fmt->pix_fmt; in dc1394_read_common()
152 vst->avg_frame_rate = framerate; in dc1394_read_common()
155 dc1394->stream_index = vst->index; in dc1394_read_common()
159 vst->codecpar->bit_rate = av_rescale(dc1394->size * 8, in dc1394_read_common()