Re: [FFmpeg-devel] [PATCH v3] avcodec/fft_template: improve performance of the ff_fft_init in fft_template

2019-01-02 Thread Steven Liu
Steven Liu 于2018年12月26日周三 下午4:15写道: > > Before patch: > init nbits = 17, get 1 samples, average cost: 16175 us > After patch: > init nbits = 17, get 1 samples, average cost: 14989 us > > Signed-off-by: Steven Liu > --- > libavcodec/fft_template.c | 46

Re: [FFmpeg-devel] [PATCH] fate: add tests/fate/hlsenc.mak for hls FATE

2019-01-02 Thread Steven Liu
Steven Liu 于2018年12月24日周一 下午5:45写道: > > init add three test examples: > 1. check no endlist at the end > 2. check endlist at the end > 3. check hls_list_size 0 full list > > Signed-off-by: Steven Liu > --- > tests/Makefile| 1 + > tests/fate/hlsenc.mak | 43

Re: [FFmpeg-devel] [PATCH 01/11] doc/indevs: fix upto typo

2019-01-02 Thread Stephen Hutchinson
On 1/2/2019 4:43 PM, Michael Niedermayer wrote: On Wed, Jan 02, 2019 at 10:34:21AM -0900, Lou Logan wrote: On Mon, Dec 31, 2018, at 12:03 PM, Michael Niedermayer wrote: Signed-off-by: Michael Niedermayer --- doc/indevs.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Ok. Same

[FFmpeg-devel] [PATCH V8] libavfilter: add transpose_vaapi filter

2019-01-02 Thread Zachary Zhou
Swap width and height when do clock/cclock rotation Add reversal/hflip/vflip options ffmpeg -hwaccel vaapi -vaapi_device /dev/dri/renderD128 -hwaccel_output_format vaapi -i input.264 -vf "transpose_vaapi=clock_flip" -c:v h264_vaapi output.h264 Signed-off-by: Zachary Zhou --- configure

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Vittorio Giovara > Sent: Thursday, January 03, 2019 4:55 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Vittorio Giovara > Sent: Wednesday, January 02, 2019 11:13 PM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI

Re: [FFmpeg-devel] patch for failing on WavPack DSD files

2019-01-02 Thread David Bryant
On 12/28/18 3:56 AM, Paul B Mahol wrote: > On 12/24/18, Derek Buitenhuis wrote: >> On 24/12/2018 17:47, David Bryant wrote: >>> I want to do that, but am swamped at work right now, so it will probably >>> be a few months before I can get to that. >>> >>> In the meantime, I think this patch would

Re: [FFmpeg-devel] [PATCH 2/2] ffmpeg: allow disabling streams by type for inputs

2019-01-02 Thread Gyan
On 02-01-2019 10:49 AM, Gyan wrote: On 29-12-2018 04:40 PM, Gyan wrote: -vn/-an/-sn/-dn now work for inputs Ping. Plan to push tonight if no objections. Gyan ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] libavcodec: Remove dynamic relocs from aarch64/h264idct_neon.S

2019-01-02 Thread Manoj Gupta
On Wed, Jan 2, 2019 at 2:33 PM Michael Niedermayer wrote: > > On Wed, Jan 02, 2019 at 10:12:33AM -0800, Manoj Gupta wrote: > > On Mon, Dec 31, 2018 at 8:31 AM Michael Niedermayer > > wrote: > > > > > > On Fri, Dec 28, 2018 at 03:12:53PM -0800, Manoj Gupta wrote: > > > > Hi All, > > > > > > > > I

Re: [FFmpeg-devel] [PATCH 2/3] flvdec: Mark the demuxer as allowing discontinuous timestamps

2019-01-02 Thread Michael Niedermayer
On Mon, Nov 26, 2018 at 01:51:25PM +, Derek Buitenhuis wrote: > On 23/11/2018 02:16, Michael Niedermayer wrote: > > do we have some sample flv files that require this patchset / that have > > discontinuites. > > I have many. I've mailed you one privately, while I work on getting a public >

[FFmpeg-devel] [PATCH 3/4] checkasm: add an af_afir test

