~ubuntu-branches/ubuntu/vivid/gstreamer-vaapi/vivid

« back to all changes in this revision

Viewing changes to gst-libs/gst/vaapi/video-format.h

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2014-08-06 23:56:00 UTC
  • mfrom: (0.1.4 sid) (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140806235600-fg1kcmiu67k315q5
Tags: 0.5.9-2
* Remove spurious build-deps: libva-drm1, libavcodec-dev. (Closes: #757283)
* Drop Build-Depends-Indep and build docs unconditionally on all archs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#ifndef GST_VAAPI_VIDEO_FORMAT_H
26
26
#define GST_VAAPI_VIDEO_FORMAT_H
27
27
 
28
 
#include <gst/gstvalue.h>
29
28
#include <gst/video/video.h>
30
29
 
31
30
G_BEGIN_DECLS
32
31
 
33
32
GstVideoFormat
34
 
gst_vaapi_video_format_from_string(const gchar *str);
35
 
 
36
 
const char *
37
 
gst_vaapi_video_format_to_string(GstVideoFormat format);
38
 
 
39
 
gboolean
40
 
gst_vaapi_video_format_is_rgb(GstVideoFormat format);
41
 
 
42
 
gboolean
43
 
gst_vaapi_video_format_is_yuv(GstVideoFormat format);
44
 
 
45
 
GstVideoFormat
46
 
gst_vaapi_video_format_from_structure(GstStructure *structure);
47
 
 
48
 
GstVideoFormat
49
 
gst_vaapi_video_format_from_caps(GstCaps *caps);
50
 
 
51
 
GstCaps *
52
 
gst_vaapi_video_format_to_caps(GstVideoFormat format);
53
 
 
54
 
GstVideoFormat
55
 
gst_vaapi_video_format_from_va_fourcc(guint32 fourcc);
56
 
 
57
 
GstVideoFormat
58
 
gst_vaapi_video_format_from_va_format(const VAImageFormat *va_format);
 
33
gst_vaapi_video_format_from_string (const gchar * str);
 
34
 
 
35
const gchar *
 
36
gst_vaapi_video_format_to_string (GstVideoFormat format);
 
37
 
 
38
gboolean
 
39
gst_vaapi_video_format_is_rgb (GstVideoFormat format);
 
40
 
 
41
gboolean
 
42
gst_vaapi_video_format_is_yuv (GstVideoFormat format);
 
43
 
 
44
GstVideoFormat
 
45
gst_vaapi_video_format_from_va_fourcc (guint32 fourcc);
 
46
 
 
47
GstVideoFormat
 
48
gst_vaapi_video_format_from_va_format (const VAImageFormat * va_format);
59
49
 
60
50
const VAImageFormat *
61
 
gst_vaapi_video_format_to_va_format(GstVideoFormat format);
62
 
 
63
 
guint
64
 
gst_vaapi_video_format_get_chroma_type(GstVideoFormat format);
65
 
 
66
 
guint
67
 
gst_vaapi_video_format_get_score(GstVideoFormat format);
 
51
gst_vaapi_video_format_to_va_format (GstVideoFormat format);
 
52
 
 
53
guint
 
54
gst_vaapi_video_format_get_chroma_type (GstVideoFormat format);
 
55
 
 
56
guint
 
57
gst_vaapi_video_format_get_score (GstVideoFormat format);
68
58
 
69
59
G_END_DECLS
70
60