Lines Matching refs:vst
54 AVStream *vst = avformat_new_stream(s, NULL); in pmp_header() local
55 if (!vst) in pmp_header()
57 vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; in pmp_header()
61 vst->codecpar->codec_id = AV_CODEC_ID_MPEG4; in pmp_header()
64 vst->codecpar->codec_id = AV_CODEC_ID_H264; in pmp_header()
71 vst->codecpar->width = avio_rl32(pb); in pmp_header()
72 vst->codecpar->height = avio_rl32(pb); in pmp_header()
76 avpriv_set_pts_info(vst, 32, tb_num, tb_den); in pmp_header()
77 vst->nb_frames = index_cnt; in pmp_header()
78 vst->duration = index_cnt; in pmp_header()
109 av_add_index_entry(vst, pos, i, size, 0, flags); in pmp_header()