Lines Matching defs:dst
121 AVFrame *dst, const AVFrame *src, int flags)
177 dst->data[plane] =
180 dst->linesize[plane] = layer->planes[p].pitch;
186 dst->width = src->width;
187 dst->height = src->height;
189 err = ff_hwframe_map_create(src->hw_frames_ctx, dst, src,
223 AVFrame *dst, const AVFrame *src)
228 if (dst->width > hwfc->width || dst->height > hwfc->height)
234 map->format = dst->format;
240 map->width = dst->width;
241 map->height = dst->height;
243 err = av_frame_copy(dst, map);
254 AVFrame *dst, const AVFrame *src)
267 err = drm_map_frame(hwfc, map, dst, AV_HWFRAME_MAP_WRITE |
285 static int drm_map_from(AVHWFramesContext *hwfc, AVFrame *dst,
290 if (hwfc->sw_format != dst->format)
293 err = drm_map_frame(hwfc, dst, src, flags);
297 err = av_frame_copy_props(dst, src);