diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-01-27 07:32:19 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-01-27 07:32:19 +0000 |
commit | 5b791c2ce5b905e8a0521732dc9c08f85551520d (patch) | |
tree | 39d56595dfc1a6e419d75890d09455e6d62a817c /ext/mpeg2enc/gstmpeg2encpicturereader.cc | |
parent | 1a787a0cb2fb2afa3bd7aa21ffac1465130699c2 (diff) | |
download | gst-plugins-bad-5b791c2ce5b905e8a0521732dc9c08f85551520d.tar.gz gst-plugins-bad-5b791c2ce5b905e8a0521732dc9c08f85551520d.tar.bz2 gst-plugins-bad-5b791c2ce5b905e8a0521732dc9c08f85551520d.zip |
Add support for building against mjpegtools 1.9 while keeping compatiblity with older versions.
Original commit message from CVS:
Based on a patch by:
Hans de Goede <j dot w dot r dot degoede at hhs dot nl>
* configure.ac:
* ext/mpeg2enc/gstmpeg2encoder.cc:
* ext/mpeg2enc/gstmpeg2encpicturereader.cc:
* ext/mpeg2enc/gstmpeg2encpicturereader.hh:
Add support for building against mjpegtools 1.9 while keeping
compatiblity with older versions.
Diffstat (limited to 'ext/mpeg2enc/gstmpeg2encpicturereader.cc')
-rw-r--r-- | ext/mpeg2enc/gstmpeg2encpicturereader.cc | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/ext/mpeg2enc/gstmpeg2encpicturereader.cc b/ext/mpeg2enc/gstmpeg2encpicturereader.cc index 9bc59edf..57f95ccd 100644 --- a/ext/mpeg2enc/gstmpeg2encpicturereader.cc +++ b/ext/mpeg2enc/gstmpeg2encpicturereader.cc @@ -25,6 +25,10 @@ #include <encoderparams.hh> +#ifdef GST_MJPEGTOOLS_19x +#include <imageplanes.hh> +#endif + #include "gstmpeg2enc.hh" #include "gstmpeg2encpicturereader.hh" @@ -79,9 +83,17 @@ GstMpeg2EncPictureReader::StreamPictureParams (MPEG2EncInVidParams & strm) */ bool -GstMpeg2EncPictureReader::LoadFrame () +#ifdef GST_MJPEGTOOLS_19x + GstMpeg2EncPictureReader::LoadFrame (ImagePlanes & image) +#else + GstMpeg2EncPictureReader::LoadFrame () +#endif { - gint i, x, y, n; + +#ifndef GST_MJPEGTOOLS_19x + gint n; +#endif + gint i, x, y; guint8 *frame; GstMpeg2enc *enc; @@ -100,23 +112,39 @@ GstMpeg2EncPictureReader::LoadFrame () } frame = GST_BUFFER_DATA (enc->buffer); +#ifndef GST_MJPEGTOOLS_19x n = frames_read % input_imgs_buf_size; +#endif x = encparams.horizontal_size; y = encparams.vertical_size; for (i = 0; i < y; i++) { +#ifdef GST_MJPEGTOOLS_19x + memcpy (image.Plane (0) + i * encparams.phy_width, frame, x); +#else memcpy (input_imgs_buf[n][0] + i * encparams.phy_width, frame, x); +#endif frame += x; } +#ifndef GST_MJPEGTOOLS_19x lum_mean[n] = LumMean (input_imgs_buf[n][0]); +#endif x >>= 1; y >>= 1; for (i = 0; i < y; i++) { +#ifdef GST_MJPEGTOOLS_19x + memcpy (image.Plane (1) + i * encparams.phy_chrom_width, frame, x); +#else memcpy (input_imgs_buf[n][1] + i * encparams.phy_chrom_width, frame, x); +#endif frame += x; } for (i = 0; i < y; i++) { +#ifdef GST_MJPEGTOOLS_19x + memcpy (image.Plane (2) + i * encparams.phy_chrom_width, frame, x); +#else memcpy (input_imgs_buf[n][2] + i * encparams.phy_chrom_width, frame, x); +#endif frame += x; } gst_buffer_unref (enc->buffer); |