Re: [FFmpeg-devel] [PATCH] fate: replace custom md5 tests with those from RFC 1321

2015-11-02 Thread Clément Bœsch
On Tue, Nov 03, 2015 at 04:09:43AM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libavutil/md5.c| 23 ++- > tests/ref/fate/md5 | 12 +++- > 2 files changed, 17 insertions(+), 18 deletions(-) > > diff --git a/libavutil/md5.c b/libavutil/md5.c > ind

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Clément Bœsch
On Mon, Nov 02, 2015 at 10:10:33PM -0500, Ganesh Ajjanagadde wrote: > On Mon, Nov 2, 2015 at 9:32 PM, Ganesh Ajjanagadde wrote: > > On Mon, Nov 2, 2015 at 6:49 PM, Ganesh Ajjanagadde wrote: > >> On Mon, Nov 2, 2015 at 6:37 PM, wm4 wrote: > >>> On Mon, 2 Nov 2015 14:49:54 -0500 > >>> Ganesh Ajja

[FFmpeg-devel] [PATCH] fate: replace custom md5 tests with those from RFC 1321

2015-11-02 Thread James Almer
Signed-off-by: James Almer --- libavutil/md5.c| 23 ++- tests/ref/fate/md5 | 12 +++- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/libavutil/md5.c b/libavutil/md5.c index 876bd55..2a77304 100644 --- a/libavutil/md5.c +++ b/libavutil/md5.c @@ -21

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Timothy Gu
On Mon, Nov 2, 2015 at 8:23 PM Rostislav Pehlivanov wrote: > >if one removes the crippling > >-fno-tree-vectorize > Yes, I think a config option to turn this flag on (like the unsafe > bitstream reader) would be good. Defaulting to off by default if it doesn't > break anything for at least a few

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Rostislav Pehlivanov
>if one removes the crippling >-fno-tree-vectorize Yes, I think a config option to turn this flag on (like the unsafe bitstream reader) would be good. Defaulting to off by default if it doesn't break anything for at least a few people (and compilers) who test it. It's not a big performance impact b

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Michael Niedermayer
On Mon, Nov 02, 2015 at 09:32:13PM -0500, Ganesh Ajjanagadde wrote: > On Mon, Nov 2, 2015 at 6:49 PM, Ganesh Ajjanagadde wrote: > > On Mon, Nov 2, 2015 at 6:37 PM, wm4 wrote: > >> On Mon, 2 Nov 2015 14:49:54 -0500 > >> Ganesh Ajjanagadde wrote: > >> > >>> This improves accuracy for the bessel f

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Ganesh Ajjanagadde
On Mon, Nov 2, 2015 at 9:32 PM, Ganesh Ajjanagadde wrote: > On Mon, Nov 2, 2015 at 6:49 PM, Ganesh Ajjanagadde wrote: >> On Mon, Nov 2, 2015 at 6:37 PM, wm4 wrote: >>> On Mon, 2 Nov 2015 14:49:54 -0500 >>> Ganesh Ajjanagadde wrote: >>> This improves accuracy for the bessel function, and t

Re: [FFmpeg-devel] [PATCHv2 1/4] fate: add concat demuxer tests

2015-11-02 Thread Michael Niedermayer
On Mon, Nov 02, 2015 at 09:12:27PM +0100, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > tests/Makefile |1 + > tests/extended.ffconcat| 114 + > tests/fate-run.sh | 20 + > tests/

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Ganesh Ajjanagadde
On Mon, Nov 2, 2015 at 6:49 PM, Ganesh Ajjanagadde wrote: > On Mon, Nov 2, 2015 at 6:37 PM, wm4 wrote: >> On Mon, 2 Nov 2015 14:49:54 -0500 >> Ganesh Ajjanagadde wrote: >> >>> This improves accuracy for the bessel function, and this in turn should >>> improve the quality of the Kaiser window. >

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Ganesh Ajjanagadde
On Mon, Nov 2, 2015 at 6:37 PM, wm4 wrote: > On Mon, 2 Nov 2015 14:49:54 -0500 > Ganesh Ajjanagadde wrote: > >> This improves accuracy for the bessel function, and this in turn should >> improve the quality of the Kaiser window. > > > "Should"? Does it or does it not? If you don't know, why the

