Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-07-17 08:47:44 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-07-26 17:58:42 +0300
commitefcb4112fc3bf6b705a50faddac7b7ee5181e870 (patch)
tree8bda226c4178fc1a6c8509049a5779de096d0073 /libavformat/segafilm.c
parent3d114c102a945718b2141d952a47a0f8226235d2 (diff)
avformat/segafilm: Reorder elements of struct to make it smaller
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/segafilm.c')
-rw-r--r--libavformat/segafilm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/segafilm.c b/libavformat/segafilm.c
index 777606bcb6..4d14b81d16 100644
--- a/libavformat/segafilm.c
+++ b/libavformat/segafilm.c
@@ -40,8 +40,8 @@
typedef struct film_sample {
int stream;
- int64_t sample_offset;
unsigned int sample_size;
+ int64_t sample_offset;
int64_t pts;
int keyframe;
} film_sample;