libs: encoders: remove unused cast macros

They are only used inside the code, where another macro is defined.
Thus these exported macros have no use.
This commit is contained in:
Víctor Manuel Jáquez Leal 2017-08-28 18:32:32 +02:00
parent d9c88f4785
commit fd7d38f7d2
6 changed files with 0 additions and 18 deletions

View file

@ -29,9 +29,6 @@
G_BEGIN_DECLS
#define GST_VAAPI_ENCODER_H264(encoder) \
((GstVaapiEncoderH264 *) (encoder))
typedef struct _GstVaapiEncoderH264 GstVaapiEncoderH264;
/**

View file

@ -28,9 +28,6 @@
G_BEGIN_DECLS
#define GST_VAAPI_ENCODER_H265(encoder) \
((GstVaapiEncoderH265 *) (encoder))
typedef struct _GstVaapiEncoderH265 GstVaapiEncoderH265;
/**

View file

@ -27,9 +27,6 @@
G_BEGIN_DECLS
#define GST_VAAPI_ENCODER_JPEG(encoder) \
((GstVaapiEncoderJpeg *) (encoder))
typedef struct _GstVaapiEncoderJpeg GstVaapiEncoderJpeg;
/**

View file

@ -28,9 +28,6 @@
G_BEGIN_DECLS
#define GST_VAAPI_ENCODER_MPEG2(encoder) \
((GstVaapiEncoderMpeg2 *) (encoder))
typedef struct _GstVaapiEncoderMpeg2 GstVaapiEncoderMpeg2;
/**

View file

@ -27,9 +27,6 @@
G_BEGIN_DECLS
#define GST_VAAPI_ENCODER_VP8(encoder) \
((GstVaapiEncoderVP8 *) (encoder))
typedef struct _GstVaapiEncoderVP8 GstVaapiEncoderVP8;
/**

View file

@ -27,9 +27,6 @@
G_BEGIN_DECLS
#define GST_VAAPI_ENCODER_VP9(encoder) \
((GstVaapiEncoderVP9 *) (encoder))
typedef struct _GstVaapiEncoderVP9 GstVaapiEncoderVP9;
/**