~ubuntu-branches/ubuntu/edgy/gstreamer0.10-ffmpeg/edgy

« back to all changes in this revision

Viewing changes to common/m4/gst-glib2.m4

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-04-01 16:13:43 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060401161343-08cyx5z9c530gtrd
Tags: 0.10.1-0ubuntu1
* New upstream release:
  Features since 0.10.0:
    + Parallel installability with 0.8.x series
    + Threadsafe design and API
    + ffvideoscale ported
    + ffdeinterlace ported
    + demuxer wrapper works pull-based
    + disabled mpeg2 video and mp3 audio autoplugging
    + fixes for Indeo3, PNG, smc, H264 HD, H263, FLV1, G2
  Bugs fixed since 0.10.0:
    + [ffdemux_mp3] ffmpeg mp3 decoder miss seeking
    + Reading mpeg-ts stream from standard input does not work
    + configure script doesn't accept --with-pkg-config-path ar...
    + Fails to build under powerpc
    + avcodec_open()/close() aren't thread-safe
    + [ffdec_cinepak] chef.avi causes gstreamer to hang in preroll
    + Indeo AVI files do not play with 0.10
    + [ffdec] Memory leak when joining pcache
    + MS Video 1 palettized AVI doesn't work
    + ffdeinterlace port to 0.10
    + [ffmpegenc] FFMpeg audio encoders do not set caps to buffers
    + gstreamer CVS doesn't work with ffmpeg codecs
    + Wrap the ffmpeg demuxers
    + [ffdec_h264] seeking in " IntoTheBlue_Cin_AVC.mp4 " crashes...
    + Too fast playback of h263p encoded file
    + FFmpeg video scale port to 0.10
    + segfault in ffmpeg enc
    + Memory leak in ffmpegenc
    + [CVE-2005-4048] avcodec_default_get_buffer heap overflow
* debian/patches/32_CVE-2005-4048_avcodec-default-get-buffer-heap-overflow.patch:
  - Dropped, this is upstream now

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl check for a minimum version of GLib
 
2
 
 
3
dnl GST_GLIB_CHECK([minimum-version-required])
 
4
 
 
5
AC_DEFUN([GST_GLIB_CHECK],
 
6
[
 
7
  dnl Minimum required version of GLib
 
8
  GLIB_REQ=[$1]
 
9
  if test "x$GLIB_REQ" = "x"
 
10
  then
 
11
    AC_MSG_ERROR([Please specify a required version for [GST_GLIB_CHECK]])
 
12
  fi
 
13
  AC_SUBST(GLIB_REQ)
 
14
 
 
15
  dnl Check for glib with everything
 
16
  PKG_CHECK_MODULES(GLIB,
 
17
    glib-2.0 >= $GLIB_REQ gobject-2.0 gthread-2.0 gmodule-2.0,
 
18
    HAVE_GLIB=yes,HAVE_GLIB=no)
 
19
 
 
20
  if test "x$HAVE_GLIB" = "xno"; then
 
21
    AC_MSG_ERROR([This package requires GLib >= $GLIB_REQ to compile.])
 
22
  fi
 
23
 
 
24
  dnl for the poor souls who for example have glib in /usr/local
 
25
  AS_SCRUB_INCLUDE(GLIB_CFLAGS)
 
26
])