~ubuntu-branches/ubuntu/karmic/gst-plugins-bad0.10/karmic-proposed

« back to all changes in this revision

Viewing changes to gst/camerabin/gstcamerabin.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge, Fabian Greffrath, Sebastian Dröge
  • Date: 2009-05-12 09:51:24 UTC
  • mfrom: (18.3.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20090512095124-6h887drc2pk2imm3
Tags: 0.10.11.2-1
[ Fabian Greffrath ]
* debian/TODO.Debian:
  + Removed, I don't think any of these things are still relevant.

[ Sebastian Dröge ]
* New upstream pre-release:
  + debian/build-deps.in,
    debian/rules:
    - Update build dependencies.
  + debian/gstreamer-plugins-bad.install:
    - Add new debugutilsbad plugin.
* debian/build-deps.in:
  + Use unversioned libjack-dev b-d (Closes: #526109).

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include "camerabinvideo.h"
33
33
 
34
34
G_BEGIN_DECLS
35
 
 
36
35
/* #defines don't like whitespacey bits */
37
36
#define GST_TYPE_CAMERABIN \
38
37
  (gst_camerabin_get_type())
44
43
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_CAMERABIN))
45
44
#define GST_IS_CAMERABIN_CLASS(klass) \
46
45
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_CAMERABIN))
47
 
 
48
46
typedef struct _GstCameraBin GstCameraBin;
49
47
typedef struct _GstCameraBinClass GstCameraBinClass;
50
48
 
147
145
 
148
146
  /* signals (callback) */
149
147
 
150
 
    gboolean (*img_done) (GstCameraBin * camera, GString * filename);
 
148
    gboolean (*img_done) (GstCameraBin * camera, const gchar * filename);
151
149
};
152
150
 
153
151
/**
166
164
GType gst_camerabin_get_type (void);
167
165
 
168
166
G_END_DECLS
169
 
 
170
167
#endif /* #ifndef __GST_CAMERABIN_H__ */