Commit 2755abff authored by Clément Bœsch's avatar Clément Bœsch

lavc/rt: small wording fix in a comment.

parent 7333798c
...@@ -65,7 +65,7 @@ static int realtext_decode_frame(AVCodecContext *avctx, ...@@ -65,7 +65,7 @@ static int realtext_decode_frame(AVCodecContext *avctx,
av_bprint_init(&buf, 0, 4096); av_bprint_init(&buf, 0, 4096);
// note: no need to rescale pts & duration since they are in the same // note: no need to rescale pts & duration since they are in the same
// timebase than ASS (1/100) // timebase as ASS (1/100)
if (ptr && avpkt->size > 0 && !rt_event_to_ass(&buf, ptr)) if (ptr && avpkt->size > 0 && !rt_event_to_ass(&buf, ptr))
ff_ass_add_rect(sub, buf.str, avpkt->pts, avpkt->duration, 0); ff_ass_add_rect(sub, buf.str, avpkt->pts, avpkt->duration, 0);
*got_sub_ptr = sub->num_rects > 0; *got_sub_ptr = sub->num_rects > 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment