FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Public Types | Data Fields
VideoState Struct Reference

Public Types

enum  ShowMode {
  SHOW_MODE_NONE = -1, SHOW_MODE_VIDEO = 0, SHOW_MODE_WAVES, SHOW_MODE_RDFT,
  SHOW_MODE_NB
}
 

Data Fields

SDL_Thread * read_tid
 
SDL_Thread * video_tid
 
AVInputFormatiformat
 
int no_background
 
int abort_request
 
int force_refresh
 
int paused
 
int last_paused
 
int queue_attachments_req
 
int seek_req
 
int seek_flags
 
int64_t seek_pos
 
int64_t seek_rel
 
int read_pause_return
 
AVFormatContextic
 
int realtime
 
int audio_finished
 
int video_finished
 
Clock audclk
 
Clock vidclk
 
Clock extclk
 
int audio_stream
 
int av_sync_type
 
double audio_clock
 
int audio_clock_serial
 
double audio_diff_cum
 
double audio_diff_avg_coef
 
double audio_diff_threshold
 
int audio_diff_avg_count
 
AVStreamaudio_st
 
PacketQueue audioq
 
int audio_hw_buf_size
 
uint8_t silence_buf [SDL_AUDIO_MIN_BUFFER_SIZE]
 
uint8_taudio_buf
 
uint8_taudio_buf1
 
unsigned int audio_buf_size
 
unsigned int audio_buf1_size
 
int audio_buf_index
 
int audio_write_buf_size
 
int audio_buf_frames_pending
 
AVPacket audio_pkt_temp
 
AVPacket audio_pkt
 
int audio_pkt_temp_serial
 
int audio_last_serial
 
struct AudioParams audio_src
 
struct AudioParams audio_tgt
 
struct SwrContextswr_ctx
 
int frame_drops_early
 
int frame_drops_late
 
AVFrameframe
 
int64_t audio_frame_next_pts
 
enum VideoState::ShowMode show_mode
 
int16_t sample_array [SAMPLE_ARRAY_SIZE]
 
int sample_array_index
 
int last_i_start
 
RDFTContextrdft
 
int rdft_bits
 
FFTSamplerdft_data
 
int xpos
 
double last_vis_time
 
SDL_Thread * subtitle_tid
 
int subtitle_stream
 
AVStreamsubtitle_st
 
PacketQueue subtitleq
 
SubPicture subpq [SUBPICTURE_QUEUE_SIZE]
 
int subpq_size
 
int subpq_rindex
 
int subpq_windex
 
SDL_mutex * subpq_mutex
 
SDL_cond * subpq_cond
 
double frame_timer
 
double frame_last_returned_time
 
double frame_last_filter_delay
 
int video_stream
 
AVStreamvideo_st
 
PacketQueue videoq
 
int64_t video_current_pos
 
double max_frame_duration
 
VideoPicture pictq [VIDEO_PICTURE_QUEUE_SIZE]
 
int pictq_size
 
int pictq_rindex
 
int pictq_windex
 
int pictq_rindex_shown
 
SDL_mutex * pictq_mutex
 
SDL_cond * pictq_cond
 
struct SwsContextimg_convert_ctx
 
SDL_Rect last_display_rect
 
char filename [1024]
 
int width
 
int height
 
int xleft
 
int ytop
 
int step
 
int last_video_stream
 
int last_audio_stream
 
int last_subtitle_stream
 
SDL_cond * continue_read_thread
 

Detailed Description

Definition at line 169 of file ffplay.c.

Member Enumeration Documentation

Enumerator:
SHOW_MODE_NONE 
SHOW_MODE_VIDEO 
SHOW_MODE_WAVES 
SHOW_MODE_RDFT 
SHOW_MODE_NB 

Definition at line 229 of file ffplay.c.

Field Documentation

SDL_Thread* VideoState::read_tid

Definition at line 170 of file ffplay.c.

Referenced by stream_close(), and stream_open().

SDL_Thread* VideoState::video_tid

Definition at line 171 of file ffplay.c.

Referenced by stream_component_close(), and stream_component_open().

AVInputFormat* VideoState::iformat

Definition at line 172 of file ffplay.c.

Referenced by read_thread(), and stream_open().

int VideoState::no_background

Definition at line 173 of file ffplay.c.

int VideoState::abort_request

Definition at line 174 of file ffplay.c.

Referenced by decode_interrupt_cb(), queue_picture(), read_thread(), and stream_close().

int VideoState::force_refresh
int VideoState::paused
int VideoState::last_paused

Definition at line 177 of file ffplay.c.

Referenced by read_thread().

int VideoState::queue_attachments_req

Definition at line 178 of file ffplay.c.

Referenced by read_thread(), and stream_component_open().

int VideoState::seek_req

Definition at line 179 of file ffplay.c.

Referenced by read_thread(), and stream_seek().

int VideoState::seek_flags

