diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-23 22:41:54 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-24 00:37:49 +0200 |
commit | adbfc605f6bbe87b292c82cd1f5d4d974fa6b73c (patch) | |
tree | b31a5510ae7872008d723771fc2af2f098f3fc0c /libavcodec/nuv.c | |
parent | 9abbe8cc136e7fbc69004df3f1de9d54c40d969d (diff) | |
download | ffmpeg-adbfc605f6bbe87b292c82cd1f5d4d974fa6b73c.tar.gz |
doxygen: Consistently use '@' instead of '\' for Doxygen markup.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/nuv.c')
-rw-r--r-- | libavcodec/nuv.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/nuv.c b/libavcodec/nuv.c index 0c5e42fe78..3bc6328a04 100644 --- a/libavcodec/nuv.c +++ b/libavcodec/nuv.c @@ -63,11 +63,11 @@ static const uint8_t fallback_cquant[] = { }; /** - * \brief copy frame data from buffer to AVFrame, handling stride. - * \param f destination AVFrame - * \param src source buffer, does not use any line-stride - * \param width width of the video frame - * \param height height of the video frame + * @brief copy frame data from buffer to AVFrame, handling stride. + * @param f destination AVFrame + * @param src source buffer, does not use any line-stride + * @param width width of the video frame + * @param height height of the video frame */ static void copy_frame(AVFrame *f, const uint8_t *src, int width, int height) { @@ -77,7 +77,7 @@ static void copy_frame(AVFrame *f, const uint8_t *src, } /** - * \brief extract quantization tables from codec data into our context + * @brief extract quantization tables from codec data into our context */ static int get_quant(AVCodecContext *avctx, NuvContext *c, const uint8_t *buf, int size) { @@ -94,7 +94,7 @@ static int get_quant(AVCodecContext *avctx, NuvContext *c, } /** - * \brief set quantization tables from a quality value + * @brief set quantization tables from a quality value */ static void get_quant_quality(NuvContext *c, int quality) { int i; |