GStreamer multimedia framework
Find a file
Julien Moutte ad60e7cb34 ext/ffmpeg/gstffmpegcolorspace.c: Fixing the pad_alloc_buffer implementation to use ->srcpad
Original commit message from CVS:
2004-01-11  Julien MOUTTE  <julien@moutte.net>

* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
pad_alloc_buffer implementation to use ->srcpad
* ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
pad_alloc_buffer implementation to use ->srcpad
* gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
pad_alloc_buffer implementation to use ->srcpad
* sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
(gst_ximagesink_chain), (gst_ximagesink_buffer_free),
(gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
a reference to everything we need.
* sys/ximage/ximagesink.h: adding a reference to the sink in the image.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
(gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
(gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
a reference to everything we need.
* sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
2004-01-11 22:52:28 +00:00
common@cd5507ae3d Fix small typo in RGB32LE red-mask check 2003-12-17 22:38:22 +00:00
ext/ffmpeg ext/ffmpeg/gstffmpegcolorspace.c: Fixing the pad_alloc_buffer implementation to use ->srcpad 2004-01-11 22:52:28 +00:00
gst-libs sandbox to get ffmpeg to play nicely in all cases 2003-12-09 15:59:48 +00:00
m4 sandbox to get ffmpeg to play nicely in all cases 2003-12-09 15:59:48 +00:00
.gitmodules removal of //-style comments don't link plugins to core libs -- the versioning is done internally to the plugins with... 2002-03-19 04:09:41 +00:00
AUTHORS sandbox to get ffmpeg to play nicely in all cases 2003-12-09 15:59:48 +00:00
autogen.sh sandbox to get ffmpeg to play nicely in all cases 2003-12-09 15:59:48 +00:00
ChangeLog sandbox to get ffmpeg to play nicely in all cases 2003-12-09 15:59:48 +00:00
configure.ac tweaks 'n' docs 2003-12-09 17:29:20 +00:00
Makefile.am sandbox to get ffmpeg to play nicely in all cases 2003-12-09 15:59:48 +00:00
NEWS sandbox to get ffmpeg to play nicely in all cases 2003-12-09 15:59:48 +00:00
README tweaks 'n' docs 2003-12-09 17:29:20 +00:00

This is a sandbox module to test if our build setup for external libraries
(for example FFmpeg) is sane.

What we are trying to achieve:

satisfy:
  patching of CVS checkout using our patch files placed in our CVS

  passing of
    make
    make distcheck
    non-srcdir build (ie, mkdir build; cd build; ../configure; make)

How it works:

* configure checks whether or not it should update ffmpeg from CVS by looking
  at the nano version number
  - if it's 1, we're in cvs mode, and it should check it out
  - if it's not 1, we're in prerel or rel mode, and the code should already
    be on disk
    FIXME: we could change this to really check out the source code if some
    required files aren't there just in case someone checks out from CVS
    but CVS is not at nano 1

* patching of the checked-out copy happens at

Axioms under which we work:
- the dist tarball needs to include either
  - the pristine ffmpeg checkout + our patches + a patch mechanism on make
  or
  - the ffmpeg checkout with patches already applied

- configure/make is not allowed to touch files that already live in the source
  tree; if they need to then they need to be copied first and cleaned
  afterward

- it would be very nice if, on update of either the Tag file or the patch set,
  make would know exactly what to do with it.