mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avfilter/f_cue: always check the return value of ff_inlink_consume_frame
Fixes Coverity CID 1439936. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
b1504e7796
commit
4db291d764
@ -51,7 +51,9 @@ static int activate(AVFilterContext *ctx)
|
|||||||
}
|
}
|
||||||
if (s->status == 1) {
|
if (s->status == 1) {
|
||||||
if (pts - s->first_pts < s->preroll) {
|
if (pts - s->first_pts < s->preroll) {
|
||||||
ff_inlink_consume_frame(inlink, &frame);
|
int ret = ff_inlink_consume_frame(inlink, &frame);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
return ff_filter_frame(outlink, frame);
|
return ff_filter_frame(outlink, frame);
|
||||||
}
|
}
|
||||||
s->first_pts = pts;
|
s->first_pts = pts;
|
||||||
@ -70,7 +72,9 @@ static int activate(AVFilterContext *ctx)
|
|||||||
s->status++;
|
s->status++;
|
||||||
}
|
}
|
||||||
if (s->status == 4) {
|
if (s->status == 4) {
|
||||||
ff_inlink_consume_frame(inlink, &frame);
|
int ret = ff_inlink_consume_frame(inlink, &frame);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
return ff_filter_frame(outlink, frame);
|
return ff_filter_frame(outlink, frame);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user