mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ff_mpeg4videodec_static_init: fix return type
Fixes CID743439 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
caedd51e56
commit
84281d111c
@ -101,7 +101,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s);
|
|||||||
int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s);
|
int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s);
|
||||||
int ff_mpeg4_decode_video_packet_header(MpegEncContext *s);
|
int ff_mpeg4_decode_video_packet_header(MpegEncContext *s);
|
||||||
void ff_mpeg4_init_direct_mv(MpegEncContext *s);
|
void ff_mpeg4_init_direct_mv(MpegEncContext *s);
|
||||||
int ff_mpeg4videodec_static_init(void);
|
void ff_mpeg4videodec_static_init(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -2255,7 +2255,7 @@ end:
|
|||||||
return decode_vop_header(s, gb);
|
return decode_vop_header(s, gb);
|
||||||
}
|
}
|
||||||
|
|
||||||
av_cold int ff_mpeg4videodec_static_init(void) {
|
av_cold void ff_mpeg4videodec_static_init(void) {
|
||||||
static int done = 0;
|
static int done = 0;
|
||||||
|
|
||||||
if (!done) {
|
if (!done) {
|
||||||
|
Loading…
Reference in New Issue
Block a user