summaryrefslogtreecommitdiff
path: root/tests/test-decode.h
diff options
context:
space:
mode:
authorgb <gb@5584edef-b1fe-4b99-b61b-dd2bab72e969>2010-05-03 16:41:13 +0000
committerGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2010-09-20 12:55:43 +0200
commit3ed565553517954893c7062e6e199b04fe7b6e38 (patch)
treebad3de12ad76815a7bcaf96b99704170b86bf822 /tests/test-decode.h
parent24d918b7a371994455470b2bd90c04c6e1ee7d24 (diff)
downloadgst-vaapi-3ed565553517954893c7062e6e199b04fe7b6e38.tar.gz
Simplify tests info.
Diffstat (limited to 'tests/test-decode.h')
-rw-r--r--tests/test-decode.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/test-decode.h b/tests/test-decode.h
new file mode 100644
index 00000000..0ef55cca
--- /dev/null
+++ b/tests/test-decode.h
@@ -0,0 +1,35 @@
+/*
+ * test-decode.h - Test GstVaapiDecoder
+ *
+ * gstreamer-vaapi (C) 2010 Splitted-Desktop Systems
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#ifndef TEST_DECODE_H
+#define TEST_DECODE_H
+
+#include <gst/vaapi/gstvaapiprofile.h>
+
+typedef struct _VideoDecodeInfo VideoDecodeInfo;
+struct _VideoDecodeInfo {
+ GstVaapiProfile profile;
+ guint width;
+ guint height;
+ const guchar *data;
+ guint data_size;
+};
+
+#endif /* TEST_DECODE_H */