ffmpeg: make use of ret error out in transcode_video().
This commit is contained in:
parent
086fc4d765
commit
63b5e99fab
7
ffmpeg.c
7
ffmpeg.c
@ -2135,9 +2135,9 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
|
|||||||
goto cont;
|
goto cont;
|
||||||
}
|
}
|
||||||
if (!ist->filtered_frame && !(ist->filtered_frame = avcodec_alloc_frame())) {
|
if (!ist->filtered_frame && !(ist->filtered_frame = avcodec_alloc_frame())) {
|
||||||
av_free(buffer_to_free);
|
ret = AVERROR(ENOMEM);
|
||||||
return AVERROR(ENOMEM);
|
goto end;
|
||||||
} else
|
}
|
||||||
avcodec_get_frame_defaults(ist->filtered_frame);
|
avcodec_get_frame_defaults(ist->filtered_frame);
|
||||||
filtered_frame = ist->filtered_frame;
|
filtered_frame = ist->filtered_frame;
|
||||||
*filtered_frame= *decoded_frame; //for me_threshold
|
*filtered_frame= *decoded_frame; //for me_threshold
|
||||||
@ -2158,6 +2158,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
end:
|
||||||
av_free(buffer_to_free);
|
av_free(buffer_to_free);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user