diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2008-02-04 13:12:09 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2008-02-04 13:12:09 +0000 |
commit | 8ab9eb5fa95a913a1a4ff9a773d0073b17b481f5 (patch) | |
tree | 63030b2fdb94d575e3c03b440cf06aa9bca06505 /ext | |
parent | aa4139370a3f075b859f93f7c4a159ad5eca6c2d (diff) | |
download | gstreamer-plugins-bad-8ab9eb5fa95a913a1a4ff9a773d0073b17b481f5.tar.gz |
ext/mpeg2enc/gstmpeg2encpicturereader.cc: Fix compilation with libmjpegtools 1.8.x.
Original commit message from CVS:
* ext/mpeg2enc/gstmpeg2encpicturereader.cc:
(GstMpeg2EncPictureReader.StreamPictureParams):
Fix compilation with libmjpegtools 1.8.x.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mpeg2enc/gstmpeg2encpicturereader.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/mpeg2enc/gstmpeg2encpicturereader.cc b/ext/mpeg2enc/gstmpeg2encpicturereader.cc index 7b6cfbb7a..35b599dd3 100644 --- a/ext/mpeg2enc/gstmpeg2encpicturereader.cc +++ b/ext/mpeg2enc/gstmpeg2encpicturereader.cc @@ -97,9 +97,15 @@ GstMpeg2EncPictureReader::StreamPictureParams (MPEG2EncInVidParams & strm) strm.aspect_ratio_code = mpeg_guess_mpeg_aspect_code (2, par, strm.horizontal_size, strm.vertical_size); + +#ifdef GST_MJPEGTOOLS_19x GST_DEBUG_OBJECT (element, "Guessing aspect ratio code for PAR %d/%d " "MPEG version %d yielded: %d", par.n, par.d, mpeg_version, strm.aspect_ratio_code); +#else + GST_DEBUG_OBJECT (element, "Guessing aspect ratio code for PAR %d/%d " + "yielded: %d", par.n, par.d, strm.aspect_ratio_code); +#endif } /* |