summaryrefslogtreecommitdiff
path: root/libavcodec/idcinvideo.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-05-15 22:51:38 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-15 22:51:38 +0000
commit88c52162613ff3fa2661a677c9693ef376cbdbdb (patch)
tree390d122c9c2b50654cb06fb3731f7a0525a6ca40 /libavcodec/idcinvideo.c
parent3f60afad28eccc1d3e2bf55e537583b361ebdf2e (diff)
cosmetics: s/Id/id/ in libavcodec where Id refers to id Software.
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13172 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/idcinvideo.c')
-rw-r--r--libavcodec/idcinvideo.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/idcinvideo.c b/libavcodec/idcinvideo.c
index bdd71beef6..e10c173523 100644
--- a/libavcodec/idcinvideo.c
+++ b/libavcodec/idcinvideo.c
@@ -1,5 +1,5 @@
/*
- * Id Quake II CIN Video Decoder
+ * id Quake II CIN Video Decoder
* Copyright (C) 2003 the ffmpeg project
*
* This file is part of FFmpeg.
@@ -21,8 +21,8 @@
/**
* @file idcinvideo.c
- * Id Quake II Cin Video Decoder by Dr. Tim Ferguson
- * For more information about the Id CIN format, visit:
+ * id Quake II Cin Video Decoder by Dr. Tim Ferguson
+ * For more information about the id CIN format, visit:
* http://www.csse.monash.edu.au/~timf/
*
* This video decoder outputs PAL8 colorspace data. Interacting with this
@@ -32,7 +32,7 @@
* the demuxer must use the same extradata space to transmit an
* AVPaletteControl structure.
*
- * Id CIN video is purely Huffman-coded, intraframe-only codec. It achieves
+ * id CIN video is purely Huffman-coded, intraframe-only codec. It achieves
* a little more compression by exploiting the fact that adjacent pixels
* tend to be similar.
*
@@ -154,7 +154,7 @@ static av_cold int idcin_decode_init(AVCodecContext *avctx)
/* make sure the Huffman tables make it */
if (s->avctx->extradata_size != HUFFMAN_TABLE_SIZE) {
- av_log(s->avctx, AV_LOG_ERROR, " Id CIN video: expected extradata size of %d\n", HUFFMAN_TABLE_SIZE);
+ av_log(s->avctx, AV_LOG_ERROR, " id CIN video: expected extradata size of %d\n", HUFFMAN_TABLE_SIZE);
return -1;
}
@@ -221,7 +221,7 @@ static int idcin_decode_frame(AVCodecContext *avctx,
avctx->release_buffer(avctx, &s->frame);
if (avctx->get_buffer(avctx, &s->frame)) {
- av_log(avctx, AV_LOG_ERROR, " Id CIN Video: get_buffer() failed\n");
+ av_log(avctx, AV_LOG_ERROR, " id CIN Video: get_buffer() failed\n");
return -1;
}
@@ -262,6 +262,6 @@ AVCodec idcin_decoder = {
idcin_decode_end,
idcin_decode_frame,
CODEC_CAP_DR1,
- .long_name = "Id Quake II CIN video",
+ .long_name = "id Quake II CIN video",
};