Browse code

ff_mpeg4videodec_static_init: fix return type

Fixes CID743439
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2012/11/17 10:31:11
Showing 2 changed files
... ...
@@ -101,7 +101,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s);
101 101
 int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s);
102 102
 int ff_mpeg4_decode_video_packet_header(MpegEncContext *s);
103 103
 void ff_mpeg4_init_direct_mv(MpegEncContext *s);
104
-int ff_mpeg4videodec_static_init(void);
104
+void ff_mpeg4videodec_static_init(void);
105 105
 
106 106
 /**
107 107
  *
... ...
@@ -2255,7 +2255,7 @@ end:
2255 2255
     return decode_vop_header(s, gb);
2256 2256
 }
2257 2257
 
2258
-av_cold int ff_mpeg4videodec_static_init(void) {
2258
+av_cold void ff_mpeg4videodec_static_init(void) {
2259 2259
     static int done = 0;
2260 2260
 
2261 2261
     if (!done) {