[FFmpeg-soc] [soc]: r5558 - in indeo5: indeo5.c indeo5data.h ivi_common.c ivi_common.h ivi_dsp.c ivi_dsp.h
kostya
subversion at mplayerhq.hu
Sun Jan 3 10:45:49 CET 2010
Author: kostya
Date: Sun Jan 3 10:45:49 2010
New Revision: 5558
Log:
Capitalize Indeo name everywhere
Modified:
indeo5/indeo5.c
indeo5/indeo5data.h
indeo5/ivi_common.c
indeo5/ivi_common.h
indeo5/ivi_dsp.c
indeo5/ivi_dsp.h
Modified: indeo5/indeo5.c
==============================================================================
--- indeo5/indeo5.c Sun Jan 3 04:20:30 2010 (r5557)
+++ indeo5/indeo5.c Sun Jan 3 10:45:49 2010 (r5558)
@@ -80,7 +80,7 @@ static VLC blk_vlc_tabs[8];
/**
- * Decode indeo5 GOP (Group of pictures) header.
+ * Decode Indeo5 GOP (Group of pictures) header.
* This header is present in key frames only.
* It defines parameters for all frames in a GOP.
*
@@ -302,7 +302,7 @@ static inline void skip_hdr_extension(Ge
/**
- * Decode indeo5 picture header.
+ * Decode Indeo5 picture header.
*
* @param ctx [in,out] ptr to the decoder context
* @param avctx [in] ptr to the AVCodecContext
@@ -382,7 +382,7 @@ static int decode_pic_hdr(IVI5DecContext
/**
- * Decode indeo5 band header.
+ * Decode Indeo5 band header.
*
* @param ctx [in,out] ptr to the decoder context
* @param band [in,out] ptr to the band descriptor
@@ -619,7 +619,7 @@ static int decode_mb_info(IVI5DecContext
/**
- * Decode an indeo5 band.
+ * Decode an Indeo5 band.
*
* @param ctx [in,out] ptr to the decoder context
* @param band [in,out] ptr to the band descriptor
@@ -784,7 +784,7 @@ static void switch_buffers(IVI5DecContex
/**
- * indeo5 decoder initializations
+ * Indeo5 decoder initializations
*/
static av_cold int decode_init(AVCodecContext *avctx)
{
@@ -811,7 +811,7 @@ static av_cold int decode_init(AVCodecCo
ctx->pic_conf.tile_height = avctx->height;
ctx->pic_conf.luma_bands = ctx->pic_conf.chroma_bands = 1;
- /* allocate and initialize indeo5 internal structures */
+ /* allocate and initialize Indeo5 internal structures */
result = ff_ivi_init_planes(ctx->planes, &ctx->pic_conf);
if (result) {
av_log(avctx, AV_LOG_ERROR, "Couldn't allocate color planes!\n");
@@ -903,7 +903,7 @@ static int decode_frame(AVCodecContext *
/**
- * indeo5 free function
+ * Indeo5 free function
*/
static av_cold int decode_close(AVCodecContext *avctx)
{
Modified: indeo5/indeo5data.h
==============================================================================
--- indeo5/indeo5data.h Sun Jan 3 04:20:30 2010 (r5557)
+++ indeo5/indeo5data.h Sun Jan 3 10:45:49 2010 (r5558)
@@ -37,7 +37,7 @@ static uint16_t ivi5_common_pic_sizes[30
/**
- * indeo5 8x8 scan (zigzag) patterns
+ * Indeo5 8x8 scan (zigzag) patterns
*/
static const uint8_t ivi5_scans8x8[3][64] = {
{0, 1, 8, 16, 9, 2, 3, 10, 17, 24, 32, 25, 18, 11, 4, 5,
@@ -58,7 +58,7 @@ static const uint8_t ivi5_scans8x8[3][64
};
/**
- * indeo5 4x4 scan (zigzag) pattern
+ * Indeo5 4x4 scan (zigzag) pattern
*/
static const uint8_t ivi5_scan4x4[16] = {
0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15
@@ -66,7 +66,7 @@ static const uint8_t ivi5_scan4x4[16] =
/**
- * indeo5 dequantization matrixes consist of two tables: base table
+ * Indeo5 dequantization matrixes consist of two tables: base table
* and scale table. The base table defines the dequantization matrix
* itself and the scale table tells how this matrix should be scaled
* for a particular quant level (0...24).
Modified: indeo5/ivi_common.c
==============================================================================
--- indeo5/ivi_common.c Sun Jan 3 04:20:30 2010 (r5557)
+++ indeo5/ivi_common.c Sun Jan 3 10:45:49 2010 (r5558)
@@ -1,5 +1,5 @@
/*
- * common functions for Indeo Video Interactive codecs (indeo4 and indeo5)
+ * common functions for Indeo Video Interactive codecs (Indeo4 and Indeo5)
*
* Copyright (c) 2009 Maxim Poliakovski
*
@@ -74,7 +74,7 @@ int ff_ivi_create_huff_from_desc(const I
prefix = ((1 << i) - 1) << (cb->xbits[i] + last_row);
for (j = 0; j < codes_per_row; j++) {
- if (pos >= 256) /* Some indeo5 codebooks can have more than 256 */
+ if (pos >= 256) /* Some Indeo5 codebooks can have more than 256 */
break; /* elements, but only 256 codes are allowed! */
bits[pos] = i + cb->xbits[i] + last_row;
Modified: indeo5/ivi_common.h
==============================================================================
--- indeo5/ivi_common.h Sun Jan 3 04:20:30 2010 (r5557)
+++ indeo5/ivi_common.h Sun Jan 3 10:45:49 2010 (r5558)
@@ -1,5 +1,5 @@
/*
- * common functions for Indeo Video Interactive codecs (indeo4 and indeo5)
+ * common functions for Indeo Video Interactive codecs (Indeo4 and Indeo5)
*
* Copyright (c) 2009 Maxim Poliakovski
*
@@ -64,7 +64,7 @@ extern const RVMapDesc ff_ivi_rvmap_tabs
/**
- * This structure describes an indeo macroblock (16x16, 8x8 or 4x4).
+ * This structure describes an Indeo macroblock (16x16, 8x8 or 4x4).
*/
typedef struct {
int16_t xpos;
@@ -79,7 +79,7 @@ typedef struct {
/**
- * This structure describes an indeo tile.
+ * This structure describes an Indeo tile.
*/
typedef struct {
uint32_t xpos;
@@ -95,7 +95,7 @@ typedef struct {
/**
- * This structure describes an indeo wavelet band.
+ * This structure describes an Indeo wavelet band.
*/
typedef struct {
uint8_t plane; ///< plane number this band belongs to
@@ -114,7 +114,7 @@ typedef struct {
uint8_t mc_resolution; ///< resolution of the motion compensation: 0 - fullpel, 1 - halfpel
int8_t inherit_mv;
int8_t inherit_qdelta;
- int8_t qdelta_present; ///< tells if Qdelta signal is present in the bitstream (indeo5 only)
+ int8_t qdelta_present; ///< tells if Qdelta signal is present in the bitstream (Indeo5 only)
uint8_t quant_mat; ///< dequant matrix
uint8_t glob_quant; ///< quant base for this band
const uint8_t *scan; ///< ptr to the scan pattern
Modified: indeo5/ivi_dsp.c
==============================================================================
--- indeo5/ivi_dsp.c Sun Jan 3 04:20:30 2010 (r5557)
+++ indeo5/ivi_dsp.c Sun Jan 3 10:45:49 2010 (r5558)
@@ -1,5 +1,5 @@
/*
- * DSP functions for Indeo Video Interactive codecs (indeo4 and indeo5)
+ * DSP functions for Indeo Video Interactive codecs (Indeo4 and Indeo5)
*
* Copyright (c) 2009 Maxim Poliakovski
*
@@ -23,7 +23,7 @@
/**
* @file libavcodec/ivi_dsp.c
* DSP functions (inverse transforms, motion compensation, wavelet recompostions)
- * for indeo video interactive codecs.
+ * for Indeo Video Interactive codecs.
*/
#include "avcodec.h"
@@ -32,7 +32,7 @@
#include "ivi_dsp.h"
/**
- * 5/3 - Wavelet recomposition filter for indeo5.
+ * 5/3 - Wavelet recomposition filter for Indeo5.
*/
void ff_ivi_recompose53(const IVIPlaneDesc *plane, uint8_t *dst,
const int dst_pitch, const int num_bands)
Modified: indeo5/ivi_dsp.h
==============================================================================
--- indeo5/ivi_dsp.h Sun Jan 3 04:20:30 2010 (r5557)
+++ indeo5/ivi_dsp.h Sun Jan 3 10:45:49 2010 (r5558)
@@ -1,5 +1,5 @@
/*
- * DSP functions for Indeo Video Interactive codecs (indeo4 and indeo5)
+ * DSP functions for Indeo Video Interactive codecs (Indeo4 and Indeo5)
*
* Copyright (c) 2009 Maxim Poliakovski
*
@@ -23,7 +23,7 @@
/**
* @file libavcodec/ivi_dsp.h
* DSP functions (inverse transforms, motion compensations, wavelet recompostion)
- * for indeo video interactive codecs.
+ * for Indeo Video Interactive codecs.
*/
#ifndef AVCODEC_IVI_DSP_H
@@ -33,7 +33,7 @@
#include "ivi_common.h"
/**
- * 5/3 - Wavelet recomposition filter for indeo5.
+ * 5/3 - Wavelet recomposition filter for Indeo5.
*
* @param plane [in] pointer to the descriptor of the plane being processed
* @param dst [out] pointer to the destination buffer
More information about the FFmpeg-soc
mailing list