mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-14 15:43:03 +00:00
jpegdec: Pull row_stride from GST_VIDEO_FRAME_PLANE_STRIDE()
The libjpeg-turbo internal state might not be correctly initialized for
the first frame in a stream, pull the frame stride from gstreamer frame
metadata instead, which is correct even for the first frame, and which
makes this code consistent with the surrounding lines.
Fixes: e6d83d8f96
("jpegdec: Support libjpeg-turbo colorspace conversion")
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1687>
This commit is contained in:
parent
d277002186
commit
c9e108378a
1 changed files with 1 additions and 1 deletions
|
@ -915,7 +915,7 @@ gst_jpeg_dec_decode_direct (GstJpegDec * dec, GstVideoFrame * frame,
|
||||||
|
|
||||||
#ifdef JCS_EXTENSIONS
|
#ifdef JCS_EXTENSIONS
|
||||||
if (dec->format_convert) {
|
if (dec->format_convert) {
|
||||||
gint row_stride = dec->cinfo.output_width * dec->cinfo.output_components;
|
gint row_stride = GST_VIDEO_FRAME_PLANE_STRIDE (frame, 0);
|
||||||
guchar *bufbase = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
guchar *bufbase = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
||||||
|
|
||||||
if (num_fields == 2) {
|
if (num_fields == 2) {
|
||||||
|
|
Loading…
Reference in a new issue