avfilter/vf_signature: Dont crash on no frames
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 3d5f03bbc8bba2929cc09b07d2731ae5d392e772) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
74e4e900bb
commit
7570390be6
@ -379,6 +379,9 @@ static int xml_export(AVFilterContext *ctx, StreamContext *sc, const char* filen
|
|||||||
FILE* f;
|
FILE* f;
|
||||||
unsigned int pot3[5] = { 3*3*3*3, 3*3*3, 3*3, 3, 1 };
|
unsigned int pot3[5] = { 3*3*3*3, 3*3*3, 3*3, 3, 1 };
|
||||||
|
|
||||||
|
if (!sc->coarseend->last)
|
||||||
|
return AVERROR(EINVAL); // No frames ?
|
||||||
|
|
||||||
f = avpriv_fopen_utf8(filename, "w");
|
f = avpriv_fopen_utf8(filename, "w");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
int err = AVERROR(EINVAL);
|
int err = AVERROR(EINVAL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user