Commit 2b100ab2 authored by Stefan Huehner's avatar Stefan Huehner Committed by Guillaume Poirier

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
parent ee5c8a9b
...@@ -185,7 +185,7 @@ typedef struct { ...@@ -185,7 +185,7 @@ typedef struct {
DSPContext dsp; DSPContext dsp;
} DCAContext; } DCAContext;
static void dca_init_vlcs() static void dca_init_vlcs(void)
{ {
static int vlcs_inited = 0; static int vlcs_inited = 0;
int i, j; int i, j;
......
...@@ -3029,7 +3029,7 @@ static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t ...@@ -3029,7 +3029,7 @@ static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t
prefetch_motion(h, 1); prefetch_motion(h, 1);
} }
static void decode_init_vlc(){ static void decode_init_vlc(void){
static int done = 0; static int done = 0;
if (!done) { if (!done) {
......
...@@ -179,6 +179,6 @@ int pcm_read_seek(AVFormatContext *s, ...@@ -179,6 +179,6 @@ int pcm_read_seek(AVFormatContext *s,
/* rtsp.c */ /* rtsp.c */
int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f);
/* rtp.c */ /* rtp.c */
void av_register_rtp_dynamic_payload_handlers(); void av_register_rtp_dynamic_payload_handlers(void);
#endif #endif
...@@ -186,7 +186,7 @@ static void register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler) ...@@ -186,7 +186,7 @@ static void register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler)
RTPFirstDynamicPayloadHandler= 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(&mp4v_es_handler);
register_dynamic_payload_handler(&mpeg4_generic_handler); register_dynamic_payload_handler(&mpeg4_generic_handler);
......
...@@ -312,7 +312,7 @@ static int h264_handle_packet(RTPDemuxContext * s, ...@@ -312,7 +312,7 @@ static int h264_handle_packet(RTPDemuxContext * s,
} }
/* ---------------- public code */ /* ---------------- public code */
static void *h264_new_extradata() static void *h264_new_extradata(void)
{ {
h264_rtp_extra_data *data = h264_rtp_extra_data *data =
av_mallocz(sizeof(h264_rtp_extra_data) + av_mallocz(sizeof(h264_rtp_extra_data) +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment