mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-11 09:07:29 +00:00
vp9: move VP9SharedContext back to the top of VP9Context
VP9SharedContext needs to be the first member so its properties can be safely accessed from hardware accelerators, without the need to share the full VP9Context. Fixes ticket #6674.
This commit is contained in:
parent
18821e3ba1
commit
b4ecf2b582
@ -89,8 +89,8 @@ typedef struct VP9Block {
|
||||
typedef struct VP9TileData VP9TileData;
|
||||
|
||||
typedef struct VP9Context {
|
||||
VP9TileData *td;
|
||||
VP9SharedContext s;
|
||||
VP9TileData *td;
|
||||
|
||||
VP9DSPContext dsp;
|
||||
VideoDSPContext vdsp;
|
||||
|
Loading…
Reference in New Issue
Block a user