Lines Matching defs:st_num
424 static AVStream *find_stream(AVFormatContext *s, uint16_t st_num)
431 if (asf->asf_st[i]->stream_index == st_num) {
440 static int asf_store_aspect_ratio(AVFormatContext *s, uint8_t st_num, uint8_t *name, int type)
451 if (st_num < ASF_MAX_STREAMS) {
453 asf->asf_sd[st_num].aspect_ratio.num = value;
455 asf->asf_sd[st_num].aspect_ratio.den = value;
469 uint16_t name_len, buflen, type, val_len, st_num;
473 st_num = avio_rl16(pb);
486 ret = asf_store_aspect_ratio(s, st_num, name, type);
492 if (st_num < ASF_MAX_STREAMS) {
494 st_num ? &asf->asf_sd[st_num].asf_met
729 uint16_t nb_st_name, nb_pay_exts, st_num, lang_idx;
739 st_num = avio_rl16(pb);
740 st_num &= ASF_STREAM_NUM;
745 if (st_num == asf->asf_st[i]->stream_index) {
1273 static int asf_deinterleave(AVFormatContext *s, ASFPacket *asf_pkt, int st_num)
1276 ASFStream *asf_st = asf->asf_st[st_num];
1278 uint16_t pkt_len = asf->asf_st[st_num]->virtual_pkt_len;
1279 uint16_t chunk_len = asf->asf_st[st_num]->virtual_chunk_len;