summaryrefslogtreecommitdiff
path: root/tests/internal/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/internal/output.h')
-rw-r--r--tests/internal/output.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/internal/output.h b/tests/internal/output.h
index 7d109f24..69299157 100644
--- a/tests/internal/output.h
+++ b/tests/internal/output.h
@@ -26,21 +26,16 @@
#include <glib.h>
#include <gst/vaapi/gstvaapidisplay.h>
#include <gst/vaapi/gstvaapiwindow.h>
-#include <gst/vaapi/gstvaapipixmap.h>
typedef GstVaapiDisplay *(*CreateDisplayFunc)(const gchar *display_name);
typedef GstVaapiWindow *(*CreateWindowFunc)(GstVaapiDisplay *display,
guint width, guint height);
-typedef GstVaapiPixmap *(*CreatePixmapFunc)(GstVaapiDisplay *display,
- GstVideoFormat format, guint width, guint height);
-
typedef struct _VideoOutputInfo VideoOutputInfo;
struct _VideoOutputInfo {
const gchar *name;
CreateDisplayFunc create_display;
CreateWindowFunc create_window;
- CreatePixmapFunc create_pixmap;
};
gboolean
@@ -58,8 +53,4 @@ video_output_create_display(const gchar *display_name);
GstVaapiWindow *
video_output_create_window(GstVaapiDisplay *display, guint width, guint height);
-GstVaapiPixmap *
-video_output_create_pixmap(GstVaapiDisplay *display, GstVideoFormat format,
- guint width, guint height);
-
#endif /* OUTPUT_H */