Commit eb0de710 authored by Anton Khirnov's avatar Anton Khirnov

lavf: don't return from void av_update_cur_dts()

parent a7476298
...@@ -1384,7 +1384,7 @@ void ff_read_frame_flush(AVFormatContext *s) ...@@ -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
......
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