~ubuntu-branches/ubuntu/quantal/gst-plugins-bad-multiverse0.10/quantal

« back to all changes in this revision

Viewing changes to gst/rawparse/gstvideoparse.h

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-12-07 08:54:28 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20091207085428-ml6aaukf0p2ph34d
Tags: 0.10.17-0ubuntu1
* New upstream release.
* Add myself to maintainer.
* Fix misc lintian warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GStreamer
2
2
 * Copyright (C) 2006 David A. Schleef <ds@schleef.org>
3
 
 * Copyright (C) 2007 Sebastian Dröge <slomo@circular-chaos.org>
 
3
 * Copyright (C) 2007,2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
4
4
 *
5
5
 * gstvideoparse.h:
6
6
 *
49
49
  GstRawParse parent;
50
50
 
51
51
  /* properties */
52
 
  int width;
53
 
  int height;
54
 
  guint32 format;
55
 
  int par_n;
56
 
  int par_d;
 
52
  GstVideoFormat format;
 
53
  gint width;
 
54
  gint height;
 
55
  gint par_n, par_d;
57
56
  gboolean interlaced;
58
57
  gboolean top_field_first;
59
 
  int bpp;
60
 
  int depth;
61
 
  int endianness;
62
 
  int red_mask;
63
 
  int blue_mask;
64
 
  int green_mask;
65
 
  int alpha_mask;
66
58
};
67
59
 
68
60
struct _GstVideoParseClass