Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/IMB_anim.h
| Show First 20 Lines • Show All 123 Lines • ▼ Show 20 Lines | |||||
| #ifdef WITH_FFMPEG | #ifdef WITH_FFMPEG | ||||
| AVFormatContext *pFormatCtx; | AVFormatContext *pFormatCtx; | ||||
| AVCodecContext *pCodecCtx; | AVCodecContext *pCodecCtx; | ||||
| AVCodec *pCodec; | AVCodec *pCodec; | ||||
| AVFrame *pFrame; | AVFrame *pFrame; | ||||
| int pFrameComplete; | int pFrameComplete; | ||||
| AVFrame *pFrameRGB; | AVFrame *pFrameRGB; | ||||
| AVFrame *pFrameDeinterlaced; | AVFrame *pFrameDeinterlaced; | ||||
| struct SwsContext *img_convert_ctx; | struct SwsContext *img_convert_ctx[IMB_DOWNSCALE_MAX_SLOT]; | ||||
| int videoStream; | int videoStream; | ||||
| struct ImBuf *last_frame; | struct ImBuf *last_frame; | ||||
| IMB_Downscale last_downscale_index; | |||||
| int64_t last_pts; | int64_t last_pts; | ||||
| int64_t next_pts; | int64_t next_pts; | ||||
| AVPacket next_packet; | AVPacket next_packet; | ||||
| #endif | #endif | ||||
| char index_dir[768]; | char index_dir[768]; | ||||
| int proxies_tried; | int proxies_tried; | ||||
| Show All 10 Lines | |||||