diff options
author | İsmail Dönmez <ismail@namtrac.org> | 2007-07-13 13:04:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-07-13 13:04:55 +0000 |
commit | 63e24954beb7a7b6528ea830b6f224f19083f5f6 (patch) | |
tree | 20a919359918fe1be54341970140823837e50297 /libavcodec/vc1.c | |
parent | ef466de0a87c6436cb5a33577c168088db32c65d (diff) | |
download | ffmpeg-63e24954beb7a7b6528ea830b6f224f19083f5f6.tar.gz |
Replace non-existing @fixme doxygen tags with @todo.
patch by Ismail Dönmez, ismail pardus.org tr
Originally committed as revision 9625 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index a0703d2033..f23233934a 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -44,7 +44,7 @@ static const uint16_t table_mb_intra[64][2]; /** * Get unary code of limited length - * @fixme FIXME Slow and ugly + * @todo FIXME Slow and ugly * @param gb GetBitContext * @param[in] stop The bitstop value (unary code of 1's or 0's) * @param[in] len Maximum length @@ -209,7 +209,7 @@ static void decode_rowskip(uint8_t* plane, int width, int height, int stride, Ge * @param[in] width Width of this buffer * @param[in] height Height of this buffer * @param[in] stride of this buffer - * @fixme FIXME: Optimize + * @todo FIXME: Optimize */ static void decode_colskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){ int x, y; @@ -229,7 +229,7 @@ static void decode_colskip(uint8_t* plane, int width, int height, int stride, Ge * @param bp Bitplane where to store the decode bits * @param v VC-1 context for bit reading and logging * @return Status - * @fixme FIXME: Optimize + * @todo FIXME: Optimize */ static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v) { |