Re: [FFmpeg-devel] [PATCH] avfilter/vf_xpsnr: remove duplicated DSP infranstructure

2024-10-14 Thread Helmrich, Christian
ine; +const uint16_t *ref_line = (const uint16_t *) _ref_line; + +for (j = 0; j < outw; j++) { +unsigned error = main_line[j] - ref_line[j]; Same as above. Best, Christian + +m2 += error * error; +} + +return m2; +} + +void ff_psnr_init(PSNRDSPContext

[FFmpeg-devel] [PATCH v1] XPSNR: add maintainers

2024-09-06 Thread Helmrich, Christian
Hi, adding us XPSNR authors to MAINTAINERS, as requested/suggested in https://ffmpeg.org/pipermail/ffmpeg-devel/2024-September/332940.html Best, Christian Helmrich Fraunhofer HHI Von: Helmrich, Christian Gesendet: Montag, 26. August 2024 19:41 An: FFmpeg

[FFmpeg-devel] [PATCH v5] avfilter: add XPSNR filter

2024-08-28 Thread Helmrich, Christian
Following up on this: attached a (final, in our view) v5. Changes over v3: - cleanup and align to psnr filter - add metadata - add xpsnr tests for yuv and rgb Christian Von: Helmrich, Christian Gesendet: Montag, 26. August 2024 19:41 An: FFmpeg development

[FFmpeg-devel] [PATCH v4] avfilter: add XPSNR filter

2024-08-26 Thread Helmrich, Christian
.h: No such file or > directory > 38 | #include "internal.h" Thanks, fixed in v4 (attached). > the casts are unneeded Thanks, fixed in v4. > av_free*(NULL) is safe Thanks, fixed in v4. Christian Helmrich Fraunhofer HHI Von: ffm

Re: [FFmpeg-devel] [RFC] 7.1 Release

2024-08-21 Thread Helmrich, Christian
patch. Hi, would it also be possible to merge the following avfilter before branching? We haven't received any comments since early last year (the first version of the patch was from January 2023), not even on the new patch version 3. https://patchwork.ffmpeg.org/project/ffmpeg/patch/9aab9416fa7c4aec9b49cc6a94612...@hhi.fraunhofer.de/ https://ffmpeg.org/pipermail/ffmpeg-devel/2024-July/330691.html Thanks, Christian [...] ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH v3] avfilter: add XPSNR filter

2024-07-25 Thread Helmrich, Christian
ping Should anything be changed in this patch? Christian Helmrich Von: Helmrich, Christian Gesendet: Donnerstag, 4. Juli 2024 17:50 An: ffmpeg-devel@ffmpeg.org Betreff: [PATCH v3] avfilter: add XPSNR filter This is a continuation of last year's versi

[FFmpeg-devel] [PATCH v3] avfilter: add XPSNR filter

2024-07-04 Thread Helmrich, Christian
This is a continuation of last year's version of this filter patch, see also https://ffmpeg.org/pipermail/ffmpeg-devel/2023-January/305517.html It includes a fix in one of the stride variables and some cleanup in order to adhere even more to the FFmpeg coding guidelines. Christian Hel

[FFmpeg-devel] [PATCH v5 1/1] avcodec: add external enc libvvenc for H266/VVC

2024-06-05 Thread Christian Bartnik
configure step. Co-authored-by: Christian Bartnik chris1031...@gmail.com Signed-off-by: Thomas Siedel --- configure | 4 + doc/encoders.texi | 64 + fftools/ffmpeg_mux_init.c | 2 +- libavcodec/Makefile | 1 + libavcodec/allcodecs.c| 1 + libavcodec

[FFmpeg-devel] [PATCH v5 0/1] Add support for H266/VVC encoding

2024-06-05 Thread Christian Bartnik
declaration and definition - change if ((ret = func()) != 0) to: ret = func(); if (ret != 0) - remove check for correct pix_fmt - remove call of ff_side_data_set_encoder_stats Christian Bartnik (1): avcodec: add external enc libvvenc for H266/VVC configure | 4 + doc/encoders.texi

Re: [FFmpeg-devel] [PATCH v4 1/1] avcodec: add external enc libvvenc for H266/VVC

2024-06-04 Thread Christian
> On 4. Jun 2024, at 11:21, Anton Khirnov wrote: > > Quoting Christian Bartnik (2024-05-28 18:26:29) >> +static const AVOption options[] = { >> +{ "passlogfile", "Filename for 2 pass stats", OFFSET(stats), >> AV_OPT_TYPE_STR

[FFmpeg-devel] [PATCH v4 1/1] avcodec: add external enc libvvenc for H266/VVC

2024-05-28 Thread Christian Bartnik
configure step. Co-authored-by: Christian Bartnik chris1031...@gmail.com Signed-off-by: Thomas Siedel --- configure | 4 + doc/encoders.texi | 64 + fftools/ffmpeg_mux_init.c | 2 +- libavcodec/Makefile | 1 + libavcodec/allcodecs.c| 1 + libavcodec

[FFmpeg-devel] [PATCH v4 0/1] Add support for H266/VVC encoding

2024-05-28 Thread Christian Bartnik
this patchset. Christian Bartnik (1): avcodec: add external enc libvvenc for H266/VVC configure | 4 + doc/encoders.texi | 64 + fftools/ffmpeg_mux_init.c | 2 +- libavcodec/Makefile | 1 + libavcodec/allcodecs.c| 1 + libavcodec/libvvenc.c

Re: [FFmpeg-devel] [PATCH v3 2/2] avcodec: add external dec libvvdec for H266/VVC

2024-05-17 Thread Christian
> On 14. May 2024, at 18:28, Lynne via ffmpeg-devel > wrote: > > On 14/05/2024 17:09, Christian Bartnik wrote: >> From: Thomas Siedel >> Add external decoder VVdeC for H266/VVC decoding. >> Register new decoder libvvdec. >> Add libvvdec to wrap the v

Re: [FFmpeg-devel] [PATCH v3 1/2] avcodec: add external enc libvvenc for H266/VVC

2024-05-16 Thread Christian
> On 14. May 2024, at 18:49, Andreas Rheinhardt > wrote: > > Christian Bartnik: >> From: Thomas Siedel >> >> Add external encoder VVenC for H266/VVC encoding. >> Register new encoder libvvenc. >> Add libvvenc to wrap the vvenc interface. >&g

[FFmpeg-devel] [PATCH v3 2/2] avcodec: add external dec libvvdec for H266/VVC

2024-05-14 Thread Christian Bartnik
From: Thomas Siedel Add external decoder VVdeC for H266/VVC decoding. Register new decoder libvvdec. Add libvvdec to wrap the vvdec interface. Enable decoder by adding --enable-libvvdec in configure step. Co-authored-by: Christian Bartnik chris1031...@gmail.com Signed-off-by: Christian Bartnik

[FFmpeg-devel] [PATCH v3 1/2] avcodec: add external enc libvvenc for H266/VVC

2024-05-14 Thread Christian Bartnik
. Co-authored-by: Christian Bartnik chris1031...@gmail.com Signed-off-by: Christian Bartnik --- configure | 4 + doc/encoders.texi | 65 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/libvvenc.c | 566

[FFmpeg-devel] [PATCH v3 0/2] Add support for H266/VVC encoding

2024-05-14 Thread Christian Bartnik
doc/encoders.texi Christian Bartnik (2): avcodec: add external enc libvvenc for H266/VVC avcodec: add external dec libvvdec for H266/VVC configure | 9 + doc/encoders.texi | 65 + libavcodec/Makefile| 2 + libavcodec/allcodecs.c | 2 + libavcodec/libvvdec.c |

Re: [FFmpeg-devel] [PATCH v2 1/2] avcodec: add external enc libvvenc for H266/VVC

2024-05-07 Thread Christian
> On 7. May 2024, at 03:53, Nuo Mi wrote: > > Hi Christian, > Thank you for the patch. > Let us review and merge the encoder part. > > On Tue, May 7, 2024 at 1:05 AM Christian Bartnik <mailto:chris1031...@gmail.com>> > wrote: > >> From: Thomas Sie

[FFmpeg-devel] [PATCH v2 0/2] Add support for H266/VVC encoding

2024-05-06 Thread Christian Bartnik
decoder, feel free to cherry pick libvvenc only. The libvvenc patch only has been aligend to the current master without changing the implementation. The libvvdec patch has been cleaned up by removing the extradata parsing files and using existing code from cbs_h266. Christian Bartnik (2): avcodec: add

[FFmpeg-devel] [PATCH v2 1/2] avcodec: add external enc libvvenc for H266/VVC

2024-05-06 Thread Christian Bartnik
. Co-authored-by: Christian Bartnik chris1031...@gmail.com Signed-off-by: Christian Bartnik --- configure | 4 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/libvvenc.c | 501 + 4 files changed, 507 insertions

[FFmpeg-devel] [PATCH v2 2/2] avcodec: add external dec libvvdec for H266/VVC

2024-05-06 Thread Christian Bartnik
decoder by adding --enable-libvvdec in configure step. Co-authored-by: Christian Bartnik chris1031...@gmail.com Signed-off-by: Christian Bartnik --- configure | 5 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/libvvdec.c | 617

[FFmpeg-devel] [PATCH v2 2/2] avcodec: add external dec libvvdec for H266/VVC

2024-05-04 Thread Christian
-libvvdec in configure step. Co-authored-by: Christian Bartnik chris1031...@gmail.com <mailto:chris1031...@gmail.com> Signed-off-by: Christian Bartnik mailto:chris1031...@gmail.com>> --- configure | 5 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1

[FFmpeg-devel] [PATCH v2 1/2] avcodec: add external enc libvvenc for H266/VVC

2024-05-04 Thread Christian
: Christian Bartnik chris1031...@gmail.com <mailto:chris1031...@gmail.com> Signed-off-by: Christian Bartnik mailto:chris1031...@gmail.com>> --- configure | 4 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/libvv

[FFmpeg-devel] [PATCH v2 0/2] Add support for H266/VVC encoding

2024-05-04 Thread Christian
s_h266. Christian Bartnik (2): avcodec: add external enc libvvenc for H266/VVC avcodec: add external dec libvvdec for H266/VVC configure | 9 + libavcodec/Makefile| 2 + libavcodec/allcodecs.c | 2 + libavcodec/libvvdec.c | 617 + liba

[FFmpeg-devel] [PATCH 1/1] avformat/gopher: Add audio and video itemtypes

2024-03-04 Thread Christian Lee Seibold
The 's', ';', and '<' itemtypes are used for audio and video by Gophernicus and Gopher+. Signed-off-by: Christian Lee Seibold --- libavformat/gopher.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/gopher.c b/libavformat/gopher.c index 94

Re: [FFmpeg-devel] [PATCH] Request for adding XPSNR avfilter

2023-01-17 Thread Helmrich, Christian
> just attach patch with proper authorship, made with git format-patch. Small update, replacing our own MAX( ) define with FFmpeg's existing FFMAX( ) and adding a v2 to the patch so that, hopefully, the fate pipeline is triggered now. Best, Christian Helmrich Fraunhofer HHI, Vide

Re: [FFmpeg-devel] [PATCH] Request for adding XPSNR avfilter

2023-01-11 Thread Helmrich, Christian
Hi, > just attach patch with proper authorship, made with git fformat-patch. Done, attached. Best, Christian Helmrich Fraunhofer HHI, Video Coding and Analytics Department Von: ffmpeg-devel im Auftrag von Paul B Mahol Gesendet: Mittwoch, 11. Jan

Re: [FFmpeg-devel] [PATCH] Request for adding XPSNR avfilter

2023-01-11 Thread Helmrich, Christian
patch without the asm file, but keep the function pointers in case we manage to write better SIMD for the highds, diff1st, and diff2nd function later (for a smaller patch then). I prepared a new avfilter_xpsnr_v2.patch. Do I need to change the email (thread) title somehow so that a new pipeline is being

Re: [FFmpeg-devel] HRTF SOFA reader lib

2016-12-06 Thread Christian Hoene
Hi Paul, give me some more time until it passed all the tests. It is going to be ready for Christmas... Best, Christian > Paul B Mahol hat am 6. Dezember 2016 um 09:03 geschrieben: > > > On 12/6/16, Christian Hoene wrote: > > Hi, > > Hi, > > > >

[FFmpeg-devel] HRTF SOFA reader lib

2016-12-05 Thread Christian Hoene
. It is not yet fully finished but I though it is time to collect feedback so that I can enhance it. If you have same spare time, please let me know on what to change to make it useful for you guys… Best regards, Christian Hoene -- Symonics GmbH Geierweg 25 72144 Dußlingen Tel +49 7072 8006100

[FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: removed empty/unused print_encryption_tag function

2015-06-16 Thread Christian Suloway
Signed-off-by: Christian Suloway --- libavformat/hlsenc.c | 4 1 file changed, 4 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 68c6479..cf29f4f 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -310,10 +310,6 @@ static void hls_free_segments

[FFmpeg-devel] [PATCH 2/2] MAINTAINERS: add myself as hls encryption maintainer

2015-06-16 Thread Christian Suloway
Signed-off-by: Christian Suloway --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 7b239a1..fa9e966 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -416,6 +416,7 @@ Muxers/Demuxers: gxf.c Reimar Doeffinger

Re: [FFmpeg-devel] Anybody already working on VDPAU / HEVC support?

2015-04-30 Thread Christian König
On 30.04.2015 19:09, Philip Langdale wrote: On 2015-04-30 09:10, Christian König wrote: Hi list, since VDPAU has now officially picked up HEVC support I wonder if anybody is already working on integrating it into ffmpeg? I was hoping that Stephen Warren from nvidia would pop up again with

[FFmpeg-devel] Anybody already working on VDPAU / HEVC support?

2015-04-30 Thread Christian König
Hi list, since VDPAU has now officially picked up HEVC support I wonder if anybody is already working on integrating it into ffmpeg? Best regards, Christian. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2015-02-11 Thread Christian Suloway
bumping this thread On 2/3/15, 9:54 AM, "Christian Suloway" wrote: >Updated patch is attached. > >On 1/10/15, 3:06 PM, "Michael Niedermayer" wrote: >> >>i got it working after a few tries but >>please provide an example that works and docu

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2015-02-03 Thread Christian Suloway
that, i didnt realize this I have reverted this section to the previous strcspn() code. Thanks, Christian 0001-avformat-hlsenc-added-HLS-encryption.patch Description: 0001-avformat-hlsenc-added-HLS-encryption.patch ___ ffmpeg-devel mailing list ffmpeg-

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2015-01-09 Thread Christian Suloway
Resending attachment. From: ffmpeg-devel-boun...@ffmpeg.org on behalf of Christian Suloway Sent: Friday, January 9, 2015 5:02 PM To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2015-01-09 Thread Christian Suloway
New version of the patch attached to address your comments. Thanks, Christian On Jan 7, 2015, at 2:17 PM, Michael Niedermayer wrote: > Please add a testcase/example to either the documentation or > commit message Example added to the commit message. >> +ff_get_line(pb,

[FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2015-01-07 Thread Christian Suloway
key_info_file will be reflected in segment encryption along with an entry in the playlist for the new key URI and IV. Signed-off-by: Christian Suloway --- doc/muxers.texi | 9 libavformat/hlsenc.c | 130 +-- 2 files changed, 136 insertions

[FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-12-30 Thread Christian Suloway
key_info_file will be reflected in segment encryption along with an entry in the playlist for the new key URI and IV. Signed-off-by: Christian Suloway --- doc/muxers.texi | 9 libavformat/hlsenc.c | 130 +-- 2 files changed, 136 insertions

[FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-12-23 Thread Christian Suloway
key_info_file will be reflected in segment encryption along with an entry in the playlist for the new key URI and IV. Signed-off-by: Christian Suloway --- doc/muxers.texi | 9 ++ libavformat/hlsenc.c | 242 +-- 2 files changed, 245 insertions(+), 6

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-12-23 Thread Christian Suloway
On Dec 22, 2014, at 6:36 PM, Michael Niedermayer wrote: > this looks a bit odd, > see ff_get_line(), it probably allows to simplify this a lot Resubmitting using ff_get_line(). Thanks, Christian ___ ffmpeg-devel mailing list ffmpeg-devel@ffmp

[FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-12-22 Thread Christian Suloway
key_info_file will be reflected in segment encryption along with an entry in the playlist for the new key URI and IV. Signed-off-by: Christian Suloway --- doc/muxers.texi | 9 ++ libavformat/hlsenc.c | 235 +-- 2 files changed, 238 insertions(+), 6

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fix hls_write_trailer() on hls_start() failure

2014-12-16 Thread Christian Suloway
On 12/16/14, 3:23 AM, "Carl Eugen Hoyos" wrote: >Christian Suloway row44.com> writes: > >> Close segment I/O context and append segment in >> hls_write_trailer() only when segment I/O context >> is allocated. > >Was this a regression since 25ccf5df

[FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fix hls_write_trailer() on hls_start() failure

2014-12-15 Thread Christian Suloway
Close segment I/O context and append segment in hls_write_trailer() only when segment I/O context is allocated. Signed-off-by: Christian Suloway --- libavformat/hlsenc.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c

[FFmpeg-devel] [PATCH 2/2] avformat/hlsenc: added HLS encryption

2014-12-15 Thread Christian Suloway
key_info_file will be reflected in segment encryption along with an entry in the playlist for the new key URI and IV. Signed-off-by: Christian Suloway --- doc/muxers.texi | 9 ++ libavformat/hlsenc.c | 235 +-- 2 files changed, 238 insertions(+), 6

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-12-15 Thread Christian Suloway
point. I will resubmit the patch with the IV optionally specified as part of the ³key_info_file² and leave IV generation outside of ffmpeg. Let me know you would like this done differently. Thanks, Christian ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg

[FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-12-11 Thread Christian Suloway
the playlist for the new key URI. Also added -hls_flags random_iv option flag to use a random IV for encryption instead of the segment number. Signed-off-by: Christian Suloway --- doc/muxers.texi | 11 +++ libavformat/hlsenc.c | 257 +-- 2

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added segment file deletion

2014-12-10 Thread Christian Suloway
On 12/9/14, 7:44 PM, "Michael Niedermayer" wrote: >On Mon, Dec 08, 2014 at 10:25:05AM -0600, Christian Suloway wrote: >> This option flag deletes segment files removed from the playlist after a >> period of time equal to the duration of the segment plus the duration o

[FFmpeg-devel] [PATCH] avformat/hlsenc: added segment file deletion

2014-12-08 Thread Christian Suloway
This option flag deletes segment files removed from the playlist after a period of time equal to the duration of the segment plus the duration of the playlist. Signed-off-by: Christian Suloway --- doc/muxers.texi | 4 +++ libavformat/hlsenc.c | 90

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
Updating from previous message. From: Christian Suloway Sent: Friday, December 5, 2014 3:17 PM To: ffmpeg-devel@ffmpeg.org Cc: Christian Suloway Subject: [PATCH] avformat/hlsenc: added segment filename option This option allows segment filenames to be

[FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
This option allows segment filenames to be specified. Unless -hls_flags single_file is set the filename is used as a string format with the segment number. Example: ffmpeg -f lavfi -i testsrc -c:v h264 -map 0 -hls_segment_filename bar%03d.ts foo.m3u8 Signed-off-by: Christian Suloway --- doc

[FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
This option allows segment filenames to be specified. Unless -hls_flags single_file is set the filename is used as a string format with the segment number. Example: ffmpeg -f lavfi -i testsrc -c:v h264 -map 0 -hls_segment_filename bar%03d.ts foo.m3u8 Signed-off-by: Christian Suloway --- doc

[FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
This option allows segment filenames to be specified. Unless -hls_flags single_file is enabled the filename is used as a string format with the segment number. Example: ffmpeg -f lavfi -i testsrc -c:v h264 -map 0 -hls_segment_filename bar%03d.ts foo.m3u8 Signed-off-by: Christian Suloway

[FFmpeg-devel] [PATCH 2/3] avformat/hlsenc: added segment file deletion

2014-12-04 Thread Christian Suloway
Option removes segments no longer in playlist when older than playlist + segment duration Signed-off-by: Christian Suloway --- libavformat/hlsenc.c | 72 1 file changed, 67 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c b

[FFmpeg-devel] [PATCH 3/3] avformat/hlsenc: added HLS encryption

2014-12-04 Thread Christian Suloway
HLS encryption with key URL & key containing file specified with -hls_key_info_file (key info updates when modified). Option for IV from segment number or random generation (-hls_random_iv). Signed-off-by: Christian Suloway --- libavformat/hlsenc.c |

[FFmpeg-devel] [PATCH 1/3] avformat/hlsenc: added segment filename template

2014-12-04 Thread Christian Suloway
Signed-off-by: Christian Suloway --- libavformat/hlsenc.c | 87 +--- 1 file changed, 69 insertions(+), 18 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e13f438..0a48919 100644 --- a/libavformat/hlsenc.c +++ b

[FFmpeg-devel] [PATCH 4/4] avformat/hlsenc: added HLS encryption

2014-12-01 Thread Christian Suloway
HLS encryption with key URL & key containing file specified with -hls_key_info_file (key info updates when modified). Option for IV from segment number or random generation (-hls_random_iv). Signed-off-by: Christian Suloway --- libavformat/hlsenc.c |

[FFmpeg-devel] [PATCH 1/4] avformat/crypto: added encryption

2014-12-01 Thread Christian Suloway
Signed-off-by: Christian Suloway --- libavformat/crypto.c | 166 --- 1 file changed, 146 insertions(+), 20 deletions(-) diff --git a/libavformat/crypto.c b/libavformat/crypto.c index a9b6e47..f3a85c7 100644 --- a/libavformat/crypto.c +++ b

[FFmpeg-devel] [PATCH 3/4] avformat/hlsenc: added segment file deletion

2014-12-01 Thread Christian Suloway
Option removes segments no longer in playlist when older than playlist + segment duration Signed-off-by: Christian Suloway --- libavformat/hlsenc.c | 72 1 file changed, 67 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c b

[FFmpeg-devel] [PATCH 2/4] avformat/hlsenc: added segment filename template

2014-12-01 Thread Christian Suloway
Signed-off-by: Christian Suloway --- libavformat/hlsenc.c | 87 +--- 1 file changed, 69 insertions(+), 18 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e13f438..0a48919 100644 --- a/libavformat/hlsenc.c +++ b

[FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-11-26 Thread Christian Suloway
Signed-off-by: Christian Suloway --- libavformat/crypto.c | 233 --- libavformat/hlsenc.c | 387 ++- 2 files changed, 567 insertions(+), 53 deletions(-) diff --git a/libavformat/crypto.c b/libavformat/crypto.c index