diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-01 17:13:26 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-02 10:42:25 +0200 |
commit | f7eec8956d592c745f1ac6897ccb48fb10117a12 (patch) | |
tree | 261eb6f1f56c7a1f78fb86c8fd6bc0fee3d2a7b0 /libavformat/segment.c | |
parent | 34bf06a35c169d0ebb681802cf7168bf4d4eecdf (diff) | |
download | ffmpeg-f7eec8956d592c745f1ac6897ccb48fb10117a12.tar.gz |
lavf/segment: set EXT-X-VERSION to 3 rather than to 4
There is nothing we use of the latest version, downgrade version number
to increase decoding support.
Based on this comment by vel2000:
http://ffmpeg.org/trac/ffmpeg/ticket/1642#comment:17
Diffstat (limited to 'libavformat/segment.c')
-rw-r--r-- | libavformat/segment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c index e148dc020b..1dda310b3f 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -127,7 +127,7 @@ static int segment_list_open(AVFormatContext *s) if (seg->list_type == LIST_TYPE_M3U8) { avio_printf(seg->list_pb, "#EXTM3U\n"); - avio_printf(seg->list_pb, "#EXT-X-VERSION:4\n"); + avio_printf(seg->list_pb, "#EXT-X-VERSION:3\n"); } return ret; |