This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Fixed typo which caused incorrect motion prediction in B-frames. patch by (Loren Merritt <lorenm ta u tod washington tod edu>)
Originally committed as revision 3709 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Loren Merritt
Michael Niedermayer
21 years ago
parent
6db2583c4f
commit
7d7f635dc0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/h264.c
+ 1
- 1
libavcodec/h264.c
View File
@@ -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 ...
Write
Preview
Loading…
Cancel
Save