summaryrefslogtreecommitdiff
path: root/tests/test-decode.c
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.c
parent24d918b7a371994455470b2bd90c04c6e1ee7d24 (diff)
Simplify tests info.
Diffstat (limited to 'tests/test-decode.c')
-rw-r--r--tests/test-decode.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/tests/test-decode.c b/tests/test-decode.c
index f4b56b92..0fea7501 100644
--- a/tests/test-decode.c
+++ b/tests/test-decode.c
@@ -28,19 +28,20 @@
#include "test-h264.h"
#include "test-vc1.h"
-typedef void (*GetVideoDataFunc)(const guchar **data, guint *size);
+typedef void (*GetVideoInfoFunc)(VideoDecodeInfo *info);
typedef struct _CodecDefs CodecDefs;
struct _CodecDefs {
const gchar *codec_str;
- GstVaapiCodec codec;
- GetVideoDataFunc get_video_data;
+ GetVideoInfoFunc get_video_info;
};
static const CodecDefs g_codec_defs[] = {
- { "mpeg2", GST_VAAPI_CODEC_MPEG2, mpeg2_get_video_data },
- { "h264", GST_VAAPI_CODEC_H264, h264_get_video_data },
- { "vc1", GST_VAAPI_CODEC_VC1, vc1_get_video_data },
+#define INIT_FUNCS(CODEC) { #CODEC, CODEC##_get_video_info }
+ INIT_FUNCS(mpeg2),
+ INIT_FUNCS(h264),
+ INIT_FUNCS(vc1),
+#undef INIT_FUNCS
{ NULL, }
};
@@ -77,11 +78,11 @@ main(int argc, char *argv[])
GstVaapiDisplay *display;
GstVaapiWindow *window;
GstVaapiDecoder *decoder;
+ GstCaps *decoder_caps;
GstVaapiDecoderStatus status;
const CodecDefs *codec;
GstVaapiSurfaceProxy *proxy;
- const guchar *vdata;
- guint vdata_size;
+ VideoDecodeInfo info;
static const guint win_width = 640;
static const guint win_height = 480;
@@ -109,12 +110,12 @@ main(int argc, char *argv[])
if (!window)
g_error("could not create window");
- codec->get_video_data(&vdata, &vdata_size);
- decoder = gst_vaapi_decoder_ffmpeg_new(display, codec->codec, NULL);
+ codec->get_video_info(&info);
+ decoder = gst_vaapi_decoder_ffmpeg_new(display, gst_vaapi_profile_get_codec(info.profile), NULL);
if (!decoder)
g_error("could not create FFmpeg decoder");
- if (!gst_vaapi_decoder_put_buffer_data(decoder, vdata, vdata_size))
+ if (!gst_vaapi_decoder_put_buffer_data(decoder, info.data, info.data_size))
g_error("could not send video data to the decoder");
if (!gst_vaapi_decoder_put_buffer(decoder, NULL))
g_error("could not send EOS to the decoder");