Lines Matching refs:sub_st
297 AVStream *sub_st; /**< stream for the embedded AC3 stream in HDMV TrueHD */
1541 AVStream *sub_st;
1547 sub_st = avformat_new_stream(pes->stream, NULL);
1548 if (!sub_st) {
1553 sub_st->id = pes->pid;
1554 avpriv_set_pts_info(sub_st, 33, 1, 90000);
1555 sub_st->priv_data = sub_pes;
1556 sub_st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
1557 sub_st->codecpar->codec_id = AV_CODEC_ID_AC3;
1558 ffstream(sub_st)->need_parsing = AVSTREAM_PARSE_FULL;
1559 sub_pes->sub_st = pes->sub_st = sub_st;
1623 if (pes->sub_st && pes->stream_type == 0x83 && pes->extended_stream_id == 0x76)
1624 pkt->stream_index = pes->sub_st->index;
1780 (!pes->sub_st ||
1781 pes->sub_st->discard == AVDISCARD_ALL)) ||
3151 stream_type == 0x83 && pes->sub_st) {
3153 pes->sub_st->index);
3154 pes->sub_st->codecpar->codec_tag = st->codecpar->codec_tag;