# HG changeset patch # User diego # Date 1196686913 0 # Node ID b60d7f351e9d105207f76582baac05cefe4bafab # Parent 3055403f0e5745e194700bb603e3a860a7d3b981 cosmetics: comment spelling fixes diff -r 3055403f0e57 -r b60d7f351e9d rv30.c --- a/rv30.c Mon Dec 03 11:03:16 2007 +0000 +++ b/rv30.c Mon Dec 03 13:01:53 2007 +0000 @@ -21,7 +21,7 @@ /** * @file rv30.c - * RV30 decoder. + * RV30 decoder */ #include "avcodec.h" @@ -58,7 +58,7 @@ } /** - * 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 @@ } /** - * Decode macroblock information + * Decode macroblock information. */ static int rv30_decode_mb_info(RV34DecContext *r) { @@ -111,7 +111,7 @@ } /** - * Initialize decoder + * Initialize decoder. */ static int rv30_decode_init(AVCodecContext *avctx) { @@ -120,7 +120,7 @@ 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; diff -r 3055403f0e57 -r b60d7f351e9d rv34vlc.h --- a/rv34vlc.h Mon Dec 03 11:03:16 2007 +0000 +++ b/rv34vlc.h Mon Dec 03 13:01:53 2007 +0000 @@ -21,7 +21,7 @@ /** * @file rv34vlc.h - * RV30/40 VLC tables. + * RV30/40 VLC tables */ #ifndef FFMPEG_RV34VLC_H