* cleanup statics & const
Originally committed as revision 1186 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
df1c67adda
commit
c18a2692d2
@ -32,7 +32,7 @@
|
|||||||
#define AU_UNKOWN_SIZE ((UINT32)(~0))
|
#define AU_UNKOWN_SIZE ((UINT32)(~0))
|
||||||
|
|
||||||
/* The ffmpeg codecs we support, and the IDs they have in the file */
|
/* The ffmpeg codecs we support, and the IDs they have in the file */
|
||||||
CodecTag codec_au_tags[] = {
|
static const CodecTag codec_au_tags[] = {
|
||||||
{ CODEC_ID_PCM_MULAW, 1 },
|
{ CODEC_ID_PCM_MULAW, 1 },
|
||||||
{ CODEC_ID_PCM_S16BE, 3 },
|
{ CODEC_ID_PCM_S16BE, 3 },
|
||||||
{ CODEC_ID_PCM_ALAW, 27 },
|
{ CODEC_ID_PCM_ALAW, 27 },
|
||||||
@ -40,7 +40,7 @@ CodecTag codec_au_tags[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* AUDIO_FILE header */
|
/* AUDIO_FILE header */
|
||||||
int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
|
static int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
|
||||||
{
|
{
|
||||||
int tag;
|
int tag;
|
||||||
|
|
||||||
|
@ -272,7 +272,7 @@ static int audio_read_close(AVFormatContext *s1)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat audio_in_format = {
|
static AVInputFormat audio_in_format = {
|
||||||
"audio_device",
|
"audio_device",
|
||||||
"audio grab and output",
|
"audio grab and output",
|
||||||
sizeof(AudioData),
|
sizeof(AudioData),
|
||||||
@ -283,7 +283,7 @@ AVInputFormat audio_in_format = {
|
|||||||
.flags = AVFMT_NOFILE,
|
.flags = AVFMT_NOFILE,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat audio_out_format = {
|
static AVOutputFormat audio_out_format = {
|
||||||
"audio_device",
|
"audio_device",
|
||||||
"audio grab and output",
|
"audio grab and output",
|
||||||
"",
|
"",
|
||||||
|
@ -335,7 +335,6 @@ int strstart(const char *str, const char *val, const char **ptr);
|
|||||||
int stristart(const char *str, const char *val, const char **ptr);
|
int stristart(const char *str, const char *val, const char **ptr);
|
||||||
void pstrcpy(char *buf, int buf_size, const char *str);
|
void pstrcpy(char *buf, int buf_size, const char *str);
|
||||||
char *pstrcat(char *buf, int buf_size, const char *s);
|
char *pstrcat(char *buf, int buf_size, const char *s);
|
||||||
int match_ext(const char *filename, const char *extensions);
|
|
||||||
|
|
||||||
struct in_addr;
|
struct in_addr;
|
||||||
int resolve_host(struct in_addr *sin_addr, const char *hostname);
|
int resolve_host(struct in_addr *sin_addr, const char *hostname);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#define AVIF_WASCAPTUREFILE 0x00010000
|
#define AVIF_WASCAPTUREFILE 0x00010000
|
||||||
#define AVIF_COPYRIGHTED 0x00020000
|
#define AVIF_COPYRIGHTED 0x00020000
|
||||||
|
|
||||||
offset_t start_tag(ByteIOContext *pb, char *tag);
|
offset_t start_tag(ByteIOContext *pb, const char *tag);
|
||||||
void end_tag(ByteIOContext *pb, offset_t start);
|
void end_tag(ByteIOContext *pb, offset_t start);
|
||||||
|
|
||||||
typedef struct CodecTag {
|
typedef struct CodecTag {
|
||||||
@ -15,14 +15,14 @@ typedef struct CodecTag {
|
|||||||
unsigned int invalid_asf : 1;
|
unsigned int invalid_asf : 1;
|
||||||
} CodecTag;
|
} CodecTag;
|
||||||
|
|
||||||
void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, CodecTag *tags, int for_asf);
|
void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const CodecTag *tags, int for_asf);
|
||||||
int put_wav_header(ByteIOContext *pb, AVCodecContext *enc);
|
int put_wav_header(ByteIOContext *pb, AVCodecContext *enc);
|
||||||
int wav_codec_get_id(unsigned int tag, int bps);
|
int wav_codec_get_id(unsigned int tag, int bps);
|
||||||
void get_wav_header(ByteIOContext *pb, AVCodecContext *codec,
|
void get_wav_header(ByteIOContext *pb, AVCodecContext *codec,
|
||||||
int has_extra_data);
|
int has_extra_data);
|
||||||
|
|
||||||
extern CodecTag codec_bmp_tags[];
|
extern const CodecTag codec_bmp_tags[];
|
||||||
extern CodecTag codec_wav_tags[];
|
extern const CodecTag codec_wav_tags[];
|
||||||
|
|
||||||
unsigned int codec_get_tag(const CodecTag *tags, int id);
|
unsigned int codec_get_tag(const CodecTag *tags, int id);
|
||||||
int codec_get_id(const CodecTag *tags, unsigned int tag);
|
int codec_get_id(const CodecTag *tags, unsigned int tag);
|
||||||
|
@ -91,7 +91,7 @@ static int crc_write_trailer(struct AVFormatContext *s)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVOutputFormat crc_format = {
|
static AVOutputFormat crc_format = {
|
||||||
"crc",
|
"crc",
|
||||||
"crc testing format",
|
"crc testing format",
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -49,8 +49,7 @@ static int dv_read_header(AVFormatContext *s,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: build fake audio stream when DV audio decoder will be finished */
|
/* XXX: build fake audio stream when DV audio decoder will be finished */
|
||||||
int dv_read_packet(AVFormatContext *s,
|
static int dv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||||
AVPacket *pkt)
|
|
||||||
{
|
{
|
||||||
int ret, size, dsf;
|
int ret, size, dsf;
|
||||||
uint8_t buf[4];
|
uint8_t buf[4];
|
||||||
@ -77,12 +76,12 @@ int dv_read_packet(AVFormatContext *s,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int dv_read_close(AVFormatContext *s)
|
static int dv_read_close(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat dv_iformat = {
|
static AVInputFormat dv_iformat = {
|
||||||
"dv",
|
"dv",
|
||||||
"DV video format",
|
"DV video format",
|
||||||
sizeof(DVDemuxContext),
|
sizeof(DVDemuxContext),
|
||||||
|
@ -651,7 +651,7 @@ static int ffm_probe(AVProbeData *p)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat ffm_iformat = {
|
static AVInputFormat ffm_iformat = {
|
||||||
"ffm",
|
"ffm",
|
||||||
"ffm format",
|
"ffm format",
|
||||||
sizeof(FFMContext),
|
sizeof(FFMContext),
|
||||||
@ -662,7 +662,7 @@ AVInputFormat ffm_iformat = {
|
|||||||
ffm_seek,
|
ffm_seek,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat ffm_oformat = {
|
static AVOutputFormat ffm_oformat = {
|
||||||
"ffm",
|
"ffm",
|
||||||
"ffm format",
|
"ffm format",
|
||||||
"",
|
"",
|
||||||
|
@ -312,7 +312,7 @@ static int grab_read_close(AVFormatContext *s1)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat video_grab_device_format = {
|
static AVInputFormat video_grab_device_format = {
|
||||||
"video_grab_device",
|
"video_grab_device",
|
||||||
"video grab",
|
"video grab",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -961,7 +961,7 @@ static int aiw_grab_read_close(AVFormatContext *s1)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat aiw_grab_device_format = {
|
static AVInputFormat aiw_grab_device_format = {
|
||||||
"aiw_grab_device",
|
"aiw_grab_device",
|
||||||
"All-In-Wonder (km read-based) video grab",
|
"All-In-Wonder (km read-based) video grab",
|
||||||
sizeof(AIWVideoData),
|
sizeof(AIWVideoData),
|
||||||
|
30
libav/img.c
30
libav/img.c
@ -719,7 +719,7 @@ static int img_write_trailer(AVFormatContext *s)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat pgm_iformat = {
|
static AVInputFormat pgm_iformat = {
|
||||||
"pgm",
|
"pgm",
|
||||||
"pgm image format",
|
"pgm image format",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -732,7 +732,7 @@ AVInputFormat pgm_iformat = {
|
|||||||
.extensions = "pgm",
|
.extensions = "pgm",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat pgm_oformat = {
|
static AVOutputFormat pgm_oformat = {
|
||||||
"pgm",
|
"pgm",
|
||||||
"pgm image format",
|
"pgm image format",
|
||||||
"",
|
"",
|
||||||
@ -746,7 +746,7 @@ AVOutputFormat pgm_oformat = {
|
|||||||
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVInputFormat pgmyuv_iformat = {
|
static AVInputFormat pgmyuv_iformat = {
|
||||||
"pgmyuv",
|
"pgmyuv",
|
||||||
"pgm with YUV content image format",
|
"pgm with YUV content image format",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -758,7 +758,7 @@ AVInputFormat pgmyuv_iformat = {
|
|||||||
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat pgmyuv_oformat = {
|
static AVOutputFormat pgmyuv_oformat = {
|
||||||
"pgmyuv",
|
"pgmyuv",
|
||||||
"pgm with YUV content image format",
|
"pgm with YUV content image format",
|
||||||
"",
|
"",
|
||||||
@ -772,7 +772,7 @@ AVOutputFormat pgmyuv_oformat = {
|
|||||||
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVInputFormat ppm_iformat = {
|
static AVInputFormat ppm_iformat = {
|
||||||
"ppm",
|
"ppm",
|
||||||
"ppm image format",
|
"ppm image format",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -785,7 +785,7 @@ AVInputFormat ppm_iformat = {
|
|||||||
.extensions = "ppm",
|
.extensions = "ppm",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat ppm_oformat = {
|
static AVOutputFormat ppm_oformat = {
|
||||||
"ppm",
|
"ppm",
|
||||||
"ppm image format",
|
"ppm image format",
|
||||||
"",
|
"",
|
||||||
@ -799,7 +799,7 @@ AVOutputFormat ppm_oformat = {
|
|||||||
AVFMT_NOFILE | AVFMT_NEEDNUMBER | AVFMT_RGB24,
|
AVFMT_NOFILE | AVFMT_NEEDNUMBER | AVFMT_RGB24,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVInputFormat imgyuv_iformat = {
|
static AVInputFormat imgyuv_iformat = {
|
||||||
".Y.U.V",
|
".Y.U.V",
|
||||||
".Y.U.V format",
|
".Y.U.V format",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -812,7 +812,7 @@ AVInputFormat imgyuv_iformat = {
|
|||||||
.extensions = "Y",
|
.extensions = "Y",
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat imgyuv_oformat = {
|
static AVOutputFormat imgyuv_oformat = {
|
||||||
".Y.U.V",
|
".Y.U.V",
|
||||||
".Y.U.V format",
|
".Y.U.V format",
|
||||||
"",
|
"",
|
||||||
@ -826,7 +826,7 @@ AVOutputFormat imgyuv_oformat = {
|
|||||||
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
AVFMT_NOFILE | AVFMT_NEEDNUMBER,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVInputFormat pgmpipe_iformat = {
|
static AVInputFormat pgmpipe_iformat = {
|
||||||
"pgmpipe",
|
"pgmpipe",
|
||||||
"PGM pipe format",
|
"PGM pipe format",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -837,7 +837,7 @@ AVInputFormat pgmpipe_iformat = {
|
|||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat pgmpipe_oformat = {
|
static AVOutputFormat pgmpipe_oformat = {
|
||||||
"pgmpipe",
|
"pgmpipe",
|
||||||
"PGM pipe format",
|
"PGM pipe format",
|
||||||
"",
|
"",
|
||||||
@ -850,7 +850,7 @@ AVOutputFormat pgmpipe_oformat = {
|
|||||||
img_write_trailer,
|
img_write_trailer,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVInputFormat pgmyuvpipe_iformat = {
|
static AVInputFormat pgmyuvpipe_iformat = {
|
||||||
"pgmyuvpipe",
|
"pgmyuvpipe",
|
||||||
"PGM YUV pipe format",
|
"PGM YUV pipe format",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -861,7 +861,7 @@ AVInputFormat pgmyuvpipe_iformat = {
|
|||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat pgmyuvpipe_oformat = {
|
static AVOutputFormat pgmyuvpipe_oformat = {
|
||||||
"pgmyuvpipe",
|
"pgmyuvpipe",
|
||||||
"PGM YUV pipe format",
|
"PGM YUV pipe format",
|
||||||
"",
|
"",
|
||||||
@ -874,7 +874,7 @@ AVOutputFormat pgmyuvpipe_oformat = {
|
|||||||
img_write_trailer,
|
img_write_trailer,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVInputFormat ppmpipe_iformat = {
|
static AVInputFormat ppmpipe_iformat = {
|
||||||
"ppmpipe",
|
"ppmpipe",
|
||||||
"PPM pipe format",
|
"PPM pipe format",
|
||||||
sizeof(VideoData),
|
sizeof(VideoData),
|
||||||
@ -886,7 +886,7 @@ AVInputFormat ppmpipe_iformat = {
|
|||||||
.flags = AVFMT_RGB24,
|
.flags = AVFMT_RGB24,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat ppmpipe_oformat = {
|
static AVOutputFormat ppmpipe_oformat = {
|
||||||
"ppmpipe",
|
"ppmpipe",
|
||||||
"PPM pipe format",
|
"PPM pipe format",
|
||||||
"",
|
"",
|
||||||
@ -901,7 +901,7 @@ AVOutputFormat ppmpipe_oformat = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
AVOutputFormat yuv4mpegpipe_oformat = {
|
static AVOutputFormat yuv4mpegpipe_oformat = {
|
||||||
"yuv4mpegpipe",
|
"yuv4mpegpipe",
|
||||||
"YUV4MPEG pipe format",
|
"YUV4MPEG pipe format",
|
||||||
"",
|
"",
|
||||||
|
@ -148,7 +148,7 @@ static int ogg_write_trailer(AVFormatContext *avfcontext) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
AVOutputFormat ogg_oformat = {
|
static AVOutputFormat ogg_oformat = {
|
||||||
"ogg",
|
"ogg",
|
||||||
"Ogg Vorbis",
|
"Ogg Vorbis",
|
||||||
"audio/x-vorbis",
|
"audio/x-vorbis",
|
||||||
|
@ -742,7 +742,7 @@ static int rm_probe(AVProbeData *p)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat rm_iformat = {
|
static AVInputFormat rm_iformat = {
|
||||||
"rm",
|
"rm",
|
||||||
"rm format",
|
"rm format",
|
||||||
sizeof(RMContext),
|
sizeof(RMContext),
|
||||||
@ -752,7 +752,7 @@ AVInputFormat rm_iformat = {
|
|||||||
rm_read_close,
|
rm_read_close,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVOutputFormat rm_oformat = {
|
static AVOutputFormat rm_oformat = {
|
||||||
"rm",
|
"rm",
|
||||||
"rm format",
|
"rm format",
|
||||||
"audio/x-pn-realaudio",
|
"audio/x-pn-realaudio",
|
||||||
|
@ -54,7 +54,7 @@ void av_register_output_format(AVOutputFormat *format)
|
|||||||
format->next = NULL;
|
format->next = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
int match_ext(const char *filename, const char *extensions)
|
static int match_ext(const char *filename, const char *extensions)
|
||||||
{
|
{
|
||||||
const char *ext, *p;
|
const char *ext, *p;
|
||||||
char ext1[32], *q;
|
char ext1[32], *q;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user