mirror of
https://github.com/simon987/libscan.git
synced 2025-04-05 04:22:58 +00:00
Read subtitles from media files, fix bug in text_buffer
This commit is contained in:
parent
b1f001d8f1
commit
097580eb40
@ -357,8 +357,13 @@ void parse_media_format_ctx(scan_media_ctx_t *ctx, AVFormatContext *pFormatCtx,
|
||||
}
|
||||
}
|
||||
|
||||
if (subtitle_stream != -1) {
|
||||
if (subtitle_stream != -1 && ctx->read_subtitles) {
|
||||
read_subtitles(ctx, pFormatCtx, subtitle_stream, doc);
|
||||
|
||||
// Reset stream
|
||||
if (video_stream != -1) {
|
||||
av_seek_frame(pFormatCtx, video_stream, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
if (video_stream != -1 && ctx->tn_size > 0) {
|
||||
|
2
third-party/utf8.h
vendored
2
third-party/utf8.h
vendored
@ -1 +1 @@
|
||||
Subproject commit 42f5b90d44571ef84b528555a72e819d5ed1f6c6
|
||||
Subproject commit ee5a7d4beb7755da13e4d4ec3eccfb65a0530456
|
Loading…
x
Reference in New Issue
Block a user