[FFmpeg-cvslog] avfilter/vf_subtitles: remove usage of AVCodecContext accessors
James Almer
git at videolan.org
Wed Nov 15 06:18:42 EET 2017
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Mon Nov 13 00:11:34 2017 -0300| [03dae121c0508bddeac30245042485420a0a3370] | committer: James Almer
avfilter/vf_subtitles: remove usage of AVCodecContext accessors
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=03dae121c0508bddeac30245042485420a0a3370
---
libavfilter/vf_subtitles.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_subtitles.c b/libavfilter/vf_subtitles.c
index 66a564699a..a7b02461f2 100644
--- a/libavfilter/vf_subtitles.c
+++ b/libavfilter/vf_subtitles.c
@@ -413,7 +413,7 @@ static av_cold int init_subtitles(AVFilterContext *ctx)
*
* That API is old and needs to be reworked to match behaviour with A/V.
*/
- av_codec_set_pkt_timebase(dec_ctx, st->time_base);
+ dec_ctx->pkt_timebase = st->time_base;
ret = avcodec_open2(dec_ctx, NULL, &codec_opts);
if (ret < 0)
More information about the ffmpeg-cvslog
mailing list