Commit 0020c660 authored by diego's avatar diego

Replace non-existing @fixme doxygen tags with @todo.

patch by Ismail Dönmez, ismail pardus.org tr


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9625 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c451a5d6
...@@ -48,7 +48,7 @@ typedef struct AVOption { ...@@ -48,7 +48,7 @@ typedef struct AVOption {
/** /**
* short English text help. * short English text help.
* @fixme what about other languages * @todo what about other languages
*/ */
const char *help; const char *help;
int offset; ///< offset to context structure where the parsed value should be stored int offset; ///< offset to context structure where the parsed value should be stored
......
...@@ -44,7 +44,7 @@ static const uint16_t table_mb_intra[64][2]; ...@@ -44,7 +44,7 @@ static const uint16_t table_mb_intra[64][2];
/** /**
* Get unary code of limited length * Get unary code of limited length
* @fixme FIXME Slow and ugly * @todo FIXME Slow and ugly
* @param gb GetBitContext * @param gb GetBitContext
* @param[in] stop The bitstop value (unary code of 1's or 0's) * @param[in] stop The bitstop value (unary code of 1's or 0's)
* @param[in] len Maximum length * @param[in] len Maximum length
...@@ -209,7 +209,7 @@ static void decode_rowskip(uint8_t* plane, int width, int height, int stride, Ge ...@@ -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] width Width of this buffer
* @param[in] height Height of this buffer * @param[in] height Height of this buffer
* @param[in] stride 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){ static void decode_colskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
int x, y; int x, y;
...@@ -229,7 +229,7 @@ static void decode_colskip(uint8_t* plane, int width, int height, int stride, Ge ...@@ -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 bp Bitplane where to store the decode bits
* @param v VC-1 context for bit reading and logging * @param v VC-1 context for bit reading and logging
* @return Status * @return Status
* @fixme FIXME: Optimize * @todo FIXME: Optimize
*/ */
static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v) static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v)
{ {
......
...@@ -151,7 +151,7 @@ enum COTypes { ...@@ -151,7 +151,7 @@ enum COTypes {
/** The VC1 Context /** The VC1 Context
* @fixme Change size wherever another size is more efficient * @todo Change size wherever another size is more efficient
* Many members are only used for Advanced Profile * Many members are only used for Advanced Profile
*/ */
typedef struct VC1Context{ typedef struct VC1Context{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment