mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
openjpegenc: store stripe offset when encoding image
The decoder can simply read this offset after decoding to know where to blit the stripe to the full frame Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1800>
This commit is contained in:
parent
af87da86e2
commit
330b2c6b7c
1 changed files with 0 additions and 14 deletions
|
@ -415,8 +415,6 @@ fill_image_packed16_4 (opj_image_t * image, GstVideoFrame * frame)
|
|||
}
|
||||
data_in += sstride;
|
||||
}
|
||||
image->y1 -= image->y0;
|
||||
image->y0 = 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -455,8 +453,6 @@ fill_image_packed8_4 (opj_image_t * image, GstVideoFrame * frame)
|
|||
}
|
||||
data_in += sstride;
|
||||
}
|
||||
image->y1 -= image->y0;
|
||||
image->y0 = 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -492,8 +488,6 @@ fill_image_packed8_3 (opj_image_t * image, GstVideoFrame * frame)
|
|||
}
|
||||
data_in += sstride;
|
||||
}
|
||||
image->y1 -= image->y0;
|
||||
image->y0 = 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -525,8 +519,6 @@ fill_image_planar16_3 (opj_image_t * image, GstVideoFrame * frame)
|
|||
data_in += sstride;
|
||||
}
|
||||
}
|
||||
image->y1 -= image->y0;
|
||||
image->y0 = 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -558,8 +550,6 @@ fill_image_planar8_3 (opj_image_t * image, GstVideoFrame * frame)
|
|||
data_in += sstride;
|
||||
}
|
||||
}
|
||||
image->y1 -= image->y0;
|
||||
image->y0 = 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -588,8 +578,6 @@ fill_image_planar8_1 (opj_image_t * image, GstVideoFrame * frame)
|
|||
}
|
||||
data_in += sstride;
|
||||
}
|
||||
image->y1 -= image->y0;
|
||||
image->y0 = 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -618,8 +606,6 @@ fill_image_planar16_1 (opj_image_t * image, GstVideoFrame * frame)
|
|||
}
|
||||
data_in += sstride;
|
||||
}
|
||||
image->y1 -= image->y0;
|
||||
image->y0 = 0;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue