mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-13 21:26:33 +02:00
Make sure to return a value in functions that return a value
Originally committed as revision 10315 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5034ab9024
commit
801edb42d1
@ -157,6 +157,8 @@ static int put_xiph_codecpriv(ByteIOContext *pb, AVCodecContext *codec)
|
|||||||
for (j = 0; j < 3; j++)
|
for (j = 0; j < 3; j++)
|
||||||
put_buffer(pb, header_start[j], header_len[j]);
|
put_buffer(pb, header_start[j], header_len[j]);
|
||||||
end_ebml_master(pb, codecprivate);
|
end_ebml_master(pb, codecprivate);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mkv_write_tracks(AVFormatContext *s)
|
static int mkv_write_tracks(AVFormatContext *s)
|
||||||
@ -245,6 +247,7 @@ static int mkv_write_tracks(AVFormatContext *s)
|
|||||||
av_set_pts_info(st, 64, 1, 1000);
|
av_set_pts_info(st, 64, 1, 1000);
|
||||||
}
|
}
|
||||||
end_ebml_master(pb, tracks);
|
end_ebml_master(pb, tracks);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mkv_write_header(AVFormatContext *s)
|
static int mkv_write_header(AVFormatContext *s)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user