Commit 801edb42 authored by David Conrad's avatar David Conrad

Make sure to return a value in functions that return a value

Originally committed as revision 10315 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5034ab90
...@@ -157,6 +157,8 @@ static int put_xiph_codecpriv(ByteIOContext *pb, AVCodecContext *codec) ...@@ -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) ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment