commit | c3f9ebf74371b63fba0e7491e61904bbd165cd0f | [log] [tgz] |
---|---|---|
author | Anton Khirnov <[email protected]> | Tue Nov 29 18:28:15 2011 |
committer | Anton Khirnov <[email protected]> | Wed Nov 30 19:34:45 2011 |
tree | cad6d000dccf25ecea1db16f1befb17f79d13c33 | |
parent | 06d7325ab1fcc009f0183be3a0b0504f6d99edfb [diff] [blame] |
lavf: make av_set_pts_info private. It's supposed to be called only from (de)muxers.
diff --git a/libavformat/assdec.c b/libavformat/assdec.c index 6b9c3de..b100f2c 100644 --- a/libavformat/assdec.c +++ b/libavformat/assdec.c
@@ -86,7 +86,7 @@ st = avformat_new_stream(s, NULL); if (!st) return -1; - av_set_pts_info(st, 64, 1, 100); + avpriv_set_pts_info(st, 64, 1, 100); st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; st->codec->codec_id= CODEC_ID_SSA;