lavd/avfoundation: Fix mixed declaration and code

This commit is contained in:
Thilo Borgmann 2022-02-22 13:10:42 +01:00
parent 079de49912
commit a473e11e32

View File

@ -313,9 +313,10 @@ static void destroy_context(AVFContext* ctx)
static int parse_device_name(AVFormatContext *s) static int parse_device_name(AVFormatContext *s)
{ {
AVFContext *ctx = (AVFContext*)s->priv_data; AVFContext *ctx = (AVFContext*)s->priv_data;
ctx->url = av_strdup(s->url);
char *save; char *save;
ctx->url = av_strdup(s->url);
if (!ctx->url) if (!ctx->url)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
if (ctx->url[0] != ':') { if (ctx->url[0] != ':') {