projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6db2583
)
Fixed typo which caused incorrect motion prediction in B-frames. patch by (Loren...
author
Loren Merritt
<lorenm@u.washington.edu>
Wed, 24 Nov 2004 22:50:49 +0000
(22:50 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Wed, 24 Nov 2004 22:50:49 +0000
(22:50 +0000)
Originally committed as revision 3709 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/h264.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/h264.c
b/libavcodec/h264.c
index
1ea4289
..
38d5beb
100644
(file)
--- a/
libavcodec/h264.c
+++ b/
libavcodec/h264.c
@@
-1017,7
+1017,7
@@
static inline void write_back_motion(H264Context *h, int mb_type){
}
}
for(y=0; y<2; y++){
- *(uint16_t*)
s->current_picture.motion_val
[list][b8_xy + y*h->b8_stride]= (LIST_NOT_USED&0xFF)*0x0101;
+ *(uint16_t*)
&s->current_picture.ref_index
[list][b8_xy + y*h->b8_stride]= (LIST_NOT_USED&0xFF)*0x0101;
}
}
continue; //FIXME direct mode ...