[FFmpeg-cvslog] r11157 - in trunk: libavcodec/rv30.c libavcodec/rv34vlc.h libavformat/matroskadec.c
diego
subversion
Mon Dec 3 14:01:53 CET 2007
Author: diego
Date: Mon Dec 3 14:01:53 2007
New Revision: 11157
Log:
cosmetics: comment spelling fixes
Modified:
trunk/libavcodec/rv30.c
trunk/libavcodec/rv34vlc.h
trunk/libavformat/matroskadec.c
Modified: trunk/libavcodec/rv30.c
==============================================================================
--- trunk/libavcodec/rv30.c (original)
+++ trunk/libavcodec/rv30.c Mon Dec 3 14:01:53 2007
@@ -21,7 +21,7 @@
/**
* @file rv30.c
- * RV30 decoder.
+ * RV30 decoder
*/
#include "avcodec.h"
@@ -58,7 +58,7 @@ static int rv30_parse_slice_header(RV34D
}
/**
- * 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(RV34D
}
/**
- * Decode macroblock information
+ * Decode macroblock information.
*/
static int rv30_decode_mb_info(RV34DecContext *r)
{
@@ -111,7 +111,7 @@ static int rv30_decode_mb_info(RV34DecCo
}
/**
- * Initialize decoder
+ * Initialize decoder.
*/
static int rv30_decode_init(AVCodecContext *avctx)
{
@@ -120,7 +120,7 @@ static int rv30_decode_init(AVCodecConte
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;
Modified: trunk/libavcodec/rv34vlc.h
==============================================================================
--- trunk/libavcodec/rv34vlc.h (original)
+++ trunk/libavcodec/rv34vlc.h Mon Dec 3 14:01:53 2007
@@ -21,7 +21,7 @@
/**
* @file rv34vlc.h
- * RV30/40 VLC tables.
+ * RV30/40 VLC tables
*/
#ifndef FFMPEG_RV34VLC_H
Modified: trunk/libavformat/matroskadec.c
==============================================================================
--- trunk/libavformat/matroskadec.c (original)
+++ trunk/libavformat/matroskadec.c Mon Dec 3 14:01:53 2007
@@ -1199,7 +1199,7 @@ matroska_add_stream (MatroskaDemuxContex
break;
}
- /* colourspace (only matters for raw video)
+ /* colorspace (only matters for raw video)
* fourcc */
case MATROSKA_ID_VIDEOCOLOURSPACE: {
uint64_t num;
More information about the ffmpeg-cvslog
mailing list