]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/frame_thread_encoder: Use more natural types
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sun, 7 Feb 2021 19:35:09 +0000 (20:35 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 16 Feb 2021 21:11:53 +0000 (22:11 +0100)
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/frame_thread_encoder.c

index f1f4fcb4905445298894dc4f93986ceee8cd6913..778317d60bbb479b238a24b6b06b98759e0eabf8 100644 (file)
@@ -40,7 +40,7 @@
 typedef struct{
     AVFrame  *indata;
     AVPacket *outdata;
-    int64_t return_code;
+    int       return_code;
     int       finished;
 } Task;