avcodec/dfpwmenc: Remove write-only context member
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
11d3af0d7f
commit
82fa6b450d
1 changed files with 1 additions and 2 deletions
|
|
@ -32,7 +32,7 @@
|
|||
#include "internal.h"
|
||||
|
||||
typedef struct {
|
||||
int fq, q, s, lt;
|
||||
int q, s, lt;
|
||||
} DFPWMState;
|
||||
|
||||
// DFPWM codec from https://github.com/ChenThread/dfpwm/blob/master/1a/
|
||||
|
|
@ -79,7 +79,6 @@ static av_cold int dfpwm_enc_init(struct AVCodecContext *ctx)
|
|||
{
|
||||
DFPWMState *state = ctx->priv_data;
|
||||
|
||||
state->fq = 0;
|
||||
state->q = 0;
|
||||
state->s = 0;
|
||||
state->lt = -128;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue