avformat/jvdec: Make sizeof(JVFrame) smaller to save memory
Reviewed-by: Peter Ross <pross@xvid.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
9f4708c22d
commit
2882286a08
@ -36,8 +36,8 @@
|
|||||||
typedef struct JVFrame {
|
typedef struct JVFrame {
|
||||||
int audio_size; /**< audio packet size (bytes) */
|
int audio_size; /**< audio packet size (bytes) */
|
||||||
int video_size; /**< video packet size (bytes) */
|
int video_size; /**< video packet size (bytes) */
|
||||||
int palette_size; /**< palette size (bytes) */
|
uint16_t palette_size; /**< palette size (bytes) */
|
||||||
int video_type; /**< per-frame video compression type */
|
uint8_t video_type; /**< per-frame video compression type */
|
||||||
} JVFrame;
|
} JVFrame;
|
||||||
|
|
||||||
typedef struct JVDemuxContext {
|
typedef struct JVDemuxContext {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user