]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/iv8.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / iv8.c
index 1db4c0325abb3d552d4d15eda2326eb1f051c4bc..fa77f824716f494b3a258081f7dfc6a3933ec06f 100644 (file)
  */
 
 #include "avformat.h"
+#include "internal.h"
 
 
 static int probe(AVProbeData *p)
 {
-    // the single file i have starts with that, i dont know if others do too
+    // the single file I have starts with that, I do not know if others do, too
     if(   p->buf[0] == 1
        && p->buf[1] == 1
        && p->buf[2] == 3
@@ -47,7 +48,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
     st->codec->codec_id = CODEC_ID_MPEG4;
     st->need_parsing = AVSTREAM_PARSE_FULL;
-    av_set_pts_info(st, 64, 1, 90000);
+    avpriv_set_pts_info(st, 64, 1, 90000);
 
     return 0;