Re: [FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread wm4
On Mon, 2 Nov 2015 14:49:54 -0500 Ganesh Ajjanagadde wrote: > This improves accuracy for the bessel function, and this in turn should > improve the quality of the Kaiser window. "Should"? Does it or does it not? If you don't know, why the patch? ___

Re: [FFmpeg-devel] libavformat/segment : add option to increment timecode

2015-11-02 Thread Martin Vignali
ping 2015-10-03 15:49 GMT+02:00 Martin Vignali : > Hello, > > in attach a patch, who add an option to increment timecode using segment. > > To test : > > ffmpeg -i src.mov -timecode 10:00:00:00 -vcodec copy -f segment > -segment_time 2 -reset_timestamps 1 -increment_tc 1 target_%03d.mov > > the s

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: Don't try and write sdp info if none of the outputs had an rtp format.

2015-11-02 Thread Simon Thelen
On 15-11-02 at 15:09, Carl Eugen Hoyos wrote: > Simon Thelen c-14.de> writes: > > > + if (j == 0) > > + goto fail; > > Tabs cannot be committed to our repository, please > remove them (this has to be fixed). > Most FFmpeg code uses "if (!j)", feel free to ignore. Looks like my gitco

Re: [FFmpeg-devel] [PATCH 0/2] first steps to resolving float to int undefined behavior

2015-11-02 Thread Hendrik Leppkes
On Mon, Nov 2, 2015 at 7:57 PM, Ronald S. Bultje wrote: > Hi, > > On Mon, Nov 2, 2015 at 12:32 PM, Ganesh Ajjanagadde > wrote: > >> On Mon, Nov 2, 2015 at 11:58 AM, Ronald S. Bultje >> wrote: >> > Hi, >> > >> > On Mon, Nov 2, 2015 at 11:07 AM, Ganesh Ajjanagadde >> > wrote: >> > >> >> On Mon, N

[FFmpeg-devel] [PATCHv2 1/4] fate: add concat demuxer tests

2015-11-02 Thread Marton Balint
Signed-off-by: Marton Balint --- tests/Makefile |1 + tests/extended.ffconcat| 114 + tests/fate-run.sh | 20 + tests/fate/concatdec.mak | 21 + tests/ref/fate/conca

Re: [FFmpeg-devel] Monochrome 12bit compression help

2015-11-02 Thread Paul B Mahol
Dana 2. 11. 2015. 19:08 osoba "Ken Milnes" napisala je: > > Our company is working on a project that requires some video compression. > In our application we are capturing 12 bit monochrome video using IP > cameras. The video is taken from fixed cameras on a golf course putting > green. The cam

Re: [FFmpeg-devel] [PATCH 1/4] fate: add concat demuxer tests

2015-11-02 Thread Marton Balint
On Mon, 2 Nov 2015, Michael Niedermayer wrote: On Mon, Nov 02, 2015 at 12:15:55AM +0100, Marton Balint wrote: Signed-off-by: Marton Balint --- tests/Makefile |1 + tests/extended.ffconcat| 114 + tests/fate-run.sh

[FFmpeg-devel] [PATCH] swresample/resample: improve bessel function accuracy

2015-11-02 Thread Ganesh Ajjanagadde
This improves accuracy for the bessel function, and this in turn should improve the quality of the Kaiser window. The algorithm is taken from the Boost project, who have done a detailed investigation of the accuracy of their method, as compared with e.g the GNU Scientific Library (GSL): http://www.

Re: [FFmpeg-devel] [PATCH 1/2] avutil/common: add av_clipd64

2015-11-02 Thread Ganesh Ajjanagadde
On Mon, Nov 2, 2015 at 1:59 PM, Daniel Serpell wrote: > Hi, > > On Sun, Nov 01, 2015 at 01:03:35PM -0500, Ganesh Ajjanagadde wrote: >> The rationale for this function is reflected in the documentation for >> it, and is copied here: >> >> Clip a double value into the long long amin-amax range. >> T

Re: [FFmpeg-devel] [PATCH 1/2] avutil/common: add av_clipd64

2015-11-02 Thread Daniel Serpell
Hi, On Sun, Nov 01, 2015 at 01:03:35PM -0500, Ganesh Ajjanagadde wrote: > The rationale for this function is reflected in the documentation for > it, and is copied here: > > Clip a double value into the long long amin-amax range. > This function is needed because conversion of floating point to i

Re: [FFmpeg-devel] [PATCH 1/2] avutil/common: add av_clipd64

2015-11-02 Thread Daniel Serpell
Hi, On Sun, Nov 01, 2015 at 01:03:35PM -0500, Ganesh Ajjanagadde wrote: > The rationale for this function is reflected in the documentation for > it, and is copied here: > > Clip a double value into the long long amin-amax range. > This function is needed because conversion of floating point to i

Re: [FFmpeg-devel] [PATCH 0/2] first steps to resolving float to int undefined behavior

2015-11-02 Thread Ronald S. Bultje
Hi, On Mon, Nov 2, 2015 at 12:32 PM, Ganesh Ajjanagadde wrote: > On Mon, Nov 2, 2015 at 11:58 AM, Ronald S. Bultje > wrote: > > Hi, > > > > On Mon, Nov 2, 2015 at 11:07 AM, Ganesh Ajjanagadde > > wrote: > > > >> On Mon, Nov 2, 2015 at 10:28 AM, Ronald S. Bultje > >> wrote: > >> > Hi, > >> > >

Re: [FFmpeg-devel] [PATCH] avformat/cache: Separate read and seek return-values within cache_read

2015-11-02 Thread Bryan Huh
Ok. Will push a separate patch with a one-line type-change and abandon this. I wanted to avoid coercing "r" into a 32-bit int when add_entry is called. I thought the compiler would give me warnings about it, but it doesn't seem to be after all. On Mon, Nov 2, 2015 at 7:04 AM, Michael Niedermayer

[FFmpeg-devel] [PATCH] avformat/cache: Use int64_t to avoid int overflow in cache_read

2015-11-02 Thread Bryan Huh
Fixes an issue where an int64_t ffurl_seek return-value was being stored in an int (32-bit) "r" variable, leading to integer overflow when seeking into a large file (>2GB), and ultimately a "Failed to perform internal seek" error mesage. To test, try running `ffprobe 'cache:http://'` on a file tha

[FFmpeg-devel] Monochrome 12bit compression help

2015-11-02 Thread Ken Milnes
Our company is working on a project that requires some video compression. In our application we are capturing 12 bit monochrome video using IP cameras. The video is taken from fixed cameras on a golf course putting green. The camera video is approximately 1900 X 1200 pixels, 12 bits, and 20 Hz f

Re: [FFmpeg-devel] [PATCH 0/2] first steps to resolving float to int undefined behavior

2015-11-02 Thread Ganesh Ajjanagadde
On Mon, Nov 2, 2015 at 11:58 AM, Ronald S. Bultje wrote: > Hi, > > On Mon, Nov 2, 2015 at 11:07 AM, Ganesh Ajjanagadde > wrote: > >> On Mon, Nov 2, 2015 at 10:28 AM, Ronald S. Bultje >> wrote: >> > Hi, >> > >> > On Sun, Nov 1, 2015 at 8:20 PM, Ganesh Ajjanagadde >> wrote: >> > >> >> On Sun, Nov

Re: [FFmpeg-devel] [PATCH 0/2] first steps to resolving float to int undefined behavior

2015-11-02 Thread Ronald S. Bultje
Hi, On Mon, Nov 2, 2015 at 11:07 AM, Ganesh Ajjanagadde wrote: > On Mon, Nov 2, 2015 at 10:28 AM, Ronald S. Bultje > wrote: > > Hi, > > > > On Sun, Nov 1, 2015 at 8:20 PM, Ganesh Ajjanagadde > wrote: > > > >> On Sun, Nov 1, 2015 at 7:59 PM, Ronald S. Bultje > >> wrote: > >> > >> - I think the

Re: [FFmpeg-devel] [PATCHv2] avutil/file_open: avoid file handle inheritance on Windows

2015-11-02 Thread Michael Niedermayer
On Fri, Oct 30, 2015 at 04:15:30PM +0100, Tobias Rapp wrote: > On 30.10.2015 15:06, wm4 wrote: > >On Fri, 30 Oct 2015 11:30:40 +0100 > >Tobias Rapp wrote: > > > >>On 29.10.2015 09:38, Tobias Rapp wrote: > >>>Attached patch fixes file lock issues in my Windows application when a > >>>child process

Re: [FFmpeg-devel] [PATCH 0/2] first steps to resolving float to int undefined behavior

2015-11-02 Thread Ganesh Ajjanagadde
On Mon, Nov 2, 2015 at 10:28 AM, Ronald S. Bultje wrote: > Hi, > > On Sun, Nov 1, 2015 at 8:20 PM, Ganesh Ajjanagadde wrote: > >> On Sun, Nov 1, 2015 at 7:59 PM, Ronald S. Bultje >> wrote: >> >> - I think the name of this function is confusing. The av_clip* namespace >> > seems reserved for int

Re: [FFmpeg-devel] [PATCHv3 2/2] mpegtsenc: Implement writing of Opus trim_start/trim_end control values

2015-11-02 Thread Sebastian Dröge
On Mo, 2015-11-02 at 15:12 +, Carl Eugen Hoyos wrote: > Sebastian Dröge coaxion.net> writes: > > > +if (ts_st->opus_pending_trim_start) > > +  ctrl_header_size += 2; > > +if (trim_end) > > +  ctrl_header_size += 2; > > You could move the additi

[FFmpeg-devel] [PATCH 1/2 v2] ffmpeg: Don't try and write sdp info if none of the outputs had an rtp format.

2015-11-02 Thread Simon Thelen
Fixes a segfault when trying to write nonexistent rtp information. Signed-off-by: Simon Thelen --- ffmpeg.c | 4 1 file changed, 4 insertions(+) diff --git a/ffmpeg.c b/ffmpeg.c index f8b071a..6b41bb3 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2447,6 +2447,9 @@ static void print_sdp(void)

Re: [FFmpeg-devel] [PATCH 0/2] first steps to resolving float to int undefined behavior

2015-11-02 Thread Ronald S. Bultje
Hi, On Sun, Nov 1, 2015 at 8:20 PM, Ganesh Ajjanagadde wrote: > On Sun, Nov 1, 2015 at 7:59 PM, Ronald S. Bultje > wrote: > > - I think the name of this function is confusing. The av_clip* namespace > > seems reserved for int to int clips, so using it for a float to int > > conversion with clip

Re: [FFmpeg-devel] [PATCH] avformat/cache: Separate read and seek return-values within cache_read

2015-11-02 Thread Michael Niedermayer
On Sun, Nov 01, 2015 at 10:56:45PM -0800, Bryan Huh wrote: > Fixes an issue where an int64_t ffurl_seek return-value was being stored > in a generic int "r" variable, leading to integer overflow when seeking > into a large file (>2GB), and ultimately a "Failed to perform internal > seek" error mesa

Re: [FFmpeg-devel] [PATCH 2/3] avformat/segafilm: set audio stream duration

2015-11-02 Thread Michael Niedermayer
On Fri, Oct 30, 2015 at 12:11:24PM +0100, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/segafilm.c | 3 +++ > 1 file changed, 3 insertions(+) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Republics decline into democraci

Re: [FFmpeg-devel] [PATCH 3/3] avformat/segafilm: set video stream duration

2015-11-02 Thread Michael Niedermayer
On Fri, Oct 30, 2015 at 12:11:25PM +0100, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/segafilm.c | 7 ++- > 1 file changed, 6 insertions(+), 1 deletion(-) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Republics decl

Re: [FFmpeg-devel] [PATCH 1/3] avformat/segafilm: implement seeking

2015-11-02 Thread Michael Niedermayer
On Fri, Oct 30, 2015 at 12:11:23PM +0100, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/segafilm.c | 21 + > 1 file changed, 21 insertions(+) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The real ebay

Re: [FFmpeg-devel] [PATCHv3 2/2] mpegtsenc: Implement writing of Opus trim_start/trim_end control values

2015-11-02 Thread Carl Eugen Hoyos
Sebastian Dröge coaxion.net> writes: > +if (ts_st->opus_pending_trim_start) > + ctrl_header_size += 2; > +if (trim_end) > + ctrl_header_size += 2; You could move the additions inside the larger if blocks below, that would make the code slightly

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: Don't try and write sdp info if none of the outputs had an rtp format.

2015-11-02 Thread Carl Eugen Hoyos
Simon Thelen c-14.de> writes: > + if (j == 0) > + goto fail; Tabs cannot be committed to our repository, please remove them (this has to be fixed). Most FFmpeg code uses "if (!j)", feel free to ignore. Carl Eugen ___ ffmpeg-devel mai

[FFmpeg-devel] [PATCH 2/2] doc/ffmpeg: Clarify that the sdp_file option requires an rtp output.

2015-11-02 Thread Simon Thelen
Signed-off-by: Simon Thelen --- doc/ffmpeg.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 08b1ed2..cf74734 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -1233,9 +1233,9 @@ The option is intended for cases where features

[FFmpeg-devel] [PATCH 1/2] ffmpeg: Don't try and write sdp info if none of the outputs had an rtp format.

2015-11-02 Thread Simon Thelen
Fixes a segfault when trying to write nonexistent rtp information. Signed-off-by: Simon Thelen --- ffmpeg.c | 4 1 file changed, 4 insertions(+) diff --git a/ffmpeg.c b/ffmpeg.c index f8b071a..a6b3c1c 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2447,6 +2447,9 @@ static void print_sdp(void)

[FFmpeg-devel] [PATCH 0/2] Fix/clarify the sdp_file option.

2015-11-02 Thread Simon Thelen
Fixes a segfault when trying to write sdp information without an rtp output stream, also clarifies that the sdp_file option requires an rtp output format. Example of segfaulting command: ffmpeg -re -f lavfi -i testsrc -re -f lavfi -i aevalsrc=0 -sdp_file test -c:v libx264 -strict -2 -f rtp_mpegts

Re: [FFmpeg-devel] [PATCH 1/4] fate: add concat demuxer tests

2015-11-02 Thread Michael Niedermayer
On Mon, Nov 02, 2015 at 12:15:55AM +0100, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > tests/Makefile |1 + > tests/extended.ffconcat| 114 + > tests/fate-run.sh | 20 + > tests/

Re: [FFmpeg-devel] [PATCH 2/4] lavf/utils: avoid decoding a frame to get the codec parameters

2015-11-02 Thread Ronald S. Bultje
Hi, On Mon, Nov 2, 2015 at 5:45 AM, Matthieu Bouron wrote: > From: Matthieu Bouron > > Avoid decoding a frame to get the codec parameters while the codec > supports FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM. This is particulary useful > to avoid decoding twice images (once in avformat_find_stream_info

Re: [FFmpeg-devel] [PATCH 2/3] avfilter/vf_frei0r: use av_strtod instead of strtod for added flexibility

2015-11-02 Thread Ganesh Ajjanagadde
On Mon, Nov 2, 2015 at 6:40 AM, Michael Niedermayer wrote: > On Sun, Nov 01, 2015 at 08:37:01PM -0500, Ganesh Ajjanagadde wrote: >> On Sun, Nov 1, 2015 at 8:23 PM, Michael Niedermayer >> wrote: >> > On Sun, Nov 01, 2015 at 11:57:54AM -0500, Ganesh Ajjanagadde wrote: >> >> This converts the usage

Re: [FFmpeg-devel] [PATCH 2/3] avfilter/vf_frei0r: use av_strtod instead of strtod for added flexibility

2015-11-02 Thread Michael Niedermayer
On Sun, Nov 01, 2015 at 08:37:01PM -0500, Ganesh Ajjanagadde wrote: > On Sun, Nov 1, 2015 at 8:23 PM, Michael Niedermayer > wrote: > > On Sun, Nov 01, 2015 at 11:57:54AM -0500, Ganesh Ajjanagadde wrote: > >> This converts the usage of strtod to av_strtod in order to be more free > >> in accepting

[FFmpeg-devel] [PATCH 4/4] lavc/pngdec: set FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM capability

2015-11-02 Thread Matthieu Bouron
From: Matthieu Bouron --- libavcodec/pngdec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 0bdd04e..7bb3c7d 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@ -1519,5 +1519,6 @@ AVCodec ff_png_decoder = { .init_thread_copy =

[FFmpeg-devel] [PATCH 3/4] lavc/mjpegdec: set FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM capability

2015-11-02 Thread Matthieu Bouron
From: Matthieu Bouron --- libavcodec/mjpegdec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index e17b213..801eb29 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -2442,7 +2442,8 @@ AVCodec ff_mjpeg_decoder

[FFmpeg-devel] [PATCH 2/4] lavf/utils: avoid decoding a frame to get the codec parameters

2015-11-02 Thread Matthieu Bouron
From: Matthieu Bouron Avoid decoding a frame to get the codec parameters while the codec supports FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM. This is particulary useful to avoid decoding twice images (once in avformat_find_stream_info and once when the actual decode is made). --- libavformat/utils.c | 1

[FFmpeg-devel] [PATCH 1/4] lavc/internal: add FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM

2015-11-02 Thread Matthieu Bouron
From: Matthieu Bouron Codec supporting FF_CODEC_SKIP_FRAME_FILL must still extract and fill their parameters into AVCodecContext while honoring the skip_frame flag. --- libavcodec/internal.h | 5 + 1 file changed, 5 insertions(+) diff --git a/libavcodec/internal.h b/libavcodec/internal.h in

Re: [FFmpeg-devel] [PATCH] Added QSV based VPP filter - second try

2015-11-02 Thread Sven Dueking
> -Ursprüngliche Nachricht- > Von: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] Im Auftrag > von Carl Eugen Hoyos > Gesendet: Donnerstag, 29. Oktober 2015 18:39 > An: ffmpeg-devel@ffmpeg.org > Betreff: Re: [FFmpeg-devel] [PATCH] Added QSV based VPP filter - second > try > > Sven

Re: [FFmpeg-devel] [PATCH 1/2] avformat: always unref the packet after parsing

2015-11-02 Thread Hendrik Leppkes
On Sun, Nov 1, 2015 at 1:18 PM, wm4 wrote: > On Sun, 1 Nov 2015 13:03:50 +0100 > Hendrik Leppkes wrote: > >> On Sun, Nov 1, 2015 at 12:57 PM, wm4 wrote: >> > On Sun, 1 Nov 2015 11:21:26 +0100 >> > Hendrik Leppkes wrote: >> > >> >> This fixes a memory leak when side-data is present. >> >> --- >