mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
typo fix: inited --> initialized
Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f1cc49a68e
commit
5e53486545
@ -53,11 +53,11 @@
|
||||
*/
|
||||
void avcodec_register_all(void)
|
||||
{
|
||||
static int inited;
|
||||
static int initialized;
|
||||
|
||||
if (inited)
|
||||
if (initialized)
|
||||
return;
|
||||
inited = 1;
|
||||
initialized = 1;
|
||||
|
||||
/* video codecs */
|
||||
REGISTER_DECODER (AASC, aasc);
|
||||
|
@ -179,10 +179,10 @@ typedef struct {
|
||||
|
||||
static void dca_init_vlcs(void)
|
||||
{
|
||||
static int vlcs_inited = 0;
|
||||
static int vlcs_initialized = 0;
|
||||
int i, j;
|
||||
|
||||
if (vlcs_inited)
|
||||
if (vlcs_initialized)
|
||||
return;
|
||||
|
||||
dca_bitalloc_index.offset = 1;
|
||||
@ -214,7 +214,7 @@ static void dca_init_vlcs(void)
|
||||
bitalloc_bits[i][j], 1, 1,
|
||||
bitalloc_codes[i][j], 2, 2, 1);
|
||||
}
|
||||
vlcs_inited = 1;
|
||||
vlcs_initialized = 1;
|
||||
}
|
||||
|
||||
static inline void get_array(GetBitContext *gb, int *dst, int len, int bits)
|
||||
@ -1195,9 +1195,9 @@ static int dca_decode_frame(AVCodecContext * avctx,
|
||||
static void pre_calc_cosmod(DCAContext * s)
|
||||
{
|
||||
int i, j, k;
|
||||
static int cosmod_inited = 0;
|
||||
static int cosmod_initialized = 0;
|
||||
|
||||
if(cosmod_inited) return;
|
||||
if(cosmod_initialized) return;
|
||||
for (j = 0, k = 0; k < 16; k++)
|
||||
for (i = 0; i < 16; i++)
|
||||
cos_mod[j++] = cos((2 * i + 1) * (2 * k + 1) * M_PI / 64);
|
||||
@ -1212,7 +1212,7 @@ static void pre_calc_cosmod(DCAContext * s)
|
||||
for (k = 0; k < 16; k++)
|
||||
cos_mod[j++] = -0.25 / (2.0 * sin((2 * k + 1) * M_PI / 128));
|
||||
|
||||
cosmod_inited = 1;
|
||||
cosmod_initialized = 1;
|
||||
}
|
||||
|
||||
|
||||
|
@ -769,7 +769,7 @@ void ff_er_frame_end(MpegEncContext *s){
|
||||
|
||||
if( error2==(VP_START|DC_ERROR|AC_ERROR|MV_ERROR|AC_END|DC_END|MV_END)
|
||||
&& error1!=(VP_START|DC_ERROR|AC_ERROR|MV_ERROR|AC_END|DC_END|MV_END)
|
||||
&& ((error1&AC_END) || (error1&DC_END) || (error1&MV_END))){ //end & uninited
|
||||
&& ((error1&AC_END) || (error1&DC_END) || (error1&MV_END))){ //end & uninit
|
||||
end_ok=0;
|
||||
}
|
||||
|
||||
|
@ -2350,7 +2350,7 @@ int img_convert(AVPicture *dst, int dst_pix_fmt,
|
||||
const AVPicture *src, int src_pix_fmt,
|
||||
int src_width, int src_height)
|
||||
{
|
||||
static int inited;
|
||||
static int initialized;
|
||||
int i, ret, dst_width, dst_height, int_pix_fmt;
|
||||
const PixFmtInfo *src_pix, *dst_pix;
|
||||
const ConvertEntry *ce;
|
||||
@ -2362,8 +2362,8 @@ int img_convert(AVPicture *dst, int dst_pix_fmt,
|
||||
if (src_width <= 0 || src_height <= 0)
|
||||
return 0;
|
||||
|
||||
if (!inited) {
|
||||
inited = 1;
|
||||
if (!initialized) {
|
||||
initialized = 1;
|
||||
img_convert_init();
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,7 @@ static int mpc7_decode_init(AVCodecContext * avctx)
|
||||
MPCContext *c = avctx->priv_data;
|
||||
GetBitContext gb;
|
||||
uint8_t buf[16];
|
||||
static int vlc_inited = 0;
|
||||
static int vlc_initialized = 0;
|
||||
|
||||
if(avctx->extradata_size < 16){
|
||||
av_log(avctx, AV_LOG_ERROR, "Too small extradata size (%i)!\n", avctx->extradata_size);
|
||||
@ -77,7 +77,7 @@ static int mpc7_decode_init(AVCodecContext * avctx)
|
||||
c->IS, c->MSS, c->gapless, c->lastframelen, c->maxbands);
|
||||
c->frames_to_skip = 0;
|
||||
|
||||
if(vlc_inited) return 0;
|
||||
if(vlc_initialized) return 0;
|
||||
av_log(avctx, AV_LOG_DEBUG, "Initing VLC\n");
|
||||
if(init_vlc(&scfi_vlc, MPC7_SCFI_BITS, MPC7_SCFI_SIZE,
|
||||
&mpc7_scfi[1], 2, 1,
|
||||
@ -107,7 +107,7 @@ static int mpc7_decode_init(AVCodecContext * avctx)
|
||||
}
|
||||
}
|
||||
}
|
||||
vlc_inited = 1;
|
||||
vlc_initialized = 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ static int mpc8_decode_init(AVCodecContext * avctx)
|
||||
int i;
|
||||
MPCContext *c = avctx->priv_data;
|
||||
GetBitContext gb;
|
||||
static int vlc_inited = 0;
|
||||
static int vlc_initialized = 0;
|
||||
|
||||
if(avctx->extradata_size < 2){
|
||||
av_log(avctx, AV_LOG_ERROR, "Too small extradata size (%i)!\n", avctx->extradata_size);
|
||||
@ -117,7 +117,7 @@ static int mpc8_decode_init(AVCodecContext * avctx)
|
||||
c->MSS = get_bits1(&gb);
|
||||
c->frames = 1 << (get_bits(&gb, 3) * 2);
|
||||
|
||||
if(vlc_inited) return 0;
|
||||
if(vlc_initialized) return 0;
|
||||
av_log(avctx, AV_LOG_DEBUG, "Initing VLC\n");
|
||||
|
||||
init_vlc(&band_vlc, MPC8_BANDS_BITS, MPC8_BANDS_SIZE,
|
||||
@ -176,7 +176,7 @@ static int mpc8_decode_init(AVCodecContext * avctx)
|
||||
&mpc8_q8_bits[i], 1, 1,
|
||||
&mpc8_q8_codes[i], 1, 1, INIT_VLC_USE_STATIC);
|
||||
}
|
||||
vlc_inited = 1;
|
||||
vlc_initialized = 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -2524,7 +2524,7 @@ static int decode_init_mp3on4(AVCodecContext * avctx)
|
||||
/* Init the first mp3 decoder in standard way, so that all tables get builded
|
||||
* We replace avctx->priv_data with the context of the first decoder so that
|
||||
* decode_init() does not have to be changed.
|
||||
* Other decoders will be inited here copying data from the first context
|
||||
* Other decoders will be initialized here copying data from the first context
|
||||
*/
|
||||
// Allocate zeroed memory for the first decoder context
|
||||
s->mp3decctx[0] = av_mallocz(sizeof(MPADecodeContext));
|
||||
|
@ -87,7 +87,7 @@ static uint8_t static_rl_table_store[NB_RL_TABLES][2][2*MAX_RUN + MAX_LEVEL + 3]
|
||||
|
||||
static void common_init(MpegEncContext * s)
|
||||
{
|
||||
static int inited=0;
|
||||
static int initialized=0;
|
||||
|
||||
switch(s->msmpeg4_version){
|
||||
case 1:
|
||||
@ -127,8 +127,8 @@ static void common_init(MpegEncContext * s)
|
||||
}
|
||||
//Note the default tables are set in common_init in mpegvideo.c
|
||||
|
||||
if(!inited){
|
||||
inited=1;
|
||||
if(!initialized){
|
||||
initialized=1;
|
||||
|
||||
init_h263_dc_for_msmpeg4();
|
||||
}
|
||||
|
@ -1692,11 +1692,11 @@ static void qdm2_synthesis_filter (QDM2Context *q, int index)
|
||||
* @param q context
|
||||
*/
|
||||
static void qdm2_init(QDM2Context *q) {
|
||||
static int inited = 0;
|
||||
static int initialized = 0;
|
||||
|
||||
if (inited != 0)
|
||||
if (initialized != 0)
|
||||
return;
|
||||
inited = 1;
|
||||
initialized = 1;
|
||||
|
||||
qdm2_init_vlc();
|
||||
ff_mpa_synth_init(mpa_window);
|
||||
|
@ -1254,11 +1254,11 @@ unsigned avcodec_build( void )
|
||||
|
||||
void avcodec_init(void)
|
||||
{
|
||||
static int inited = 0;
|
||||
static int initialized = 0;
|
||||
|
||||
if (inited != 0)
|
||||
if (initialized != 0)
|
||||
return;
|
||||
inited = 1;
|
||||
initialized = 1;
|
||||
|
||||
dsputil_static_init();
|
||||
}
|
||||
|
@ -3867,7 +3867,7 @@ static int vc1_decode_init(AVCodecContext *avctx)
|
||||
const uint8_t *next;
|
||||
int size, buf2_size;
|
||||
uint8_t *buf2 = NULL;
|
||||
int seq_inited = 0, ep_inited = 0;
|
||||
int seq_initialized = 0, ep_initialized = 0;
|
||||
|
||||
if(avctx->extradata_size < 16) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Extradata size too small: %i\n", avctx->extradata_size);
|
||||
@ -3889,19 +3889,19 @@ static int vc1_decode_init(AVCodecContext *avctx)
|
||||
av_free(buf2);
|
||||
return -1;
|
||||
}
|
||||
seq_inited = 1;
|
||||
seq_initialized = 1;
|
||||
break;
|
||||
case VC1_CODE_ENTRYPOINT:
|
||||
if(decode_entry_point(avctx, &gb) < 0){
|
||||
av_free(buf2);
|
||||
return -1;
|
||||
}
|
||||
ep_inited = 1;
|
||||
ep_initialized = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
av_free(buf2);
|
||||
if(!seq_inited || !ep_inited){
|
||||
if(!seq_initialized || !ep_initialized){
|
||||
av_log(avctx, AV_LOG_ERROR, "Incomplete extradata\n");
|
||||
return -1;
|
||||
}
|
||||
|
@ -273,7 +273,7 @@ typedef struct Vp3DecodeContext {
|
||||
* which of the fragments are coded */
|
||||
int *coded_fragment_list;
|
||||
int coded_fragment_list_index;
|
||||
int pixel_addresses_inited;
|
||||
int pixel_addresses_initialized;
|
||||
|
||||
VLC dc_vlc[16];
|
||||
VLC ac_vlc_1[16];
|
||||
@ -2009,7 +2009,7 @@ static int vp3_decode_init(AVCodecContext *avctx)
|
||||
s->all_fragments = av_malloc(s->fragment_count * sizeof(Vp3Fragment));
|
||||
s->coeffs = av_malloc(s->fragment_count * sizeof(Coeff) * 65);
|
||||
s->coded_fragment_list = av_malloc(s->fragment_count * sizeof(int));
|
||||
s->pixel_addresses_inited = 0;
|
||||
s->pixel_addresses_initialized = 0;
|
||||
|
||||
if (!s->theora_tables)
|
||||
{
|
||||
@ -2203,18 +2203,18 @@ static int vp3_decode_frame(AVCodecContext *avctx,
|
||||
s->current_frame= s->golden_frame;
|
||||
|
||||
/* time to figure out pixel addresses? */
|
||||
if (!s->pixel_addresses_inited)
|
||||
if (!s->pixel_addresses_initialized)
|
||||
{
|
||||
if (!s->flipped_image)
|
||||
vp3_calculate_pixel_addresses(s);
|
||||
else
|
||||
theora_calculate_pixel_addresses(s);
|
||||
s->pixel_addresses_inited = 1;
|
||||
s->pixel_addresses_initialized = 1;
|
||||
}
|
||||
} else {
|
||||
/* allocate a new current frame */
|
||||
s->current_frame.reference = 3;
|
||||
if (!s->pixel_addresses_inited) {
|
||||
if (!s->pixel_addresses_initialized) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "vp3: first frame not a keyframe\n");
|
||||
return -1;
|
||||
}
|
||||
|
@ -30,11 +30,11 @@
|
||||
|
||||
void avdevice_register_all(void)
|
||||
{
|
||||
static int inited;
|
||||
static int initialized;
|
||||
|
||||
if (inited)
|
||||
if (initialized)
|
||||
return;
|
||||
inited = 1;
|
||||
initialized = 1;
|
||||
|
||||
/* devices */
|
||||
REGISTER_MUXDEMUX (AUDIO_BEOS, audio_beos);
|
||||
|
@ -40,11 +40,11 @@
|
||||
*/
|
||||
void av_register_all(void)
|
||||
{
|
||||
static int inited;
|
||||
static int initialized;
|
||||
|
||||
if (inited)
|
||||
if (initialized)
|
||||
return;
|
||||
inited = 1;
|
||||
initialized = 1;
|
||||
|
||||
avcodec_init();
|
||||
avcodec_register_all();
|
||||
|
@ -531,7 +531,7 @@ static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
NUTContext *nut = s->priv_data;
|
||||
ByteIOContext *bc = s->pb;
|
||||
int64_t pos;
|
||||
int inited_stream_count;
|
||||
int initialized_stream_count;
|
||||
|
||||
nut->avf= s;
|
||||
|
||||
@ -547,14 +547,14 @@ static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
|
||||
/* stream headers */
|
||||
pos=0;
|
||||
for(inited_stream_count=0; inited_stream_count < s->nb_streams;){
|
||||
for(initialized_stream_count=0; initialized_stream_count < s->nb_streams;){
|
||||
pos= find_startcode(bc, STREAM_STARTCODE, pos)+1;
|
||||
if (pos<0+1){
|
||||
av_log(s, AV_LOG_ERROR, "Not all stream headers found.\n");
|
||||
return -1;
|
||||
}
|
||||
if(decode_stream_header(nut) >= 0)
|
||||
inited_stream_count++;
|
||||
initialized_stream_count++;
|
||||
}
|
||||
|
||||
/* info headers */
|
||||
|
Loading…
Reference in New Issue
Block a user