[FFmpeg-cvslog] lavf/segment: use correct spelling and value for EXT-X-ALLOW-CACHE tag

Carl Eugen Hoyos git at videolan.org
Sun Feb 3 11:20:08 CET 2013


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sun Feb  3 11:12:49 2013 +0100| [90020d7f4bf2f0f18fca6ba731152886d8c923fd] | committer: Stefano Sabatini

lavf/segment: use correct spelling and value for EXT-X-ALLOW-CACHE tag

Replace wrong "EXT-X-ALLOWCACHE" with "EXT-X-ALLOW-CACHE", and value 1/0
with YES/NO, as per spec.

Fix trac ticket #2228.

Signed-off-by: Stefano Sabatini <stefasab at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=90020d7f4bf2f0f18fca6ba731152886d8c923fd
---

 libavformat/segment.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/segment.c b/libavformat/segment.c
index 7d72229..9c271eb 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -219,8 +219,8 @@ static int segment_list_open(AVFormatContext *s)
         avio_printf(seg->list_pb, "#EXTM3U\n");
         avio_printf(seg->list_pb, "#EXT-X-VERSION:3\n");
         avio_printf(seg->list_pb, "#EXT-X-MEDIA-SEQUENCE:%d\n", seg->segment_list_entries->index);
-        avio_printf(seg->list_pb, "#EXT-X-ALLOWCACHE:%d\n",
-                    !!(seg->list_flags & SEGMENT_LIST_FLAG_CACHE));
+        avio_printf(seg->list_pb, "#EXT-X-ALLOW-CACHE:%s\n",
+                    seg->list_flags & SEGMENT_LIST_FLAG_CACHE ? "YES" : "NO");
 
         for (entry = seg->segment_list_entries; entry; entry = entry->next)
             max_duration = FFMAX(max_duration, entry->end_time - entry->start_time);



More information about the ffmpeg-cvslog mailing list