• Home
  • Raw
  • Download

Lines Matching refs:video_st

285     AVStream *video_st;  member
1250 is->video_st = NULL; in stream_component_close()
1370 else if (is->video_st) in video_display()
1425 if (is->video_st) in get_master_sync_type()
1594 if (is->video_st) { in video_refresh()
1706 if (is->video_st) in video_refresh()
1711 if (is->audio_st && is->video_st) in video_refresh()
1713 else if (is->video_st) in video_refresh()
1722 … (is->audio_st && is->video_st) ? "A-V" : (is->video_st ? "M-V" : (is->audio_st ? "M-A" : " ")), in video_refresh()
1728 is->video_st ? is->viddec.avctx->pts_correction_num_faulty_dts : 0, in video_refresh()
1729 is->video_st ? is->viddec.avctx->pts_correction_num_faulty_pts : 0); in video_refresh()
1786 dpts = av_q2d(is->video_st->time_base) * frame->pts; in get_video_frame()
1788 frame->sample_aspect_ratio = av_guess_sample_aspect_ratio(is->ic, is->video_st, frame); in get_video_frame()
1859 AVCodecParameters *codecpar = is->video_st->codecpar; in configure_video_filters()
1860 AVRational fr = av_guess_frame_rate(is->ic, is->video_st, NULL); in configure_video_filters()
1889 is->video_st->time_base.num, is->video_st->time_base.den, in configure_video_filters()
1930 double theta = get_rotation(is->video_st); in configure_video_filters()
2139 AVRational tb = is->video_st->time_base; in video_thread()
2140 AVRational frame_rate = av_guess_frame_rate(is->ic, is->video_st, NULL); in video_thread()
2695 is->video_st = ic->streams[stream_index]; in stream_component_open()
2986 if (is->video_st && is->video_st->disposition & AV_DISPOSITION_ATTACHED_PIC) { in read_thread()
2987 if ((ret = av_packet_ref(pkt, &is->video_st->attached_pic)) < 0) in read_thread()
2999 stream_has_enough_packets(is->video_st, is->video_stream, &is->videoq) && in read_thread()
3009 …(!is->video_st || (is->viddec.finished == is->videoq.serial && frame_queue_nb_remaining(&is->pictq… in read_thread()
3052 && !(is->video_st->disposition & AV_DISPOSITION_ATTACHED_PIC)) { in read_thread()
3226 …} while (next != is->show_mode && (next == SHOW_MODE_VIDEO && !is->video_st || next != SHOW_MODE_V… in toggle_audio_display()