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 D253F42DB1 for ; Sun, 8 May 2022 00:56:39 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 496C968B39C; Sun, 8 May 2022 03:56:38 +0300 (EEST) Received: from smtpbg.qq.com (smtpbg138.qq.com [106.55.201.18]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3BE5368B0F2 for ; Sun, 8 May 2022 03:56:31 +0300 (EEST) X-QQ-mid: bizesmtp91t1651971318t1z51661 Received: from localhost ( [114.245.19.167]) by bizesmtp.qq.com (ESMTP) with id ; Sun, 08 May 2022 08:55:17 +0800 (CST) X-QQ-SSF: 01100000002000Z0Z000000A0000000 X-QQ-FEAT: BsQpu45j/u3cQf1S/VfsrVET26YYoCOkrPYWfkhpWwoFNRcmjo55tIidgi+mh d5+oQqyaKA9HZLGwcYRpxQV/6zSkyYoubsR/HPYrlY/2kD+o6VAozJ9UELO5EpvJpr4CmhG EDFmwLVcBwk8419WdXAl2mgYHA5Zu/RTUrOAAvJLDjpceevFJJbE4h0cp56vjsAsSf82DRr oNlMUhJLl7c/6rUWBkd8qkiWWafGnKx1RQJH9QiaQn84fvw30cf8dL4rMb7kS01TZbM91nk H5tqylP3/r6OyHJnRkGp+WS9ynV5acnTWDSjS6itoE5hGkSqU3ABWWqBC8b106hkQ/UAsli WJnOg7S X-QQ-GoodBg: 0 From: Steven Liu To: ffmpeg-devel@ffmpeg.org Date: Sun, 8 May 2022 08:54:18 +0800 Message-Id: <20220508005418.1270-2-lq@chinaffmpeg.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220508005418.1270-1-lq@chinaffmpeg.org> References: <20220508005418.1270-1-lq@chinaffmpeg.org> MIME-Version: 1.0 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:chinaffmpeg.org:qybgspam:qybgspam10 Subject: [FFmpeg-devel] [PATCH 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 d91c7ebcb7..8e91c7a980 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".