From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id B4E0940BCF for ; Sun, 8 May 2022 01:18:41 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id EF14168B2AE; Sun, 8 May 2022 04:18:33 +0300 (EEST) Received: from smtpbg.qq.com (smtpbg136.qq.com [106.55.201.188]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 591BD680CB2 for ; Sun, 8 May 2022 04:18:27 +0300 (EEST) X-QQ-mid: bizesmtp63t1651972702t1zsc11n Received: from localhost ( [114.245.19.167]) by bizesmtp.qq.com (ESMTP) with id ; Sun, 08 May 2022 09:18:22 +0800 (CST) X-QQ-SSF: 01100000002000Z0Z000000A0000000 X-QQ-FEAT: gONm3I/WPO3luz3JvtOf7RNl/CA0IRWRqYAFXydfCqo6XO6hpX7VE0JNzYhX3 dPEU5HnXiMYDSI+X9VZQgu91T/PG0WIyj09xFDlRXnboo1z/KRh0s9VaT0drUDxqTjyksxR PWbO4DfIWoqEKGbU7P0BB3QHw5CZqOTgUazwNIXEWHNqAzdEX33Le2kQKD9ws6s7awR8OSz /39VMl4D3ODI9A32YZl3RZYJ7dzuRmdq4dybLWd+7N1UTQa5DpDbgCztlDm5c0rcqIpYPM1 ZolE2Tok/URwpAEyH2BNLJ4q2MsmZ2wBLJDorKs8H/YhXN07uBtCQfsTkF54rS5iOFWGhph bOPqIMM X-QQ-GoodBg: 0 From: Steven Liu To: ffmpeg-devel@ffmpeg.org Date: Sun, 8 May 2022 09:17:22 +0800 Message-Id: <20220508011722.4072-2-lq@chinaffmpeg.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220508011722.4072-1-lq@chinaffmpeg.org> References: <20220508011722.4072-1-lq@chinaffmpeg.org> MIME-Version: 1.0 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:chinaffmpeg.org:qybgspam:qybgspam7 Subject: [FFmpeg-devel] [PATCH v2 2/2] avformat/hlsenc: expand the scope of flags from int32_t to int64_t X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Steven Liu Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: because the flags in AVOption support i64. Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index b9f79e30d8..00645ae74e 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -202,7 +202,7 @@ typedef struct HLSContext { int64_t init_time; // Set by a private option. int max_nb_segments; // Set by a private option. int hls_delete_threshold; // Set by a private option. - uint32_t flags; // enum HLSFlags + uint64_t flags; // enum HLSFlags uint32_t pl_type; // enum PlaylistType char *segment_filename; char *fmp4_init_filename; -- 2.34.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-request@ffmpeg.org with subject "unsubscribe".