From: Karthick Jeyapal
---
doc/muxers.texi | 2 ++
libavformat/dashenc.c | 67 +--
2 files changed, 56 insertions(+), 13 deletions(-)
diff --git a/doc/muxers.texi b/doc/muxers.texi
index 3d0c7bf..d6415db 100644
--- a/doc/muxers.texi
+++ b/d
From: Karthick Jeyapal
---
libavformat/hlsenc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e3442c3..5ee28ea 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -1918,6 +1918,8 @@ static int hls_write_trailer(struct AVFormat
From: Karthick Jeyapal
The HLS specification states the following about EXT-X-TARGETDURATION
4.3.3.1. EXT-X-TARGETDURATION
The EXT-X-TARGETDURATION tag specifies the maximum Media Segment
duration. The EXTINF duration of each Media Segment in the Playlist
file, when rounded to the ne
From: Karthick Jeyapal
The HLS specification states the following about EXT-X-TARGETDURATION
4.3.3.1. EXT-X-TARGETDURATION
The EXT-X-TARGETDURATION tag specifies the maximum Media Segment
duration. The EXTINF duration of each Media Segment in the Playlist
file, when rounded to the ne
From: Karthick Jeyapal
dashenc no longer needs this function.
---
libavformat/hlsenc.c | 5 +
libavformat/hlsplaylist.h | 5 -
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 29fc1d4..14a9a12 100644
--- a/libavformat/h
From: Karthick Jeyapal
Currently http end of chunk is called implicitly in hlsenc_io_open().
This mean playlists http writes would have to wait upto a segment duration to
signal end of chunk causing delays.
This patch will fix that problem and improve performance.
---
libavformat/hlsenc.c | 5 +
From: Karthick Jeyapal
Right now there is no explicit way to signal end of chunk, when http_multiple
is set.
ff_http_do_new_request() function implicitly signals end of chunk. But that
could be too late for certain applications.
Hence added a new function ff_http_signal_end_of_chunk() which cou
From: Karthick Jeyapal
---
libavformat/http.c | 8 +---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/libavformat/http.c b/libavformat/http.c
index cf86adc..4635a9a 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -307,9 +307,11 @@ int ff_http_do_new_request(URLCon
From: Karthick Jeyapal
Currently http end of chunk is signalled implicitly in hlsenc_io_open().
This mean playlists http writes would have to wait upto a segment duration to
signal end of chunk causing delays.
This patch will fix that problem and improve performance.
---
libavformat/hlsenc.c |
From: Karthick Jeyapal
---
libavformat/hlsenc.c | 2 +-
libavformat/hlsplaylist.c | 5 +++--
libavformat/hlsplaylist.h | 3 ++-
3 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index fe531fb..5cff3b4 100644
--- a/libavformat/hlsenc.c
From: Karthick Jeyapal
---
libavformat/hlsenc.c | 6 ++
libavformat/hlsplaylist.c | 9 +
libavformat/hlsplaylist.h | 1 +
3 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 74f66ce..fe531fb 100644
--- a/libavformat/h
From: Karthick Jeyapal
This is required for AV playout from master.m3u8.
Otherwise master.m3u8 lists only video-only and/or audio-only streams.
---
libavformat/dashenc.c | 24 ++--
1 file changed, 22 insertions(+), 2 deletions(-)
diff --git a/libavformat/dashenc.c b/libavfor
From: Karthick Jeyapal
Otherwise some versions of chrome browser returns "codec not supported" error
---
libavformat/dashenc.c | 79 ++-
1 file changed, 78 insertions(+), 1 deletion(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
ind
From: Karthick Jeyapal
There is a separate muxer(webmdashenc.c) for supporting VP9+webm output in DASH.
Hence in this muxer we will focus on supporting VP9 in MP4
Have verified playout support of VP9+MP4 in Chrome and Firefox.
---
libavformat/dashenc.c | 3 +--
1 file changed, 1 insertion(+), 2
From: Karthick Jeyapal
Otherwise some versions of chrome browser returns "codec not supported" error
---
libavformat/dashenc.c | 34 --
1 file changed, 28 insertions(+), 6 deletions(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index fefe3ce..a5f5
From: Karthick Jeyapal
---
libavformat/vpcc.c | 53 ++---
libavformat/vpcc.h | 2 +-
2 files changed, 51 insertions(+), 4 deletions(-)
diff --git a/libavformat/vpcc.c b/libavformat/vpcc.c
index 66d0df6..7951448 100644
--- a/libavformat/vpcc.c
+++
From: Karthick Jeyapal
There is a separate muxer(webmdashenc.c) for supporting VP9+webm output in DASH.
Hence in this muxer we will focus on supporting VP9 in MP4
Have verified playout support of VP9+MP4 in Chrome and Firefox.
---
libavformat/dashenc.c | 3 +--
1 file changed, 1 insertion(+), 2
From: Karthick Jeyapal
Right now segment file format is chosen to be either mp4 or webm based on the
codec format.
This patch makes that choice configurable by the user, instead of being decided
by the muxer.
---
doc/muxers.texi | 8
libavformat/dashenc.c | 48 +
From: Karthick Jeyapal
Applicable only to webm output format.
By default all the segment filenames end with .m4s extension.
When someone chooses webm output format, we recommend they also override the
relevant segment name options to end with .webm extension. This patch will
issue a warning for
From: Karthick Jeyapal
---
doc/muxers.texi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/doc/muxers.texi b/doc/muxers.texi
index 2429f8e..ea80296 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -252,6 +252,8 @@ DASH-templated name to used for the initialization segment.
Default is
From: Karthick Jeyapal
---
libavformat/dashenc.c | 2 +-
libavformat/hlsenc.c | 67 ++-
libavformat/hlsplaylist.c | 5 +++-
libavformat/hlsplaylist.h | 3 ++-
4 files changed, 73 insertions(+), 4 deletions(-)
diff --git a/libavformat/dashe
From: Karthick Jeyapal
---
libavformat/dashenc.c | 2 +-
libavformat/hlsenc.c | 67 ++-
libavformat/hlsplaylist.c | 5 +++-
libavformat/hlsplaylist.h | 3 ++-
4 files changed, 73 insertions(+), 4 deletions(-)
diff --git a/libavformat/dashe
From: Karthick Jeyapal
---
libavformat/dashenc.c | 2 +-
libavformat/hlsenc.c | 67 ++-
libavformat/hlsplaylist.c | 5 +++-
libavformat/hlsplaylist.h | 3 ++-
4 files changed, 73 insertions(+), 4 deletions(-)
diff --git a/libavformat/dashe
From: Karthick Jeyapal
---
libavformat/dashenc.c | 11 +++
1 file changed, 11 insertions(+)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 3345b89..c4c112b 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1,6 +1,7 @@
/*
* MPEG-DASH ISO BMFF segment
From: Karthick Jeyapal
Currently http end of chunk is signalled implicitly in dashenc_io_open().
This mean playlists http writes would have to wait upto a segment duration to
signal end of chunk causing delays.
This patch will fix that problem and improve performance.
---
libavformat/dashenc.c
From: Karthick Jeyapal
---
libavformat/dashenc.c | 4
1 file changed, 4 insertions(+)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 3345b89..2e4ff67 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1,6 +1,7 @@
/*
* MPEG-DASH ISO BMFF segmenter
* Co
From: Karthick Jeyapal
Currently http end of chunk is signalled implicitly in dashenc_io_open().
This mean playlists http writes would have to wait upto a segment duration to
signal end of chunk causing delays.
This patch will fix that problem and improve performance.
---
libavformat/dashenc.c
From: Karthick Jeyapal
If somebody else wants to maintain dashenc either now or in future,
I am absolutely fine with giving up this responsibility anytime.
But till then we need a maintainer for dashenc, and I am volunteering for that
task.
---
MAINTAINERS | 1 +
1 file changed, 1 insertion(+)
From: Karthick Jeyapal
---
libavformat/dashenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index d6474f3..ebff3c5 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1307,7 +1307,7 @@ static int dash_write_pac
From: Karthick Jeyapal
Right now segment file format is chosen to be either mp4 or webm based on the
codec format.
This patch makes that choice configurable by the user, instead of being decided
by the muxer.
Also with this change per-stream choice segment file format(based on codec
type) is
From: Karthick Jeyapal
Applicable only to webm output format.
By default all the segment filenames end with .m4s extension.
When someone chooses webm output format, we recommend they also override the
relevant segment name options to end with .webm extension. This patch will
issue a warning for
From: Karthick Jeyapal
---
libavformat/dashenc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index ae57fd5..229a56e 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -909,7 +909,8 @@ static int write_manifest
---
libavformat/dashenc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index f8d71166d4..9dd520787f 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1750,10 +1750,10 @@ static int dash_write_packet(AVFormatC
Currently streaming for webm output doesn't work.
Disabling explicitly will make sure that the manifest will get generated
correctly.
---
libavformat/dashenc.c | 5 +
1 file changed, 5 insertions(+)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index f8d71166d4..d8dcbc1230 10064
This bug was introduced in the commit 951561b64ee6c11f01daedd9dcf73276cc1e765b
---
libavformat/dashenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 5f1333e436..b88d4b3496 100644
--- a/libavformat/dashenc.c
+++ b/libavform
---
libavformat/movenc.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 8969d5b170..f46cbc5ea5 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -6745,9 +6745,8 @@ static int mov_write_trailer(AVFormatContext
---
doc/muxers.texi | 3 ++
libavformat/dashenc.c | 119 --
2 files changed, 84 insertions(+), 38 deletions(-)
diff --git a/doc/muxers.texi b/doc/muxers.texi
index aac7d94edf..83ae017d6c 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -293,6 +
101 - 137 of 137 matches
Mail list logo