1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-11 23:27:55 +02:00

lavfi/hdcd: fix style

This commit is contained in:
Clément Bœsch 2016-07-28 09:29:45 +02:00
parent 4791716c1d
commit 37abc8cca2

View File

@ -852,16 +852,16 @@ typedef struct {
} hdcd_state_t;
typedef enum {
HDCD_PE_NEVER =0,
HDCD_PE_INTERMITTENT =1,
HDCD_PE_PERMANENT =2
HDCD_PE_NEVER = 0,
HDCD_PE_INTERMITTENT = 1,
HDCD_PE_PERMANENT = 2,
} hdcd_pe_t;
static const char * const pe_str[] = {
"never enabled",
"enabled intermittently",
"enabled permanently"
};
};
typedef struct HDCDContext {
const AVClass *class;
@ -1165,7 +1165,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
s->peak_extend = HDCD_PE_PERMANENT;
else
s->peak_extend = HDCD_PE_INTERMITTENT;
} else s->peak_extend = HDCD_PE_NEVER;
} else {
s->peak_extend = HDCD_PE_NEVER;
}
/* HDCD is detected if a valid packet is active in all (both)
* channels at the same time. */
if (detect == inlink->channels) s->hdcd_detected = 1;