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

« back to all changes in this revision

Viewing changes to tests/examples/camerabin/Makefile.am

  • 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:
1
 
GST_CAMERABIN_GLADE_FILES = gst-camera.glade
 
1
GST_CAMERABIN_UI_FILES = gst-camera.ui
2
2
 
3
 
if HAVE_GLADE
4
3
if HAVE_GTK
5
4
 
6
5
GST_CAMERABIN_GTK_EXAMPLES = gst-camera
8
7
gst_camera_SOURCES = gst-camera.c
9
8
gst_camera_CFLAGS  = \
10
9
        -I$(top_builddir)/gst-libs \
11
 
        $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(GLADE_CFLAGS) \
 
10
        $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
 
11
        $(GTK_CFLAGS) \
 
12
        $(GMODULE_EXPORT_CFLAGS) \
12
13
        -DGST_USE_UNSTABLE_API
13
14
gst_camera_LDADD   = \
14
15
        $(top_builddir)/gst-libs/gst/interfaces/libgstphotography-@GST_MAJORMINOR@.la \
15
16
        $(GST_PLUGINS_BASE_LIBS) \
16
17
        -lgstinterfaces-@GST_MAJORMINOR@ \
17
18
        $(GST_LIBS) \
18
 
        $(GLADE_LIBS) 
19
 
 
20
 
gladedir = $(datadir)/gstreamer-@GST_MAJORMINOR@/camera-apps
21
 
glade_DATA = $(GST_CAMERABIN_GLADE_FILES)
22
 
 
23
 
INCLUDES = -DCAMERA_APPS_GLADEDIR=\""$(gladedir)"\" 
24
 
 
25
 
else
26
 
GST_CAMERABIN_GTK_EXAMPLES =
27
 
endif
 
19
        $(GTK_LIBS) \
 
20
        $(GMODULE_EXPORT_LIBS)
 
21
 
 
22
uidir = $(datadir)/gstreamer-@GST_MAJORMINOR@/camera-apps
 
23
ui_DATA = $(GST_CAMERABIN_UI_FILES)
 
24
 
 
25
INCLUDES = -DCAMERA_APPS_UIDIR=\""$(uidir)"\"
 
26
 
28
27
else
29
28
GST_CAMERABIN_GTK_EXAMPLES =
30
29
endif
35
34
 
36
35
bin_PROGRAMS = gst-camera-perf $(GST_CAMERABIN_GTK_EXAMPLES)
37
36
 
38
 
EXTRA_DIST = $(GST_CAMERABIN_GLADE_FILES)
 
37
EXTRA_DIST = $(GST_CAMERABIN_UI_FILES)
39
38