summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-03-16 00:20:47 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-03-26 06:36:43 +0100
commit29aa499fc965ebd539ec5076a2b9293edc07acf8 (patch)
treeb6bbc2c4fcc80f23cdd1b30145035bdcd9b1a955 /libavformat
parentcee70b9f1b378ae1ea6c4aaa7178d89f39768ea8 (diff)
avformat/cdg: Don't store avio_size() return value in int
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/cdg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cdg.c b/libavformat/cdg.c
index 2030cdff89..43d919e302 100644
--- a/libavformat/cdg.c
+++ b/libavformat/cdg.c
@@ -46,7 +46,7 @@ static int read_probe(const AVProbeData *p)
static int read_header(AVFormatContext *s)
{
AVStream *vst;
- int ret;
+ int64_t ret;
vst = avformat_new_stream(s, NULL);
if (!vst)