[FFmpeg-cvslog] lavf/mpegts.c: set some properties for ARIB caption
TADANO Tokumei
git at videolan.org
Tue Mar 28 19:05:47 EEST 2023
ffmpeg | branch: master | TADANO Tokumei <aimingoff at pc.nifty.jp> | Thu Feb 23 19:17:17 2023 +0900| [38bb137e9923a4c4c64befcf8b5fda29691440e0] | committer: rcombs
lavf/mpegts.c: set some properties for ARIB caption
Some additional properties are set for ARIB caption.
* need_parsing = 0
ARIB caption doesn't require any parser.
This avoids "parser not found" warning message.
* need_context_update = 1
When any profiles are changed, set this flag to notify.
Signed-off-by: rcombs <rcombs at rcombs.me>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=38bb137e9923a4c4c64befcf8b5fda29691440e0
---
libavformat/mpegts.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index a8fa3c0b28..385d78b98b 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -2176,8 +2176,12 @@ int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type
st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
st->codecpar->codec_id = AV_CODEC_ID_ARIB_CAPTION;
- st->codecpar->profile = picked_profile;
+ if (st->codecpar->profile != picked_profile) {
+ st->codecpar->profile = picked_profile;
+ sti->need_context_update = 1;
+ }
sti->request_probe = 0;
+ sti->need_parsing = 0;
}
break;
case 0xb0: /* DOVI video stream descriptor */
More information about the ffmpeg-cvslog
mailing list