diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-12 23:58:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-12 23:58:46 +0000 |
commit | 2cab640129cad86f376f5bd62dbf345b3d36ec7c (patch) | |
tree | 35c90a0be098a90780929de36ed81e23c8962cfe /libavcodec/h264.c | |
parent | 88a7a2dc6c2e8f7ad79afeeeab78cac033b1f4ca (diff) | |
download | ffmpeg-2cab640129cad86f376f5bd62dbf345b3d36ec7c.tar.gz |
typo fixes
Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 0f4b613e59..014a292359 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -91,7 +91,8 @@ static void fill_caches(H264Context *h, int mb_type, int for_deblock){ if(for_deblock && (h->slice_num == 1 || h->slice_table[mb_xy] == h->slice_table[top_xy]) && !FRAME_MBAFF) return; - //wow what a mess, why didn't they simplify the interlacing&intra stuff, i can't imagine that these complex rules are worth it + /* Wow, what a mess, why didn't they simplify the interlacing & intra + * stuff, I can't imagine that these complex rules are worth it. */ topleft_xy = top_xy - 1; topright_xy= top_xy + 1; @@ -1589,7 +1590,7 @@ static inline int get_chroma_qp(H264Context *h, int t, int qscale){ return h->pps.chroma_qp_table[t][qscale & 0xff]; } -//FIXME need to check that this does not overflow signed 32 bit for low qp, i am not sure, it's very close +//FIXME need to check that this does not overflow signed 32 bit for low qp, I am not sure, it's very close //FIXME check that gcc inlines this (and optimizes intra & separate_dc stuff away) static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, int intra, int separate_dc){ int i; |