summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZane van Iperen <zane@zanevaniperen.com>2020-07-29 22:06:50 +1000
committerZane van Iperen <zane@zanevaniperen.com>2020-07-30 11:48:28 +1000
commitbe3c10d5517824318254a99007c7b1c07559c264 (patch)
tree3afcd42dfe38a260fa167e4eb9c9794ba09e177f
parent8a3f561c341fb2c2b7667c38a6801e2633257577 (diff)
avformat/apm: fix APM_FILE_HEADER_SIZE value
Value was incorrectly changed in 3bf1be210150b435c51c7c8eb8fd05a1fca08814. Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
-rw-r--r--libavformat/apm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/apm.c b/libavformat/apm.c
index 4c5844c83e..38a0f6382a 100644
--- a/libavformat/apm.c
+++ b/libavformat/apm.c
@@ -26,7 +26,7 @@
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
-#define APM_FILE_HEADER_SIZE 18
+#define APM_FILE_HEADER_SIZE 20
#define APM_FILE_EXTRADATA_SIZE 80
#define APM_EXTRADATA_SIZE 28
@@ -287,7 +287,7 @@ static int apm_write_trailer(AVFormatContext *s)
int64_t file_size, data_size;
file_size = avio_tell(s->pb);
- data_size = file_size - (APM_FILE_HEADER_SIZE + 2 + APM_FILE_EXTRADATA_SIZE);
+ data_size = file_size - (APM_FILE_HEADER_SIZE + APM_FILE_EXTRADATA_SIZE);
if (file_size >= UINT32_MAX) {
av_log(s, AV_LOG_ERROR,