forked from FFmpeg/FFmpeg
lavf: don't return from void av_update_cur_dts()
This commit is contained in:
parent
a747629880
commit
eb0de71058
1 changed files with 1 additions and 1 deletions
|
@ -1384,7 +1384,7 @@ void ff_read_frame_flush(AVFormatContext *s)
|
||||||
#if FF_API_SEEK_PUBLIC
|
#if FF_API_SEEK_PUBLIC
|
||||||
void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp)
|
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
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue