]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
cosmetics: comment spelling fixes
authordiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 3 Dec 2007 13:01:53 +0000 (13:01 +0000)
committerdiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 3 Dec 2007 13:01:53 +0000 (13:01 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11157 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/rv30.c
libavcodec/rv34vlc.h
libavformat/matroskadec.c

index 6b8e5bac7ba3fe45070b3fde63e35aff169044f2..5bfc4d68580e1e85203a573d501eef6429e90883 100644 (file)
@@ -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;
index 02d53cafb3190281a92fef8268d8872cc16a3ae4..864e46a231295d469fac0d0192ab987eb7607256 100644 (file)
@@ -21,7 +21,7 @@
 
 /**
  * @file rv34vlc.h
- * RV30/40 VLC tables.
+ * RV30/40 VLC tables
  */
 
 #ifndef FFMPEG_RV34VLC_H
index b17e5fbc73ac55275982b9c4671dfdb09d50ccab..19dcdfac49aadf716bf1ed4333abd04a55d689c9 100644 (file)
@@ -1199,7 +1199,7 @@ matroska_add_stream (MatroskaDemuxContext *matroska)
                             break;
                         }
 
-                        /* colourspace (only matters for raw video)
+                        /* colorspace (only matters for raw video)
                          * fourcc */
                         case MATROSKA_ID_VIDEOCOLOURSPACE: {
                             uint64_t num;