Definition at line 180 of file ffplay.c.

Referenced by read_thread(), and stream_seek().

int64_t VideoState::seek_pos

Definition at line 181 of file ffplay.c.

Referenced by event_loop(), read_thread(), and stream_seek().

int64_t VideoState::seek_rel

Definition at line 182 of file ffplay.c.

Referenced by read_thread(), and stream_seek().

int VideoState::read_pause_return

Definition at line 183 of file ffplay.c.

Referenced by read_thread(), and stream_toggle_pause().

AVFormatContext* VideoState::ic
int VideoState::realtime

Definition at line 185 of file ffplay.c.

Referenced by read_thread(), and video_refresh().

int VideoState::audio_finished

Definition at line 186 of file ffplay.c.

Referenced by audio_decode_frame(), and read_thread().

int VideoState::video_finished

Definition at line 187 of file ffplay.c.

Referenced by get_video_frame(), read_thread(), and video_thread().

Clock VideoState::audclk
Clock VideoState::vidclk
Clock VideoState::extclk
int VideoState::audio_stream
int VideoState::av_sync_type

Definition at line 195 of file ffplay.c.

Referenced by get_master_sync_type(), and stream_open().

double VideoState::audio_clock

Definition at line 197 of file ffplay.c.

Referenced by audio_decode_frame(), sdl_audio_callback(), and synchronize_audio().

int VideoState::audio_clock_serial

Definition at line 198 of file ffplay.c.

Referenced by audio_decode_frame(), sdl_audio_callback(), and stream_open().

double VideoState::audio_diff_cum

Definition at line 199 of file ffplay.c.

Referenced by synchronize_audio().

double VideoState::audio_diff_avg_coef

Definition at line 200 of file ffplay.c.

Referenced by stream_component_open(), and synchronize_audio().

double VideoState::audio_diff_threshold

Definition at line 201 of file ffplay.c.

Referenced by stream_component_open(), and synchronize_audio().

int VideoState::audio_diff_avg_count

Definition at line 202 of file ffplay.c.

Referenced by stream_component_open(), and synchronize_audio().

AVStream* VideoState::audio_st
PacketQueue VideoState::audioq
int VideoState::audio_hw_buf_size

Definition at line 205 of file ffplay.c.

Referenced by sdl_audio_callback(), and stream_component_open().

uint8_t VideoState::silence_buf[SDL_AUDIO_MIN_BUFFER_SIZE]

Definition at line 206 of file ffplay.c.

Referenced by sdl_audio_callback().

uint8_t* VideoState::audio_buf

Definition at line 207 of file ffplay.c.

Referenced by audio_decode_frame(), sdl_audio_callback(), and stream_component_close().

uint8_t* VideoState::audio_buf1

Definition at line 208 of file ffplay.c.

Referenced by audio_decode_frame(), and stream_component_close().

unsigned int VideoState::audio_buf_size

Definition at line 209 of file ffplay.c.

Referenced by sdl_audio_callback(), and stream_component_open().

unsigned int VideoState::audio_buf1_size

Definition at line 210 of file ffplay.c.

Referenced by audio_decode_frame(), and stream_component_close().

int VideoState::audio_buf_index

Definition at line 211 of file ffplay.c.

Referenced by sdl_audio_callback(), and stream_component_open().

int VideoState::audio_write_buf_size

Definition at line 212 of file ffplay.c.

Referenced by sdl_audio_callback(), and video_audio_display().

int VideoState::audio_buf_frames_pending

Definition at line 213 of file ffplay.c.

Referenced by audio_decode_frame().

AVPacket VideoState::audio_pkt_temp

Definition at line 214 of file ffplay.c.

Referenced by audio_decode_frame(), and stream_component_open().

AVPacket VideoState::audio_pkt
int VideoState::audio_pkt_temp_serial

Definition at line 216 of file ffplay.c.

Referenced by audio_decode_frame().

int VideoState::audio_last_serial

Definition at line 217 of file ffplay.c.

Referenced by audio_decode_frame(), and stream_open().

struct AudioParams VideoState::audio_src

Definition at line 218 of file ffplay.c.

Referenced by audio_decode_frame(), stream_component_open(), and synchronize_audio().

struct AudioParams VideoState::audio_tgt
struct SwrContext* VideoState::swr_ctx

Definition at line 223 of file ffplay.c.

Referenced by audio_decode_frame(), and stream_component_close().

int VideoState::frame_drops_early

Definition at line 224 of file ffplay.c.

Referenced by get_video_frame(), and video_refresh().

int VideoState::frame_drops_late

Definition at line 225 of file ffplay.c.

Referenced by video_refresh().

AVFrame* VideoState::frame

Definition at line 226 of file ffplay.c.

Referenced by audio_decode_frame(), and stream_component_close().

int64_t VideoState::audio_frame_next_pts

Definition at line 227 of file ffplay.c.

