Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-12-03 03:45:46 +0400
committerClément Bœsch <ubitux@gmail.com>2011-12-03 06:24:32 +0400
commit215b7724e7ef332eab5aff8d1ab6b77a11f47c4f (patch)
tree3ffc80ccf075fd5972f6c2312a313c6bceea39bf /libavformat/mkvtimestamp_v2.c
parenteac5987c4f662ab272f6788b5edc233a9525f844 (diff)
lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().
Diffstat (limited to 'libavformat/mkvtimestamp_v2.c')
-rw-r--r--libavformat/mkvtimestamp_v2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mkvtimestamp_v2.c b/libavformat/mkvtimestamp_v2.c
index ebb209ba64..f120460057 100644
--- a/libavformat/mkvtimestamp_v2.c
+++ b/libavformat/mkvtimestamp_v2.c
@@ -20,12 +20,13 @@
*/
#include "avformat.h"
+#include "internal.h"
static int write_header(AVFormatContext *s)
{
static const char *header = "# timecode format v2\n";
put_buffer(s->pb, header, strlen(header));
- av_set_pts_info(s->streams[0], 64, 1, 1000);
+ avpriv_set_pts_info(s->streams[0], 64, 1, 1000);
return 0;
}