forked from FFmpeg/FFmpeg
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
1 changed files with 3 additions and 0 deletions
|
@ -157,6 +157,8 @@ static int put_xiph_codecpriv(ByteIOContext *pb, AVCodecContext *codec)
|
|||
for (j = 0; j < 3; j++)
|
||||
put_buffer(pb, header_start[j], header_len[j]);
|
||||
end_ebml_master(pb, codecprivate);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
end_ebml_master(pb, tracks);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mkv_write_header(AVFormatContext *s)
|
||||
|
|
Loading…
Add table
Reference in a new issue