~ubuntu-branches/ubuntu/feisty/gst-plugins-good0.10/feisty-security

« back to all changes in this revision

Viewing changes to gst/smpte/gstsmpte.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-12-21 21:12:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061221211215-3uukkusokhe0nk4f
Tags: 0.10.5-0ubuntu1
* Sync with pkg-gstreamer SVN:
  + debian/rules:
    - Use Ubuntu as distribution name and point to the proper Launchpad URL
  + debian/patches/01_esdsink-priority.patch:
    - Mark the esdsink with rank primary-2 to get
      pulse > alsadmix > esd > alsa > oss

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <gst/gst.h>
25
25
#include <gst/base/gstcollectpads.h>
26
26
 
 
27
G_BEGIN_DECLS
 
28
 
27
29
#include "gstmask.h"
28
30
 
29
31
#define GST_TYPE_SMPTE \
43
45
struct _GstSMPTE {
44
46
  GstElement     element;
45
47
 
46
 
  gint           format;
47
 
  gint           width;
48
 
  gint           height;
49
 
  gdouble        fps;
50
 
 
51
 
  gint           duration;
52
 
  gint           position;
53
 
 
 
48
  /* pads */
54
49
  GstPad        *srcpad,
55
50
                *sinkpad1,
56
51
                *sinkpad2;
57
 
 
58
52
  GstCollectPads *collect;
59
53
 
 
54
  /* properties */
60
55
  gint           type;
61
56
  gint           border;
62
57
  gint           depth;
 
58
  guint64        duration;
 
59
 
 
60
  /* negotiated format */
 
61
  gint           format;
 
62
  gint           width;
 
63
  gint           height;
 
64
  gdouble        fps;
 
65
  gint           fps_num;
 
66
  gint           fps_denom;
 
67
 
 
68
  /* state of the effect */
 
69
  gint           position;
 
70
  gint           end_position;
63
71
  GstMask       *mask;
64
72
};
65
73
 
67
75
  GstElementClass parent_class;
68
76
};
69
77
 
 
78
G_END_DECLS
70
79
#endif /* __GST_SMPTE_H__ */