mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 07:09:56 +00:00
gst/ffmpegcolorspace/imgconvert.c: Fix nv12<->nv21 conversion if stride is larger than width.
Original commit message from CVS: * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21): Fix nv12<->nv21 conversion if stride is larger than width.
This commit is contained in:
parent
1a154e1d3d
commit
4d5870847f
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-05-13 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
|
||||
Fix nv12<->nv21 conversion if stride is larger than width.
|
||||
|
||||
2008-05-13 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
Patch by: j^ <j at oil21 dot org>
|
||||
|
|
|
@ -1129,6 +1129,8 @@ nv12_to_nv21 (AVPicture * dst, const AVPicture * src, int width, int height)
|
|||
s_c_ptr += 2;
|
||||
d_c_ptr += 2;
|
||||
}
|
||||
s_c_ptr += src->linesize[1] - width;
|
||||
d_c_ptr += src->linesize[1] - width;
|
||||
}
|
||||
/* handle odd height */
|
||||
if (height) {
|
||||
|
|
Loading…
Reference in a new issue