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:
Sebastian Dröge 2008-05-13 09:14:44 +00:00
parent 1a154e1d3d
commit 4d5870847f
2 changed files with 7 additions and 0 deletions

View file

@ -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>

View file

@ -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) {