summaryrefslogtreecommitdiff
path: root/libavcodec/rv30.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-12-03 13:01:53 +0000
committerDiego Biurrun <diego@biurrun.de>2007-12-03 13:01:53 +0000
commita660c52a7e5075a5ba0c617613e933b4e51933f0 (patch)
tree9c6115fef8ca3fd60956024ea0e62497a6f0086e /libavcodec/rv30.c
parent7827885cfb65ce14c7f9720f90e2b2efcca3c29a (diff)
cosmetics: comment spelling fixes
Originally committed as revision 11157 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv30.c')
-rw-r--r--libavcodec/rv30.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/rv30.c b/libavcodec/rv30.c
index 6b8e5bac7b..5bfc4d6858 100644
--- a/libavcodec/rv30.c
+++ b/libavcodec/rv30.c
@@ -21,7 +21,7 @@
/**
* @file rv30.c
- * RV30 decoder.
+ * RV30 decoder
*/
#include "avcodec.h"
@@ -58,7 +58,7 @@ static int rv30_parse_slice_header(RV34DecContext *r, GetBitContext *gb, SliceIn
}
/**
- * Decode 4x4 intra types array
+ * Decode 4x4 intra types array.
*/
static int rv30_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int *dst)
{
@@ -86,7 +86,7 @@ static int rv30_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int *ds
}
/**
- * Decode macroblock information
+ * Decode macroblock information.
*/
static int rv30_decode_mb_info(RV34DecContext *r)
{
@@ -111,7 +111,7 @@ static int rv30_decode_mb_info(RV34DecContext *r)
}
/**
- * Initialize decoder
+ * Initialize decoder.
*/
static int rv30_decode_init(AVCodecContext *avctx)
{
@@ -120,7 +120,7 @@ static int rv30_decode_init(AVCodecContext *avctx)
r->rv30 = 1;
ff_rv34_decode_init(avctx);
if(avctx->extradata_size < 2){
- av_log(avctx, AV_LOG_ERROR, "Extradata is too small\n");
+ av_log(avctx, AV_LOG_ERROR, "Extradata is too small.\n");
return -1;
}
r->rpr = (avctx->extradata[1] & 7) >> 1;