From 30a76487304e7250294c9c0e9fa179bf07fd822a Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sat, 29 Dec 2012 12:31:01 +0100 Subject: hlsenc: make segment number unsigned It will overflow if somebody keeps streaming for a time long enough. --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/hlsenc.c') diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 32b8ab9..4f74b5f 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -38,7 +38,7 @@ typedef struct ListEntry { typedef struct HLSContext { const AVClass *class; // Class for private options. - int number; + unsigned number; int64_t sequence; AVOutputFormat *oformat; AVFormatContext *avf; -- cgit v1.1