diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-12-03 00:45:46 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-12-03 03:24:32 +0100 |
commit | 215b7724e7ef332eab5aff8d1ab6b77a11f47c4f (patch) | |
tree | 3ffc80ccf075fd5972f6c2312a313c6bceea39bf /libavformat/microdvddec.c | |
parent | eac5987c4f662ab272f6788b5edc233a9525f844 (diff) | |
download | ffmpeg-215b7724e7ef332eab5aff8d1ab6b77a11f47c4f.tar.gz |
lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().
Diffstat (limited to 'libavformat/microdvddec.c')
-rw-r--r-- | libavformat/microdvddec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/microdvddec.c b/libavformat/microdvddec.c index 4c56a7f503..748ebdfc48 100644 --- a/libavformat/microdvddec.c +++ b/libavformat/microdvddec.c @@ -74,7 +74,7 @@ static int microdvd_read_header(AVFormatContext *s, AVFormatParameters *ap) i--; } } - av_set_pts_info(st, 64, pts_info.den, pts_info.num); + avpriv_set_pts_info(st, 64, pts_info.den, pts_info.num); st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; st->codec->codec_id = CODEC_ID_MICRODVD; return 0; |