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
1 changed files with 2 additions and 1 deletions

View File

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