[FFmpeg-cvslog] avformat/segafilm: Reorder elements of struct to make it smaller

Andreas Rheinhardt git at videolan.org
Sun Jul 26 18:23:28 EEST 2020


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Fri Jul 17 07:47:44 2020 +0200| [efcb4112fc3bf6b705a50faddac7b7ee5181e870] | committer: Andreas Rheinhardt

avformat/segafilm: Reorder elements of struct to make it smaller

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=efcb4112fc3bf6b705a50faddac7b7ee5181e870
---

 libavformat/segafilm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;



More information about the ffmpeg-cvslog mailing list