forked from i-rinat/libvdpau-va-gl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
reverse-constant.h
32 lines (28 loc) · 1.38 KB
/
reverse-constant.h
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
/*
* Copyright 2013 Rinat Ibragimov
*
* This file is part of libvdpau-va-gl
*
* libvdpau-va-gl distributed under the terms of LGPLv3. See COPYING for details.
*/
#pragma once
#ifndef REVERSE_CONSTANT_H_
#define REVERSE_CONSTANT_H_
#include <vdpau/vdpau.h>
const char * reverse_status(VdpStatus status);
const char * reverse_func_id(VdpFuncId func_id);
const char * reverse_video_mixer_feature(VdpVideoMixerFeature mixer_feature);
const char * reverse_video_mixer_parameter(VdpVideoMixerParameter parameter);
const char * reverse_video_mixer_attribute(VdpVideoMixerAttribute attr);
const char * reverse_rgba_format(VdpRGBAFormat rgba_format);
const char * reverse_chroma_type(VdpChromaType chroma_type);
const char * reverse_ycbcr_format(VdpYCbCrFormat ycbcr_format);
const char * reverser_video_mixer_picture_structure(VdpVideoMixerPictureStructure s);
const char * reverse_blend_factor(VdpOutputSurfaceRenderBlendFactor blend_factor);
const char * reverse_blend_equation(VdpOutputSurfaceRenderBlendEquation blend_equation);
const char * reverse_decoder_profile(VdpDecoderProfile profile);
const char * reverse_indexed_format(VdpIndexedFormat indexed_format);
const char * reverse_color_table_format(VdpColorTableFormat color_table_format);
const char * reverse_color_standard(VdpColorStandard color_standard);
const char * reverse_output_surface_render_rotate(int flags);
#endif /* REVERSE_CONSTANT_H_ */