projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef42a16
)
video-format: fix GBR unpack
author
Wim Taymans
<wtaymans@redhat.com>
Mon, 26 Jan 2015 11:52:40 +0000
(12:52 +0100)
committer
Wim Taymans
<wtaymans@redhat.com>
Tue, 27 Jan 2015 09:52:29 +0000
(10:52 +0100)
gst-libs/gst/video/video-format.c
patch
|
blob
|
history
diff --git
a/gst-libs/gst/video/video-format.c
b/gst-libs/gst/video/video-format.c
index a1578daff66079703820e7c65a9b6be181129a37..1fa8129d78302e4ee9658baacfccb963351f6478 100644
(file)
--- a/
gst-libs/gst/video/video-format.c
+++ b/
gst-libs/gst/video/video-format.c
@@
-776,9
+776,9
@@
unpack_GBR (const GstVideoFormatInfo * info, GstVideoPackFlags flags,
const guint8 *restrict sg = GET_G_LINE (y);
const guint8 *restrict sb = GET_B_LINE (y);
- sr += x
* 4
;
- sg += x
* 4
;
- sb += x
* 4
;
+ sr += x;
+ sg += x;
+ sb += x;
video_orc_unpack_Y444 (dest, sr, sg, sb, width);
}