changes some function declarations from () to (void) as per ansi c.

Patch by Stefan Huehner % stefan A huehner P org %

Originally committed as revision 8625 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefan Huehner 2007-04-04 11:51:08 +00:00 committed by Guillaume Poirier
parent ee5c8a9bc4
commit 2b100ab2bf
5 changed files with 5 additions and 5 deletions

View File

@ -185,7 +185,7 @@ typedef struct {
DSPContext dsp;
} DCAContext;
static void dca_init_vlcs()
static void dca_init_vlcs(void)
{
static int vlcs_inited = 0;
int i, j;

View File

@ -3029,7 +3029,7 @@ static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t
prefetch_motion(h, 1);
}
static void decode_init_vlc(){
static void decode_init_vlc(void){
static int done = 0;
if (!done) {

View File

@ -179,6 +179,6 @@ int pcm_read_seek(AVFormatContext *s,
/* rtsp.c */
int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f);
/* rtp.c */
void av_register_rtp_dynamic_payload_handlers();
void av_register_rtp_dynamic_payload_handlers(void);
#endif

View File

@ -186,7 +186,7 @@ static void register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler)
RTPFirstDynamicPayloadHandler= handler;
}
void av_register_rtp_dynamic_payload_handlers()
void av_register_rtp_dynamic_payload_handlers(void)
{
register_dynamic_payload_handler(&mp4v_es_handler);
register_dynamic_payload_handler(&mpeg4_generic_handler);

View File

@ -312,7 +312,7 @@ static int h264_handle_packet(RTPDemuxContext * s,
}
/* ---------------- public code */
static void *h264_new_extradata()
static void *h264_new_extradata(void)
{
h264_rtp_extra_data *data =
av_mallocz(sizeof(h264_rtp_extra_data) +