Skip to content

Commit

Permalink
command: minor m_property_strdup_ro style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
na-na-hi authored and Dudemanguy committed Jan 20, 2024
1 parent 2cb1485 commit 02c6165
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions player/command.c
Original file line number Diff line number Diff line change
Expand Up @@ -1781,8 +1781,7 @@ static int mp_property_audio_devices(void *ctx, struct m_property *prop,
static int mp_property_ao(void *ctx, struct m_property *p, int action, void *arg)
{
MPContext *mpctx = ctx;
return m_property_strdup_ro(action, arg,
mpctx->ao ? ao_get_name(mpctx->ao) : NULL);
return m_property_strdup_ro(action, arg, mpctx->ao ? ao_get_name(mpctx->ao) : NULL);
}

/// Audio delay (RW)
Expand Down Expand Up @@ -2762,15 +2761,15 @@ static int mp_property_perf_info(void *ctx, struct m_property *p, int action,
static int mp_property_vo(void *ctx, struct m_property *p, int action, void *arg)
{
MPContext *mpctx = ctx;
return m_property_strdup_ro(action, arg,
mpctx->video_out ? mpctx->video_out->driver->name : NULL);
return m_property_strdup_ro(action, arg, mpctx->video_out ?
mpctx->video_out->driver->name : NULL);
}

static int mp_property_gpu_context(void *ctx, struct m_property *p, int action, void *arg)
{
MPContext *mpctx = ctx;
return m_property_strdup_ro(action, arg,
mpctx->video_out ? mpctx->video_out->context_name : NULL);
return m_property_strdup_ro(action, arg, mpctx->video_out ?
mpctx->video_out->context_name : NULL);
}

static int mp_property_osd_dim(void *ctx, struct m_property *prop,
Expand Down

0 comments on commit 02c6165

Please sign in to comment.