#include <plugin.h>
Data Fields | |
bg_plugin_common_t | common |
Infos and functions common to all plugin types. | |
const char *(* | get_extension )(void *priv) |
Return the file extension. | |
int(* | write_header )(void *priv, const char *filename, gavl_video_format_t *format) |
Write the file header. | |
int(* | write_image )(void *priv, gavl_video_frame_t *frame) |
Write the image. |
Infos and functions common to all plugin types.
const char*(* bg_image_writer_plugin_s::get_extension)(void *priv) |
Return the file extension.
priv | The handle returned by the create() method |
int(* bg_image_writer_plugin_s::write_header)(void *priv, const char *filename, gavl_video_format_t *format) |
Write the file header.
priv | The handle returned by the create() method | |
format | Video format |
int(* bg_image_writer_plugin_s::write_image)(void *priv, gavl_video_frame_t *frame) |
Write the image.
priv | The handle returned by the create() method | |
frame | The frame containing the image |