summaryrefslogtreecommitdiff
path: root/tests/output.h
blob: 7d109f24f059a2b3ec6695b12e0347a48cb7d114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 *  output.h - Video output helpers
 *
 *  Copyright (C) 2012-2013 Intel Corporation
 *    Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public License
 *  as published by the Free Software Foundation; either version 2.1
 *  of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free
 *  Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301 USA
 */

#ifndef OUTPUT_H
#define OUTPUT_H

#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
video_output_init(int *argc, char *argv[], GOptionEntry *options);

void
video_output_exit(void);

const VideoOutputInfo *
video_output_lookup(const gchar *output_name);

GstVaapiDisplay *
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 */