suggested fix for ticket 11194; see ticket for more info. i haven't been able 
to test this since i don't have any build tools installed, but decided to 
submit it since it seems to be a trivial change and easy to test

---
 libavformat/utils.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index e9ded627ad..41acc71949 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -280,7 +280,7 @@ uint64_t ff_parse_ntp_time(uint64_t ntp_ts)
     return (sec * 1000000) + usec;
 }
 
-int av_get_frame_filename2(char *buf, int buf_size, const char *path, int 
number, int flags)
+int av_get_frame_filename2(char *buf, int buf_size, const char *path, int64_t 
number, int flags)
 {
     const char *p;
     char *q, buf1[20], c;
@@ -338,7 +338,7 @@ fail:
     return -1;
 }
 
-int av_get_frame_filename(char *buf, int buf_size, const char *path, int 
number)
+int av_get_frame_filename(char *buf, int buf_size, const char *path, int64_t 
number)
 {
     return av_get_frame_filename2(buf, buf_size, path, number, 0);
 }
-- 
2.46.0.windows.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to