aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/motion_est.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-11-28 22:09:09 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-11-28 22:09:09 +0000
commitd3985de709a44e5ab5524a01f2258db7e39d8ad3 (patch)
tree0385c142deab62a6943b089d23a23a5f3b743246 /libavcodec/motion_est.c
parentf7190f739961a0247541d7f8d09e202401b2ea92 (diff)
downloadffmpeg-d3985de709a44e5ab5524a01f2258db7e39d8ad3.tar.gz
cleanup
Originally committed as revision 2537 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/motion_est.c')
-rw-r--r--libavcodec/motion_est.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c
index 6f8d81b688..5a74cb2ce1 100644
--- a/libavcodec/motion_est.c
+++ b/libavcodec/motion_est.c
@@ -1616,7 +1616,7 @@ int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type)
int x;
int xy= y*s->mb_stride;
for(x=0; x<s->mb_width; x++){
- if((s->mb_type[xy] & type) || (s->mb_type[xy] & MB_TYPE_INTRA)){ //FIXME
+ if(s->mb_type[xy] & type){
int fcode= FFMAX(fcode_tab[mv_table[xy][0] + MAX_MV],
fcode_tab[mv_table[xy][1] + MAX_MV]);
int j;