]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/oggparsetheora.c
libavformat: Rename the applehttp protocol to hls
[ffmpeg] / libavformat / oggparsetheora.c
index d02781f2fa3a37e3a6142c0dd787ad28ab2bba1e..993db3ee558b0c1c08fa634c0fc5acb714292e41 100644 (file)
@@ -26,6 +26,7 @@
 #include "libavutil/bswap.h"
 #include "libavcodec/get_bits.h"
 #include "avformat.h"
+#include "internal.h"
 #include "oggdec.h"
 
 struct theora_params {
@@ -91,7 +92,7 @@ theora_header (AVFormatContext * s, int idx)
             st->codec->time_base.num = 1;
             st->codec->time_base.den = 25;
         }
-        av_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
+        avpriv_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
 
         st->sample_aspect_ratio.num = get_bits_long(&gb, 24);
         st->sample_aspect_ratio.den = get_bits_long(&gb, 24);