Browse Source

lavf: don't return from void av_update_cur_dts()

tags/n0.9
Anton Khirnov 14 years ago
parent
commit
eb0de71058
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/utils.c

+ 1
- 1
libavformat/utils.c 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



Loading…
Cancel
Save