forked from FFmpeg/FFmpeg
avcodec/vc2enc: Avoid void* where possible
Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
2d818644a3
commit
6d86146fce
1 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ typedef struct Plane {
|
|||
typedef struct SliceArgs {
|
||||
PutBitContext pb;
|
||||
int cache[DIRAC_MAX_QUANT_INDEX];
|
||||
void *ctx;
|
||||
struct VC2EncContext *ctx;
|
||||
int x;
|
||||
int y;
|
||||
int quant_idx;
|
||||
|
@ -116,7 +116,7 @@ typedef struct SliceArgs {
|
|||
} SliceArgs;
|
||||
|
||||
typedef struct TransformArgs {
|
||||
void *ctx;
|
||||
struct VC2EncContext *ctx;
|
||||
Plane *plane;
|
||||
const void *idata;
|
||||
ptrdiff_t istride;
|
||||
|
|
Loading…
Add table
Reference in a new issue