Home
last modified time | relevance | path

Searched refs:sub2video (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/fftools/
Dffmpeg_filter.c701 ist->sub2video.w = ifilter->width = w; in sub2video_prepare()
702 ist->sub2video.h = ifilter->height = h; in sub2video_prepare()
704 ifilter->width = ist->dec_ctx->width ? ist->dec_ctx->width : ist->sub2video.w; in sub2video_prepare()
705 ifilter->height = ist->dec_ctx->height ? ist->dec_ctx->height : ist->sub2video.h; in sub2video_prepare()
711 ist->sub2video.frame = av_frame_alloc(); in sub2video_prepare()
712 if (!ist->sub2video.frame) in sub2video_prepare()
714 ist->sub2video.last_pts = INT64_MIN; in sub2video_prepare()
715 ist->sub2video.end_pts = INT64_MIN; in sub2video_prepare()
720 ist->sub2video.initialize = 1; in sub2video_prepare()
1140 if (ist->sub2video.sub_queue && ist->sub2video.frame) { in configure_filtergraph()
[all …]
Dffmpeg.c180 AVFrame *frame = ist->sub2video.frame; in sub2video_get_blank_frame()
183 ist->sub2video.frame->width = ist->dec_ctx->width ? ist->dec_ctx->width : ist->sub2video.w; in sub2video_get_blank_frame()
184 ist->sub2video.frame->height = ist->dec_ctx->height ? ist->dec_ctx->height : ist->sub2video.h; in sub2video_get_blank_frame()
185 ist->sub2video.frame->format = AV_PIX_FMT_RGB32; in sub2video_get_blank_frame()
225 AVFrame *frame = ist->sub2video.frame; in sub2video_push_ref()
230 ist->sub2video.last_pts = frame->pts = pts; in sub2video_push_ref()
243 AVFrame *frame = ist->sub2video.frame; in sub2video_update()
262 pts = ist->sub2video.initialize ? in sub2video_update()
263 heartbeat_pts : ist->sub2video.end_pts; in sub2video_update()
277 ist->sub2video.end_pts = end_pts; in sub2video_update()
[all …]
Dffmpeg.h352 struct sub2video { struct
359 } sub2video; member
/third_party/ffmpeg/tests/fate/
Dffmpeg.mak51 …all ALLYES, VOBSUB_DEMUXER DVDSUB_DECODER AVFILTER OVERLAY_FILTER DVDSUB_ENCODER) += fate-sub2video
52 fate-sub2video: tests/data/vsynth_lena.yuv
53 fate-sub2video: CMD = framecrc -auto_conversion_filters \
59 # Very basic sub2video example, decode and convert to AVFrame with sub2video.