]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/ivfdec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / ivfdec.c
index cc7687e4da05d9e1fce17bf2e445fdafa413b19e..bc837a2b9024ef909dd050227be4d116271984bd 100644 (file)
@@ -19,6 +19,7 @@
  */
 
 #include "avformat.h"
+#include "internal.h"
 #include "riff.h"
 #include "libavutil/intreadwrite.h"
 
@@ -61,7 +62,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
         return AVERROR_INVALIDDATA;
     }
 
-    av_set_pts_info(st, 64, time_base.num, time_base.den);
+    avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
 
     return 0;
 }