mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avformat/pjsdec: Simplify cleanup after read_header failure
by setting the FF_FMT_INIT_CLEANUP flag. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
d2574262a5
commit
ae123057a3
@ -93,10 +93,8 @@ static int pjs_read_header(AVFormatContext *s)
|
||||
|
||||
p[strcspn(p, "\"")] = 0;
|
||||
sub = ff_subtitles_queue_insert(&pjs->q, p, strlen(p), 0);
|
||||
if (!sub) {
|
||||
ff_subtitles_queue_clean(&pjs->q);
|
||||
if (!sub)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
sub->pos = pos;
|
||||
sub->pts = pts_start;
|
||||
sub->duration = duration;
|
||||
@ -132,6 +130,7 @@ const AVInputFormat ff_pjs_demuxer = {
|
||||
.name = "pjs",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("PJS (Phoenix Japanimation Society) subtitles"),
|
||||
.priv_data_size = sizeof(PJSContext),
|
||||
.flags_internal = FF_FMT_INIT_CLEANUP,
|
||||
.read_probe = pjs_probe,
|
||||
.read_header = pjs_read_header,
|
||||
.read_packet = pjs_read_packet,
|
||||
|
Loading…
x
Reference in New Issue
Block a user