git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
149ad67
)
vertical align
author
Michael Niedermayer
<michaelni@gmx.at>
Fri, 9 Nov 2007 21:56:18 +0000
(21:56 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Fri, 9 Nov 2007 21:56:18 +0000
(21:56 +0000)
Originally committed as revision 10981 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/intrax8.c
patch
|
blob
|
history
diff --git
a/libavcodec/intrax8.c
b/libavcodec/intrax8.c
index
3ab2b6d
..
1f006f9
100644
(file)
--- a/
libavcodec/intrax8.c
+++ b/
libavcodec/intrax8.c
@@
-653,7
+653,7
@@
static inline void x8_init_block_index(MpegEncContext *s){ //FIXME maybe merge w
s->dest[1] = s->current_picture.data[1];
s->dest[2] = s->current_picture.data[2];
- s->dest[0] +=
s->mb_y
* linesize << 3;
+ s->dest[0] +=
s->mb_y
* linesize << 3;
s->dest[1] += ( s->mb_y&(~1) ) * uvlinesize << 2;//chroma blocks are on add rows
s->dest[2] += ( s->mb_y&(~1) ) * uvlinesize << 2;
}