Referenced by audio_decode_frame().

enum VideoState::ShowMode VideoState::show_mode
int16_t VideoState::sample_array[SAMPLE_ARRAY_SIZE]

Definition at line 232 of file ffplay.c.

Referenced by update_sample_display(), and video_audio_display().

int VideoState::sample_array_index

Definition at line 233 of file ffplay.c.

Referenced by update_sample_display(), and video_audio_display().

int VideoState::last_i_start

Definition at line 234 of file ffplay.c.

Referenced by video_audio_display().

RDFTContext* VideoState::rdft

Definition at line 235 of file ffplay.c.

Referenced by stream_component_close(), and video_audio_display().

int VideoState::rdft_bits

Definition at line 236 of file ffplay.c.

Referenced by stream_component_close(), and video_audio_display().

FFTSample* VideoState::rdft_data

Definition at line 237 of file ffplay.c.

Referenced by stream_component_close(), and video_audio_display().

int VideoState::xpos

Definition at line 238 of file ffplay.c.

Referenced by video_audio_display().

double VideoState::last_vis_time

Definition at line 239 of file ffplay.c.

Referenced by video_refresh().

SDL_Thread* VideoState::subtitle_tid

Definition at line 241 of file ffplay.c.

Referenced by stream_component_close(), and stream_component_open().

int VideoState::subtitle_stream
AVStream* VideoState::subtitle_st
PacketQueue VideoState::subtitleq
SubPicture VideoState::subpq[SUBPICTURE_QUEUE_SIZE]

Definition at line 245 of file ffplay.c.

Referenced by stream_close(), subtitle_thread(), video_image_display(), and video_refresh().

int VideoState::subpq_size

Definition at line 246 of file ffplay.c.

Referenced by subtitle_thread(), video_image_display(), and video_refresh().

int VideoState::subpq_rindex

Definition at line 246 of file ffplay.c.

Referenced by video_image_display(), and video_refresh().

int VideoState::subpq_windex

Definition at line 246 of file ffplay.c.

Referenced by subtitle_thread().

SDL_mutex* VideoState::subpq_mutex
SDL_cond* VideoState::subpq_cond
double VideoState::frame_timer

Definition at line 250 of file ffplay.c.

Referenced by stream_toggle_pause(), and video_refresh().

double VideoState::frame_last_returned_time

Definition at line 251 of file ffplay.c.

Referenced by video_thread().

double VideoState::frame_last_filter_delay

Definition at line 252 of file ffplay.c.

Referenced by get_video_frame(), and video_thread().

int VideoState::video_stream
AVStream* VideoState::video_st
PacketQueue VideoState::videoq
int64_t VideoState::video_current_pos

Definition at line 256 of file ffplay.c.

Referenced by event_loop(), update_video_pts(), and video_refresh().

double VideoState::max_frame_duration

Definition at line 257 of file ffplay.c.

Referenced by compute_target_delay(), read_thread(), and vp_duration().

int VideoState::pictq_size

Definition at line 259 of file ffplay.c.

Referenced by pictq_nb_remaining(), pictq_next_picture(), and queue_picture().

int VideoState::pictq_rindex

Definition at line 259 of file ffplay.c.

Referenced by pictq_next_picture(), video_image_display(), and video_refresh().

int VideoState::pictq_windex

Definition at line 259 of file ffplay.c.

Referenced by alloc_picture(), and queue_picture().

int VideoState::pictq_rindex_shown
SDL_mutex* VideoState::pictq_mutex
SDL_cond* VideoState::pictq_cond
struct SwsContext* VideoState::img_convert_ctx

Definition at line 263 of file ffplay.c.

Referenced by queue_picture(), and stream_close().

SDL_Rect VideoState::last_display_rect

Definition at line 265 of file ffplay.c.

Referenced by video_image_display().

char VideoState::filename[1024]

Definition at line 267 of file ffplay.c.

Referenced by read_thread(), and stream_open().

int VideoState::width
int VideoState::height
int VideoState::xleft
int VideoState::ytop
int VideoState::step

Definition at line 269 of file ffplay.c.

Referenced by step_to_next_frame(), toggle_pause(), and video_refresh().

int VideoState::last_video_stream

Definition at line 280 of file ffplay.c.

Referenced by read_thread(), stream_component_open(), and stream_cycle_channel().

int VideoState::last_audio_stream

Definition at line 280 of file ffplay.c.

Referenced by read_thread(), stream_component_open(), and stream_cycle_channel().

int VideoState::last_subtitle_stream

Definition at line 280 of file ffplay.c.

Referenced by read_thread(), stream_component_open(), and stream_cycle_channel().

SDL_cond* VideoState::continue_read_thread

Definition at line 282 of file ffplay.c.

Referenced by read_thread(), stream_close(), stream_open(), and stream_seek().


The documentation for this struct was generated from the following file: