Home
last modified time | relevance | path

Searched refs:sub_st (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavformat/
Dmpegts.c252 AVStream *sub_st; /**< stream for the embedded AC3 stream in HDMV TrueHD */ member
929 AVStream *sub_st; in mpegts_set_stream_info() local
936 sub_st = avformat_new_stream(pes->stream, NULL); in mpegts_set_stream_info()
937 if (!sub_st) { in mpegts_set_stream_info()
942 sub_st->id = pes->pid; in mpegts_set_stream_info()
943 avpriv_set_pts_info(sub_st, 33, 1, 90000); in mpegts_set_stream_info()
944 sub_st->priv_data = sub_pes; in mpegts_set_stream_info()
945 sub_st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; in mpegts_set_stream_info()
946 sub_st->codecpar->codec_id = AV_CODEC_ID_AC3; in mpegts_set_stream_info()
947 sub_st->need_parsing = AVSTREAM_PARSE_FULL; in mpegts_set_stream_info()
[all …]
Davidec.c1170 AVStream *st, *sub_st = NULL; in get_subtitle_pkt() local
1183 sub_st = st; in get_subtitle_pkt()
1188 if (sub_st) { in get_subtitle_pkt()
1189 ast = sub_st->priv_data; in get_subtitle_pkt()
1191 pkt->stream_index = sub_st->index; in get_subtitle_pkt()
1196 return sub_st; in get_subtitle_pkt()