2019-01-02 Thread James Almer
Signed-off-by: James Almer --- tests/checkasm/Makefile | 1 + tests/checkasm/af_afir.c | 83 +++ tests/checkasm/checkasm.c | 3 ++ tests/checkasm/checkasm.h | 1 + tests/fate/checkasm.mak | 1 + 5 files changed, 89 insertions(+) create mode 100644

[FFmpeg-devel] [PATCH 4/4] x86/af_afir: add ff_fcmul_add_avx()

2019-01-02 Thread James Almer
fcmul_add_c: 1228.8 fcmul_add_sse3: 334.3 fcmul_add_avx: 186.3 Signed-off-by: James Almer --- libavfilter/x86/af_afir.asm| 8 +++- libavfilter/x86/af_afir_init.c | 5 + 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/libavfilter/x86/af_afir.asm

[FFmpeg-devel] [PATCH 2/4] avfilter/af_afir: split off fcmul_add into a DSP context

2019-01-02 Thread James Almer
Signed-off-by: James Almer --- libavfilter/af_afir.c | 15 ++- libavfilter/af_afir.h | 12 +--- libavfilter/x86/af_afir_init.c | 2 +- 3 files changed, 20 insertions(+), 9 deletions(-) diff --git a/libavfilter/af_afir.c b/libavfilter/af_afir.c index

[FFmpeg-devel] [PATCH 1/4] x86/af_afir: fix processing the last element

2019-01-02 Thread James Almer
ff_fcmul_add_sse3() is now identical to the C version. Signed-off-by: James Almer --- libavfilter/x86/af_afir.asm | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavfilter/x86/af_afir.asm b/libavfilter/x86/af_afir.asm index 849d85e70f..fcc1f426db 100644 ---

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add HCOM decoder

2019-01-02 Thread Rostislav Pehlivanov
On Wed, 2 Jan 2019 at 19:02, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c | 1 + > libavcodec/avcodec.h| 1 + > libavcodec/codec_desc.c | 7 ++ > libavcodec/hcom.c | 137

Re: [FFmpeg-devel] [PATCH] delogo filter: new "uglarm" interpolation mode added

2019-01-02 Thread Uwe Freese
Hello, Here's a new version of the patch. Changes: - My last version didn't compile because of moving code to config_input. Don't know why I didn't see this, sorry.   I moved the code back to filter_frame because of two reasons. First, I need the "sar" to init my tables and it seems I need

Re: [FFmpeg-devel] [PATCH] libavcodec: Remove dynamic relocs from aarch64/h264idct_neon.S

2019-01-02 Thread Michael Niedermayer
On Wed, Jan 02, 2019 at 10:12:33AM -0800, Manoj Gupta wrote: > On Mon, Dec 31, 2018 at 8:31 AM Michael Niedermayer > wrote: > > > > On Fri, Dec 28, 2018 at 03:12:53PM -0800, Manoj Gupta wrote: > > > Hi All, > > > > > > I recently had a problem building ffmpeg for AArch64 where lld linker > > >

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread Michael Niedermayer
On Wed, Jan 02, 2019 at 09:50:24PM +0100, Vittorio Giovara wrote: > On Wed, Jan 2, 2019 at 6:45 PM James Almer wrote: > > > On 1/2/2019 2:18 PM, Vittorio Giovara wrote: > > > On Wed, Jan 2, 2019 at 4:13 PM Vittorio Giovara < > > vittorio.giov...@gmail.com> > > > wrote: > > > > > >> > > >> > > >>

Re: [FFmpeg-devel] [PATCH 2/3] flvdec: Mark the demuxer as allowing discontinuous timestamps

2019-01-02 Thread Derek Buitenhuis
On 24/12/2018 16:42, Derek Buitenhuis wrote: > Ping. Is there a decision on eitehr what to do or to ignore this? > > I'll update my downstream code with an FLV edge case if need be. Ping. - Derek ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: skip disabled streams

2019-01-02 Thread Michael Niedermayer
On Mon, Dec 31, 2018 at 10:33:37AM +0530, Gyan wrote: > > On 31-12-2018 06:50 AM, Michael Niedermayer wrote: > >On Sat, Dec 29, 2018 at 04:39:18PM +0530, Gyan wrote: > >>At Michael's suggestion, earlier patch broken into two. This one stops > >>discarded streams from being processed. A few more

