lavf: don't return from void av_update_cur_dts()

This commit is contained in:
Anton Khirnov 2011-11-06 19:13:28 +01:00
parent a747629880
commit eb0de71058
1 changed files with 1 additions and 1 deletions

View File

@ -1384,7 +1384,7 @@ void ff_read_frame_flush(AVFormatContext *s)
#if FF_API_SEEK_PUBLIC
void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp)
{
return ff_update_cur_dts(s, ref_st, timestamp);
ff_update_cur_dts(s, ref_st, timestamp);
}
#endif