avformat/sierravmd: Make struct smaller by reordering

Also remove keyframe from vmd_frame, it is unused.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2021-03-24 02:17:35 +01:00 committed by Andreas Rheinhardt
parent 440a401d89
commit 558426b847
1 changed files with 1 additions and 2 deletions

View File

@ -38,10 +38,9 @@
typedef struct vmd_frame {
int stream_index;
int64_t frame_offset;
unsigned int frame_size;
int64_t frame_offset;
int64_t pts;
int keyframe;
unsigned char frame_record[BYTES_PER_FRAME_RECORD];
} vmd_frame;