forked from FFmpeg/FFmpeg
lavd/avfoundation: Fix mixed declaration and code
This commit is contained in:
parent
079de49912
commit
a473e11e32
1 changed files with 2 additions and 1 deletions
|
@ -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] != ':') {
|
||||
|
|
Loading…
Add table
Reference in a new issue