Re: [FFmpeg-devel] [PATCH 01/11] doc/indevs: fix upto typo

2019-01-02 Thread Michael Niedermayer
On Wed, Jan 02, 2019 at 10:34:21AM -0900, Lou Logan wrote: > On Mon, Dec 31, 2018, at 12:03 PM, Michael Niedermayer wrote: > > Signed-off-by: Michael Niedermayer > > --- > > doc/indevs.texi | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > Ok. Same typo is in

Re: [FFmpeg-devel] [PATCH] delogo filter: new "uglarm" interpolation mode added

2019-01-02 Thread Uwe Freese
Hi, just an info: code didn't compile, don't know why I didn't see this... New patch is in work... Regards, Uwe Am 01.01.19 um 22:14 schrieb Uwe Freese: Hello, here's a new version of the patch. Thanks for the infos. I used the raw output of a small test video (where delogo is applied in

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add HCOM decoder

2019-01-02 Thread James Almer
On 1/2/2019 3:53 PM, Paul B Mahol wrote: > +static int hcom_decode(AVCodecContext *avctx, void *data, > + int *got_frame, AVPacket *pkt) > +{ > +HCOMContext *s = avctx->priv_data; > +AVFrame *frame = data; > +GetByteContext gb; > +uint32_t current; > +int

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread Vittorio Giovara
On Wed, Jan 2, 2019 at 6:48 PM James Almer wrote: > On 12/28/2018 7:09 AM, Guo, Yejun wrote: > > The encoders such as libx264 support different QPs offset for different > MBs, > > it makes possible for ROI-based encoding. It makes sense to add support > > within ffmpeg to generate/accept ROI

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add HCOM decoder

2019-01-02 Thread Paul B Mahol
On 1/2/19, James Almer wrote: > On 1/2/2019 3:53 PM, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavcodec/Makefile | 1 + >> libavcodec/allcodecs.c | 1 + >> libavcodec/avcodec.h| 1 + >> libavcodec/codec_desc.c | 7 ++ >> libavcodec/hcom.c | 137

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread Vittorio Giovara
On Wed, Jan 2, 2019 at 6:45 PM James Almer wrote: > On 1/2/2019 2:18 PM, Vittorio Giovara wrote: > > On Wed, Jan 2, 2019 at 4:13 PM Vittorio Giovara < > vittorio.giov...@gmail.com> > > wrote: > > > >> > >> > >> On Fri, Dec 28, 2018 at 3:17 AM Guo, Yejun wrote: > >> > > > > AVRegionOfInterest {

Re: [FFmpeg-devel] [PATCH 01/11] doc/indevs: fix upto typo

2019-01-02 Thread Lou Logan
On Mon, Dec 31, 2018, at 12:03 PM, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > doc/indevs.texi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Ok. Same typo is in compat/avisynth/avisynth_c.h. ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] Improved the performance of 1 decode + N filter graphs and adaptive bitrate.

2019-01-02 Thread Michael Niedermayer
On Sat, Dec 29, 2018 at 04:09:21PM -0500, Shaofei Wang wrote: > With new option "-abr_pipeline" > It enabled multiple filter graph concurrency, which bring obvious > improvement in some 1:N scenarios by CPU and GPU acceleration > > Below are some test cases and comparison as reference. >

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add HCOM decoder

2019-01-02 Thread James Almer
On 1/2/2019 3:53 PM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c | 1 + > libavcodec/avcodec.h| 1 + > libavcodec/codec_desc.c | 7 ++ > libavcodec/hcom.c | 137 > 5

[FFmpeg-devel] [PATCH 1/2] avcodec: add HCOM decoder

2019-01-02 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h| 1 + libavcodec/codec_desc.c | 7 ++ libavcodec/hcom.c | 137 5 files changed, 147 insertions(+) create mode 100644

[FFmpeg-devel] [PATCH 2/2] avformat: add HCOM demuxer

2019-01-02 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/hcom.c | 89 3 files changed, 91 insertions(+) create mode 100644 libavformat/hcom.c diff --git a/libavformat/Makefile

Re: [FFmpeg-devel] [PATCH] libavcodec: Remove dynamic relocs from aarch64/h264idct_neon.S

2019-01-02 Thread Manoj Gupta
On Mon, Dec 31, 2018 at 8:31 AM Michael Niedermayer wrote: > > On Fri, Dec 28, 2018 at 03:12:53PM -0800, Manoj Gupta wrote: > > Hi All, > > > > I recently had a problem building ffmpeg for AArch64 where lld linker > > complained about text relocations in readonly segment. The following > > patch

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread James Almer
On 12/28/2018 7:09 AM, Guo, Yejun wrote: > The encoders such as libx264 support different QPs offset for different MBs, > it makes possible for ROI-based encoding. It makes sense to add support > within ffmpeg to generate/accept ROI infos and pass into encoders. > > Typical usage: After AVFrame

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread James Almer
On 1/2/2019 2:18 PM, Vittorio Giovara wrote: > On Wed, Jan 2, 2019 at 4:13 PM Vittorio Giovara > wrote: > >> >> >> On Fri, Dec 28, 2018 at 3:17 AM Guo, Yejun wrote: >> >>> The encoders such as libx264 support different QPs offset for different >>> MBs, >>> it makes possible for ROI-based

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread Vittorio Giovara
On Wed, Jan 2, 2019 at 4:13 PM Vittorio Giovara wrote: > > > On Fri, Dec 28, 2018 at 3:17 AM Guo, Yejun wrote: > >> The encoders such as libx264 support different QPs offset for different >> MBs, >> it makes possible for ROI-based encoding. It makes sense to add support >> within ffmpeg to

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Oliver Collyer
> On 2 Jan 2019, at 19:18, Steinar H. Gunderson > wrote: > > On Wed, Jan 02, 2019 at 04:34:28PM +0100, Nicolas George wrote: >> This is not a leak, it is short-sightedness by leak detectors. > > Most modern leak detectors distinguish between memory that's still reachable > (usually not a

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Steinar H. Gunderson
On Wed, Jan 02, 2019 at 04:34:28PM +0100, Nicolas George wrote: > This is not a leak, it is short-sightedness by leak detectors. Most modern leak detectors distinguish between memory that's still reachable (usually not a leak) and memory that's not (almost always a leak). This sounds like an

Re: [FFmpeg-devel] [PATCH v2] mov: Remove duration-of-last-frame heuristic hack

2019-01-02 Thread Derek Buitenhuis
On 01/01/2019 15:50, Derek Buitenhuis wrote: > If there are no objections, I will push in a day or two. Pushed. - Derek ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Oliver Collyer
> On 2 Jan 2019, at 18:38, Nicolas George wrote: > > Oliver Collyer (2019-01-02): >> Can you clarify what you mean by "static variables are unacceptable". >> They're all over the place in ffmpeg (random example >>

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Hendrik Leppkes
On Wed, Jan 2, 2019 at 4:33 PM Oliver Collyer wrote: > > Can you clarify what you mean by "static variables are unacceptable". They're > all over the place in ffmpeg (random example > https://github.com/FFmpeg/FFmpeg/blob/a0ac49e38ee1d1011c394d7be67d0f08b2281526/libavcodec/ffjni.c > >

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Nicolas George
Oliver Collyer (2019-01-02): > Can you clarify what you mean by "static variables are unacceptable". They're > all over the place in ffmpeg (random example > https://github.com/FFmpeg/FFmpeg/blob/a0ac49e38ee1d1011c394d7be67d0f08b2281526/libavcodec/ffjni.c > >

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Nicolas George
Oliver Collyer (2019-01-02): > I guess the OS frees it up on application exit, but that seems a messy > way to be going about things, I guess that's why the developers of > x265 provided the function. There is nothing messy about it. Also, other parts of the project do things like that without

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Oliver Collyer
>>> +static int open_enc_count = 0; >>> +static pthread_mutex_t open_enc_count_lock = PTHREAD_MUTEX_INITIALIZER; >> >> Static variables are unacceptable. And indeed, these are wrong: you are >> counting several instances, possibly of different APIs, but with a >> single counter. >> > > Yes, I

Re: [FFmpeg-devel] [PATCH] delogo filter: new "uglarm" interpolation mode added

2019-01-02 Thread Nicolas George
Nicolas George (2019-01-02): > Uwe Freese (2019-01-01): > > > This can be optimized, and since it is the inner loop of the filter, I > > > think it is worth it. You can declare a pointer that will stay the same > > > for the whole y loop: > > > > > > double *xweight = uglarmtable + (y -

Re: [FFmpeg-devel] [PATCH V4 1/2] avutil: add ROI data struct and bump version

2019-01-02 Thread Vittorio Giovara
On Fri, Dec 28, 2018 at 3:17 AM Guo, Yejun wrote: > The encoders such as libx264 support different QPs offset for different > MBs, > it makes possible for ROI-based encoding. It makes sense to add support > within ffmpeg to generate/accept ROI infos and pass into encoders. > > Typical usage:

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Oliver Collyer
> On 2 Jan 2019, at 18:05, Nicolas George wrote: > > Oliver Collyer (2019-01-02): >> diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c > > Please use git format-patch to prepare your patches. Also please try to > convince your MUA to use text/plain for patches. > >> +static int

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Nicolas George
Oliver Collyer (2019-01-02): > diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c Please use git format-patch to prepare your patches. Also please try to convince your MUA to use text/plain for patches. > +static int open_enc_count = 0; > +static pthread_mutex_t open_enc_count_lock =

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Oliver Collyer
> On 2 Jan 2019, at 16:03, Oliver Collyer wrote: > > > >> On 2 Jan 2019, at 12:58, Oliver Collyer wrote: >> >> Hello >> >> So this time I'm reporting some potential memory leaks in the x265 encoder. >> There are a few hundred following a short encode session, but all seem to >> have the

Re: [FFmpeg-devel] Possible memory leaks in dshow capture

2019-01-02 Thread Oliver Collyer
> On 2 Jan 2019, at 11:30, Oliver Collyer wrote: > > > >> On 1 Jan 2019, at 23:58, James Almer wrote: >> >> On 1/1/2019 5:01 PM, Oliver Collyer wrote: >>> -- Block 26224 at 0x74240F70: 151 bytes -- >>> Leak Hash: 0x357CD5AF, Count: 1, Total 151 bytes >>> Call Stack

Re: [FFmpeg-devel] [PATCH] delogo filter: new "uglarm" interpolation mode added

2019-01-02 Thread Nicolas George
Uwe Freese (2019-01-01): > > This can be optimized, and since it is the inner loop of the filter, I > > think it is worth it. You can declare a pointer that will stay the same > > for the whole y loop: > > > > double *xweight = uglarmtable + (y - logo_y1) * (logo_w - 1); > > > > and then use

Re: [FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Oliver Collyer
> On 2 Jan 2019, at 12:58, Oliver Collyer wrote: > > Hello > > So this time I'm reporting some potential memory leaks in the x265 encoder. > There are a few hundred following a short encode session, but all seem to > have the same call stack as below but varying allocation sizes. > > I am

[FFmpeg-devel] Memory leaks using x265 encoder

2019-01-02 Thread Oliver Collyer
Hello So this time I'm reporting some potential memory leaks in the x265 encoder. There are a few hundred following a short encode session, but all seem to have the same call stack as below but varying allocation sizes. I am calling avcodec_open2() to open the encoder and then

Re: [FFmpeg-devel] [PATCH V7] libavfilter: add transpose_vaapi filter

2019-01-02 Thread Zhou, Zachary
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Mark Thompson > Sent: Monday, December 31, 2018 2:06 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH V7] libavfilter: add transpose_vaapi filter > > On 25/12/2018

[FFmpeg-devel] [PATCH] avformat/dashdec: control download speed when in live stream mode

2019-01-02 Thread Steven Liu
fix ticket: 7369 check the duration is less than the fragment duration, retry when the condition is true. Signed-off-by: Steven Liu --- libavformat/dashdec.c | 23 +++ 1 file changed, 23 insertions(+) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index

Re: [FFmpeg-devel] Possible memory leaks in dshow capture

2019-01-02 Thread Oliver Collyer
> On 1 Jan 2019, at 23:58, James Almer wrote: > > On 1/1/2019 5:01 PM, Oliver Collyer wrote: >> -- Block 26224 at 0x74240F70: 151 bytes -- >> Leak Hash: 0x357CD5AF, Count: 1, Total 151 bytes >> Call Stack (TID 55752): >>ucrtbased.dll!aligned_malloc() >>