mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
Revert "libs: encoders: remove unused cast macros"
This reverts commit fd7d38f7d2
.
This commit is contained in:
parent
fd7d38f7d2
commit
9c2246740b
6 changed files with 18 additions and 0 deletions
|
@ -29,6 +29,9 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GST_VAAPI_ENCODER_H264(encoder) \
|
||||
((GstVaapiEncoderH264 *) (encoder))
|
||||
|
||||
typedef struct _GstVaapiEncoderH264 GstVaapiEncoderH264;
|
||||
|
||||
/**
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GST_VAAPI_ENCODER_H265(encoder) \
|
||||
((GstVaapiEncoderH265 *) (encoder))
|
||||
|
||||
typedef struct _GstVaapiEncoderH265 GstVaapiEncoderH265;
|
||||
|
||||
/**
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GST_VAAPI_ENCODER_JPEG(encoder) \
|
||||
((GstVaapiEncoderJpeg *) (encoder))
|
||||
|
||||
typedef struct _GstVaapiEncoderJpeg GstVaapiEncoderJpeg;
|
||||
|
||||
/**
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GST_VAAPI_ENCODER_MPEG2(encoder) \
|
||||
((GstVaapiEncoderMpeg2 *) (encoder))
|
||||
|
||||
typedef struct _GstVaapiEncoderMpeg2 GstVaapiEncoderMpeg2;
|
||||
|
||||
/**
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GST_VAAPI_ENCODER_VP8(encoder) \
|
||||
((GstVaapiEncoderVP8 *) (encoder))
|
||||
|
||||
typedef struct _GstVaapiEncoderVP8 GstVaapiEncoderVP8;
|
||||
|
||||
/**
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GST_VAAPI_ENCODER_VP9(encoder) \
|
||||
((GstVaapiEncoderVP9 *) (encoder))
|
||||
|
||||
typedef struct _GstVaapiEncoderVP9 GstVaapiEncoderVP9;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue