Lines Matching defs:ffmpeg_context_s
46 struct ffmpeg_context_s { struct
47 AVIOContext * io_ctx;
48 lv_fs_file_t lv_file;
49 AVFormatContext * fmt_ctx;
50 AVCodecContext * video_dec_ctx;
51 AVStream * video_stream;
52 uint8_t * video_src_data[4];
53 uint8_t * video_dst_data[4];
54 struct SwsContext * sws_ctx;
55 AVFrame * frame;
56 AVPacket * pkt;
57 int video_stream_idx;
58 int video_src_linesize[4];
59 int video_dst_linesize[4];
60 enum AVPixelFormat video_dst_pix_fmt;
61 bool has_alpha;
85 static struct ffmpeg_context_s * ffmpeg_open_file(const char * path, bool is_lv_fs_path); argument