diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-26 13:28:55 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-26 13:28:55 +0000 |
commit | 66472bcde033128f410768851932c3071297a9d3 (patch) | |
tree | 8b539294c8b0519999264337883c3305d079d612 /libavcodec | |
parent | 3046c25ec545941538ec213fa1180ead4524668c (diff) | |
download | ffmpeg-66472bcde033128f410768851932c3071297a9d3.tar.gz |
cosmetic
Originally committed as revision 21454 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 71143c153c..b49f6cc6f5 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -799,7 +799,7 @@ static av_always_inline int fill_caches(H264Context *h, int mb_type, int for_deb int qp = s->current_picture.qscale_table[mb_xy]; if(qp <= qp_thresh && (left_xy[0]<0 || ((qp + s->current_picture.qscale_table[left_xy[0]] + 1)>>1) <= qp_thresh) - && (top_xy < 0 || ((qp + s->current_picture.qscale_table[top_xy ] + 1)>>1) <= qp_thresh)){ + && (top_xy < 0 || ((qp + s->current_picture.qscale_table[top_xy ] + 1)>>1) <= qp_thresh)){ if(!FRAME_MBAFF) return 1; if( (left_xy[0]< 0 || ((qp + s->current_picture.qscale_table[left_xy[0]+s->mb_stride] + 1)>>1) <= qp_thresh) |