diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-18 00:21:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-18 00:21:58 +0000 |
commit | 12be38ec18acc09c1701ed783d49bed261793a29 (patch) | |
tree | d0004d15dce138d7c18668654b639dbeadbe3ce5 | |
parent | 44a5e7b64c1e12b373aca3266d086de4e50c94d3 (diff) | |
download | ffmpeg-12be38ec18acc09c1701ed783d49bed261793a29.tar.gz |
Comment about a cornercase we ignore currently
Originally committed as revision 21275 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 1cc0f877ca..2bbd744398 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 //for sufficiently low qp, filtering wouldn't do anything //this is a conservative estimate: could also check beta_offset and more accurate chroma_qp if(!FRAME_MBAFF){ - int qp_thresh = h->qp_thresh; + int qp_thresh = h->qp_thresh; //FIXME strictly we should store qp_thresh for each mb of a slice int qp = s->current_picture.qscale_table[mb_xy]; if(qp <= qp_thresh && (s->mb_x == 0 || ((qp + s->current_picture.qscale_table[mb_xy-1] + 1)>>1) <= qp_thresh) |