summaryrefslogtreecommitdiff
path: root/libavdevice/caca.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-11-29 16:28:08 +0100
committerAnton Khirnov <anton@khirnov.net>2020-12-10 09:45:19 +0100
commitfcf7ef0a8128e73cd0b921732d309b0eb558e80e (patch)
tree18bf8a3163c8d6ec29bf593c3bafb057b94a57d7 /libavdevice/caca.c
parent5471b8944c2bd1650fef3bc6647743972f0c5b14 (diff)
lavd/caca: do not access deprecated codec context
Use the stream timebase instead.
Diffstat (limited to 'libavdevice/caca.c')
-rw-r--r--libavdevice/caca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/caca.c b/libavdevice/caca.c
index be3ff79736..726cfda95f 100644
--- a/libavdevice/caca.c
+++ b/libavdevice/caca.c
@@ -180,7 +180,7 @@ static int caca_write_header(AVFormatContext *s)
if (!c->window_title)
c->window_title = av_strdup(s->url);
caca_set_display_title(c->display, c->window_title);
- caca_set_display_time(c->display, av_rescale_q(1, st->codec->time_base, AV_TIME_BASE_Q));
+ caca_set_display_time(c->display, av_rescale_q(1, st->time_base, AV_TIME_BASE_Q));
return 0;