]> git.sesse.net Git - ffmpeg/commitdiff
avformat/segafilm: Reorder elements of struct to make it smaller
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Fri, 17 Jul 2020 05:47:44 +0000 (07:47 +0200)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sun, 26 Jul 2020 14:58:42 +0000 (16:58 +0200)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavformat/segafilm.c

index 777606bcb6448e80e313588d8bb009a0a3509cef..4d14b81d163eee6fb5587f855c48c23abc2849b0 100644 (file)
@@ -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;