comparison rtp_h264.c @ 1983:fbc66bf1f15d libavformat

changes some function declarations from () to (void) as per ansi c. Patch by Stefan Huehner % stefan A huehner P org %
author gpoirier
date Wed, 04 Apr 2007 11:51:08 +0000
parents f794ef55fafe
children b849507913da
comparison
equal deleted inserted replaced
1982:1805da944f22 1983:fbc66bf1f15d
310 310
311 return result; 311 return result;
312 } 312 }
313 313
314 /* ---------------- public code */ 314 /* ---------------- public code */
315 static void *h264_new_extradata() 315 static void *h264_new_extradata(void)
316 { 316 {
317 h264_rtp_extra_data *data = 317 h264_rtp_extra_data *data =
318 av_mallocz(sizeof(h264_rtp_extra_data) + 318 av_mallocz(sizeof(h264_rtp_extra_data) +
319 FF_INPUT_BUFFER_PADDING_SIZE); 319 FF_INPUT_BUFFER_PADDING_SIZE);
320 320