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

« back to all changes in this revision

Viewing changes to gst/camerabin/camerabinvideo.h

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2010-03-13 22:48:10 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20100313224810-8l25xl017imj7z4l
Tags: 0.10.18-0ubuntu1
* New upstream bugfix release.
* Relevant upstream fixes
  - 598350 : qtmux with AAC streams (from faac) generate invalid files
  - 607105 : faac doesn't negotiate channel positions correctly
  - 606726 : FAAC bitrate setting has no effect

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <gst/gstbin.h>
25
25
 
 
26
#include "gstcamerabin-enum.h"
 
27
 
26
28
G_BEGIN_DECLS
27
 
//#define USE_TIMEOVERLAY 1
28
29
#define ARG_DEFAULT_MUTE FALSE
29
30
#define GST_TYPE_CAMERABIN_VIDEO             (gst_camerabin_video_get_type())
30
31
#define GST_CAMERABIN_VIDEO_CAST(obj)        ((GstCameraBinVideo*)(obj))
89
90
  gulong vid_sink_probe_id;
90
91
 
91
92
  gboolean mute;
 
93
  GstCameraBinFlags flags;
92
94
};
93
95
 
94
96
struct _GstCameraBinVideoClass
121
123
gst_camerabin_video_set_audio_src (GstCameraBinVideo * vid,
122
124
    GstElement * audio_src);
123
125
 
 
126
void
 
127
gst_camerabin_video_set_flags (GstCameraBinVideo * vid,
 
128
    GstCameraBinFlags flags);
 
129
 
124
130
 
125
131
gboolean gst_camerabin_video_get_mute (GstCameraBinVideo * vid);
126
132