Re: [FFmpeg-devel] [PATCH] movtextdec.c: Add support for highlight and hilightcolor box

2015-07-12 Thread Niklesh Lalwani
Updated patch attached. As Philip said, this was not a simple re-indent, so indentation included. Thanks, Niklesh From 7dff4a52e41fabe4748076e152cf600d426a5ee8 Mon Sep 17 00:00:00 2001 From: Niklesh Date: Sun, 12 Jul 2015 12:44:48 +0530 Subject: [PATCH] movtextdec.c: Add support for highlight an

Re: [FFmpeg-devel] [PATCH] movtextdec.c: Add support for highlight and hilightcolor box

2015-07-12 Thread Clément Bœsch
On Thu, Jul 09, 2015 at 11:16:16AM -0700, Philip Langdale wrote: > On 2015-07-06 14:42, Clément Bœsch wrote: > > > >> { > >> int i = 0; > >> int text_pos = 0; > >> while (text < text_end) { > >>-for (i = 0; i < style_entries; i++) { > >>-if (s[i]->style_flag && text_

Re: [FFmpeg-devel] [PATCH] movtextdec.c: Add support for highlight and hilightcolor box

2015-07-12 Thread Clément Bœsch
On Tue, Jul 07, 2015 at 08:33:12PM +0530, Niklesh Lalwani wrote: [...] > > > +struct Box > > > +{ > > > > style > > > > What about this? > I meant "struct Box {" [...] -- Clément B. pgpXhkbYol9Fe.pgp Description: PGP signature ___ ffmpeg-devel mai

Re: [FFmpeg-devel] [PATCH] movtextdec.c: Add support for highlight and hilightcolor box

2015-07-12 Thread Niklesh Lalwani
On Sun, Jul 12, 2015 at 1:05 PM, Clément Bœsch wrote: > On Tue, Jul 07, 2015 at 08:33:12PM +0530, Niklesh Lalwani wrote: > [...] > > > > +struct Box > > > > +{ > > > > > > style > > > > > > > What about this? > > > > I meant "struct Box {" > > I changed it to "typedef struct {" in the updated pat

Re: [FFmpeg-devel] [PATCH] vf_psnr: sse2 optimizations for sum-squared-error.

2015-07-12 Thread Clément Bœsch
On Sat, Jul 11, 2015 at 10:50:26AM -0400, Ronald S. Bultje wrote: > The internal line accumulator for 16bit can overflow, so I changed that > from int to uint64_t in the C code. The matching assembly looks a little > weird but output looks correct. > It assumes aligned input pointers, I'm > not su

Re: [FFmpeg-devel] Controlling the server reply (was: 9/9] doc/example: Add http multi-client) example code

2015-07-12 Thread Stephan Holljes
On Sat, Jul 11, 2015 at 11:55 AM, Nicolas George wrote: > Le primidi 21 messidor, an CCXXIII, Stephan Holljes a écrit : >> Good question, I haven't thought about that myself. Adding a 404 error >> to handle_http_errors() and calling it with AVERROR_HTTP_NOT_FOUND >> could be a solution. I feel lik

Re: [FFmpeg-devel] [PATCH v3] Add support for Audible AAX (and AAX+) files

2015-07-12 Thread Hendrik Leppkes
On Sun, Jul 12, 2015 at 7:37 AM, Vesselin Bontchev wrote: > Hi, > > I have uploaded some Audible samples to the > https://gitlab.com/vesselin.bontchev/audible-samples/ page. > > Currently only .aax files are supported, see > https://en.wikipedia.org/wiki/Audible.com#Quality page for more informa

[FFmpeg-devel] [PATCH] vf_psnr: sse2 optimizations for sum-squared-error.

2015-07-12 Thread Ronald S. Bultje
The internal line accumulator for 16bit can overflow, so I changed that from int to uint64_t in the C code. The matching assembly looks a little weird but output looks correct. (avx2 should be trivial to add later.) --- libavfilter/psnr.h | 33 ++ libavfilter/vf_psnr.c

[FFmpeg-devel] [PATCH] ivfenc: write duration at end-of-stream.

2015-07-12 Thread Ronald S. Bultje
At the beginning, the value is not initialized. --- libavformat/ivfenc.c | 30 +- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/libavformat/ivfenc.c b/libavformat/ivfenc.c index 1d76c5c..2053c50 100644 --- a/libavformat/ivfenc.c +++ b/libavformat/ivfenc.

Re: [FFmpeg-devel] [PATCH 1/4] ssim: refactor a weird double loop.

2015-07-12 Thread Paul B Mahol
Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" napisala je: > > --- > libavfilter/vf_ssim.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c > index 0721ddd..3ef122f 100644 > --- a/libavfilter/vf_ssim.c > +++ b/libavfilt

Re: [FFmpeg-devel] [PATCH 2/4] vf_ssim: fix s->coefs for yuv with non-4:2:0 subsampling.

2015-07-12 Thread Paul B Mahol
Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" napisala je: > > --- > libavfilter/vf_ssim.c | 81 +++ > 1 file changed, 37 insertions(+), 44 deletions(-) > > diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c > index 3ef122f..b1c3368 10064

Re: [FFmpeg-devel] [PATCH 3/4] vf_ssim: remove another obscure double loop.

2015-07-12 Thread Paul B Mahol
Dana 12. 7. 2015. 01:57 osoba "Ronald S. Bultje" napisala je: > > --- > libavfilter/vf_ssim.c | 18 -- > 1 file changed, 8 insertions(+), 10 deletions(-) > > diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c > index b1c3368..f7a259e 100644 > --- a/libavfilter/vf_ssim.c >

Re: [FFmpeg-devel] [PATCH v3] Add support for Audible AAX (and AAX+) files

2015-07-12 Thread Carl Eugen Hoyos
Vesselin Bontchev yandex.com> writes: [...] > +unsigned char file_key[20]; Maybe irrelevant but we normally use uint8_t. > +/* drm blob processing */ > +avio_seek(pb, 0x246, 0); I did not completely check so sorry if I miss something but afaict the "blob" is an atom with name "d

Re: [FFmpeg-devel] [PATCH] avcodec/dcadec: silence request_channels deprecation warnings

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 03:14:11AM -0300, James Almer wrote: > This also prevents an eventual compilation failure once request_channels > is removed. > > Signed-off-by: James Almer > --- > libavcodec/dcadec.c | 16 ++-- > 1 file changed, 14 insertions(+), 2 deletions(-) LGTM thx [

Re: [FFmpeg-devel] [PATCH v3] Add support for Audible AAX (and AAX+) files

2015-07-12 Thread Carl Eugen Hoyos
Vesselin Bontchev yandex.com> writes: > +if (!strncmp((char*)&type, "aax", 3)) { Three lines above you have: if (strcmp(type, "qt ")) c->isom = 1; So please make this: .. else if (!strcmp(type, "aax ")) { c->aax = 1; } (type[4] is initialized to 0 and o nly the first four

Re: [FFmpeg-devel] [PATCH 1/4] ssim: refactor a weird double loop.

2015-07-12 Thread Ronald S. Bultje
Hi, On Sun, Jul 12, 2015 at 6:48 AM, Paul B Mahol wrote: > Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" > napisala je: > > > > --- > > libavfilter/vf_ssim.c | 5 ++--- > > 1 file changed, 2 insertions(+), 3 deletions(-) > > > > diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c > >

Re: [FFmpeg-devel] [PATCH 2/4] vf_ssim: fix s->coefs for yuv with non-4:2:0 subsampling.

2015-07-12 Thread Ronald S. Bultje
Hi, On Sun, Jul 12, 2015 at 6:54 AM, Paul B Mahol wrote: > Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" > napisala je: > > > > --- > > libavfilter/vf_ssim.c | 81 > +++ > > 1 file changed, 37 insertions(+), 44 deletions(-) > > > > diff --git

Re: [FFmpeg-devel] [PATCH] ivfenc: write duration at end-of-stream.

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 06:47:20AM -0400, Ronald S. Bultje wrote: > At the beginning, the value is not initialized. > --- > libavformat/ivfenc.c | 30 +- > 1 file changed, 29 insertions(+), 1 deletion(-) applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B14

Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with mmi

2015-07-12 Thread 周晓勇
> -原始邮件- > 发件人: "Michael Niedermayer" > 发送时间: 2015年7月12日 星期日 > 收件人: "FFmpeg development discussions and patches" > 抄送: > 主题: Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with > mmi > > On Sat, Jul 11, 2015 at 09:02:51PM +0200, Michael Niedermayer wrote: > > On

Re: [FFmpeg-devel] GSoC Weely report (libswscale)

2015-07-12 Thread Pedro Arthur
I'll check it, I think most of these asserts are from some unused variables which were replaced by the SwsSlice struct. 2015-07-11 23:51 GMT-03:00 Michael Niedermayer : > On Sat, Jul 11, 2015 at 04:57:22PM -0300, Pedro Arthur wrote: > > Here is the full patch rebased including all previous change

Re: [FFmpeg-devel] [libav-devel] [PATCH] riffdec: error out on negative bit rate

2015-07-12 Thread Michael Niedermayer
On Sat, Jul 11, 2015 at 05:22:16PM +0200, Andreas Cadhalpun wrote: > On 11.07.2015 11:44, Luca Barbato wrote: > > On 11/07/15 01:26, Andreas Cadhalpun wrote: > >> Note however that the explode mode doesn't necessarily work, because e.g. > >> the avi demuxer doesn't set err_recognition for the AVCod

Re: [FFmpeg-devel] [PATCH 1/4] ssim: refactor a weird double loop.

2015-07-12 Thread Paul B Mahol
Dana 12. 7. 2015. 14:18 osoba "Ronald S. Bultje" napisala je: > > Hi, > > On Sun, Jul 12, 2015 at 6:48 AM, Paul B Mahol wrote: > > > Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" > > napisala je: > > > > > > --- > > > libavfilter/vf_ssim.c | 5 ++--- > > > 1 file changed, 2 insertions(+), 3

Re: [FFmpeg-devel] [PATCH 2/4] vf_ssim: fix s->coefs for yuv with non-4:2:0 subsampling.

2015-07-12 Thread Paul B Mahol
Dana 12. 7. 2015. 14:19 osoba "Ronald S. Bultje" napisala je: > > Hi, > > On Sun, Jul 12, 2015 at 6:54 AM, Paul B Mahol wrote: > > > Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" > > napisala je: > > > > > > --- > > > libavfilter/vf_ssim.c | 81 > > +++

[FFmpeg-devel] [PATCH] avformat/isom: utilize bitrate hints

2015-07-12 Thread Ganesh Ajjanagadde
Fixes Ticket4546 Signed-off-by: Ganesh Ajjanagadde --- libavformat/isom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/isom.c b/libavformat/isom.c index db9129b..69e408e 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -456,8 +456,8 @@ int ff_mp4

Re: [FFmpeg-devel] [PATCH] avformat/isom: utilize bitrate hints

2015-07-12 Thread Carl Eugen Hoyos
Ganesh Ajjanagadde gmail.com> writes: > -avio_rb32(pb); /* max bitrate */ > -avio_rb32(pb); /* avg bitrate */ > +st->codec->rc_max_rate = avio_rb32(pb); /* max bitrate */ > +st->codec->bit_rate = avio_rb32(pb); /* avg bitrate */ The documentation states (currently!) that these f

Re: [FFmpeg-devel] [PATCH 2/4] vf_ssim: fix s->coefs for yuv with non-4:2:0 subsampling.

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 02:31:48PM +, Paul B Mahol wrote: > Dana 12. 7. 2015. 14:19 osoba "Ronald S. Bultje" > napisala je: > > > > Hi, > > > > On Sun, Jul 12, 2015 at 6:54 AM, Paul B Mahol wrote: > > > > > Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" > > > napisala je: > > > > > > > > -

Re: [FFmpeg-devel] [PATCH] avformat/isom: utilize bitrate hints

2015-07-12 Thread Hendrik Leppkes
On Sun, Jul 12, 2015 at 5:22 PM, Carl Eugen Hoyos wrote: > Ganesh Ajjanagadde gmail.com> writes: > >> -avio_rb32(pb); /* max bitrate */ >> -avio_rb32(pb); /* avg bitrate */ >> +st->codec->rc_max_rate = avio_rb32(pb); /* max bitrate */ >> +st->codec->bit_rate = avio_rb32(pb); /* av

Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with mmi

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 09:13:18PM +0800, 周晓勇 wrote: > > > > > -原始邮件- > > 发件人: "Michael Niedermayer" > > 发送时间: 2015年7月12日 星期日 > > 收件人: "FFmpeg development discussions and patches" > > 抄送: > > 主题: Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred > > with mmi > > >

Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with mmi

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 09:13:18PM +0800, 周晓勇 wrote: > > > > > -原始邮件- > > 发件人: "Michael Niedermayer" > > 发送时间: 2015年7月12日 星期日 > > 收件人: "FFmpeg development discussions and patches" > > 抄送: > > 主题: Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred > > with mmi > > >

Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with mmi

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 05:56:09PM +0200, Michael Niedermayer wrote: > On Sun, Jul 12, 2015 at 09:13:18PM +0800, 周晓勇 wrote: > > > > > > > > > -原始邮件- > > > 发件人: "Michael Niedermayer" > > > 发送时间: 2015年7月12日 星期日 > > > 收件人: "FFmpeg development discussions and patches" > > > > > > 抄送: > >

Re: [FFmpeg-devel] [PATCH] avcodec/dcadec: silence request_channels deprecation warnings

2015-07-12 Thread James Almer
On 12/07/15 8:37 AM, Michael Niedermayer wrote: > On Sun, Jul 12, 2015 at 03:14:11AM -0300, James Almer wrote: >> This also prevents an eventual compilation failure once request_channels >> is removed. >> >> Signed-off-by: James Almer >> --- >> libavcodec/dcadec.c | 16 ++-- >> 1 file

Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with mmi

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 05:46:46PM +0200, Michael Niedermayer wrote: > On Sun, Jul 12, 2015 at 09:13:18PM +0800, 周晓勇 wrote: > > > > > > > > > -原始邮件- > > > 发件人: "Michael Niedermayer" > > > 发送时间: 2015年7月12日 星期日 > > > 收件人: "FFmpeg development discussions and patches" > > > > > > 抄送: > >

Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with mmi

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 06:52:09PM +0200, Michael Niedermayer wrote: > On Sun, Jul 12, 2015 at 05:46:46PM +0200, Michael Niedermayer wrote: > > On Sun, Jul 12, 2015 at 09:13:18PM +0800, 周晓勇 wrote: > > > > > > > > > > > > > -原始邮件- > > > > 发件人: "Michael Niedermayer" > > > > 发送时间: 2015年7月1

Re: [FFmpeg-devel] [PATCH] movtextdec.c: Add support for highlight and hilightcolor box

2015-07-12 Thread Philip Langdale
On Sun, 12 Jul 2015 12:50:22 +0530 Niklesh Lalwani wrote: > Updated patch attached. As Philip said, this was not a simple > re-indent, so indentation included. > > Thanks, > > Niklesh Pushed, thanks. --phil ___ ffmpeg-devel mailing list ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avformat/isom: utilize bitrate hints

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 05:43:10PM +0200, Hendrik Leppkes wrote: > On Sun, Jul 12, 2015 at 5:22 PM, Carl Eugen Hoyos wrote: > > Ganesh Ajjanagadde gmail.com> writes: > > > >> -avio_rb32(pb); /* max bitrate */ > >> -avio_rb32(pb); /* avg bitrate */ > >> +st->codec->rc_max_rate = avio_r

Re: [FFmpeg-devel] [PATCH 1/4] ssim: refactor a weird double loop.

2015-07-12 Thread Ronald S. Bultje
Hi, On Sun, Jul 12, 2015 at 10:29 AM, Paul B Mahol wrote: > Dana 12. 7. 2015. 14:18 osoba "Ronald S. Bultje" > napisala je: > > > > Hi, > > > > On Sun, Jul 12, 2015 at 6:48 AM, Paul B Mahol wrote: > > > > > Dana 12. 7. 2015. 01:56 osoba "Ronald S. Bultje" > > > napisala je: > > > > > > > > --

[FFmpeg-devel] [PATCH] avfilter: add deband filter

2015-07-12 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_deband.c | 183 +++ 3 files changed, 185 insertions(+) create mode 100644 libavfilter/vf_deband.c diff --git a/libavfilter/Makefile b/l

Re: [FFmpeg-devel] [PATCH] vf_psnr: sse2 optimizations for sum-squared-error.

2015-07-12 Thread Paul B Mahol
On 7/12/15, Ronald S. Bultje wrote: > The internal line accumulator for 16bit can overflow, so I changed that > from int to uint64_t in the C code. The matching assembly looks a little > weird but output looks correct. > > (avx2 should be trivial to add later.) > --- > libavfilter/psnr.h

Re: [FFmpeg-devel] [PATCH 3/4] vf_ssim: remove another obscure double loop.

2015-07-12 Thread Paul B Mahol
On 7/12/15, Paul B Mahol wrote: > Dana 12. 7. 2015. 01:57 osoba "Ronald S. Bultje" > napisala je: >> >> --- >> libavfilter/vf_ssim.c | 18 -- >> 1 file changed, 8 insertions(+), 10 deletions(-) >> >> diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c >> index b1c3368..f7a

Re: [FFmpeg-devel] [PATCH 1/4] ssim: refactor a weird double loop.

2015-07-12 Thread Paul B Mahol
On 7/12/15, Ronald S. Bultje wrote: > Hi, > > On Sun, Jul 12, 2015 at 10:29 AM, Paul B Mahol wrote: > >> Dana 12. 7. 2015. 14:18 osoba "Ronald S. Bultje" >> napisala je: >> > >> > Hi, >> > >> > On Sun, Jul 12, 2015 at 6:48 AM, Paul B Mahol wrote: >> > >> > > Dana 12. 7. 2015. 01:56 osoba "Ronal

Re: [FFmpeg-devel] [PATCH 4/4] vf_ssim: x86 simd for ssim_4x4xN and ssim_endN.

2015-07-12 Thread Paul B Mahol
On 7/11/15, Ronald S. Bultje wrote: > Both are 2-2.5x faster than their C counterpart. > --- > libavfilter/ssim.h | 36 > libavfilter/vf_ssim.c | 26 -- > libavfilter/x86/Makefile | 2 + > libavfilter/x86/vf_ssim.asm| 190 > +

[FFmpeg-devel] [PATCH] vf_ssim: x86 simd for ssim_4x4xN and ssim_endN.

2015-07-12 Thread Ronald S. Bultje
Both are 2-2.5x faster than their C counterpart. --- libavfilter/ssim.h | 36 libavfilter/vf_ssim.c | 26 -- libavfilter/x86/Makefile | 2 + libavfilter/x86/vf_ssim.asm| 191 + libavfilter/x86/vf_ssim_init.c |

[FFmpeg-devel] [PATCH] vf_ssim: x86 simd for ssim_4x4xN and ssim_endN.

2015-07-12 Thread Ronald S. Bultje
Both are 2-2.5x faster than their C counterpart. --- libavfilter/ssim.h | 36 libavfilter/vf_ssim.c | 26 -- libavfilter/x86/Makefile | 2 + libavfilter/x86/vf_ssim.asm| 191 + libavfilter/x86/vf_ssim_init.c |

Re: [FFmpeg-devel] [PATCH] vf_psnr: sse2 optimizations for sum-squared-error.

2015-07-12 Thread Ronald S. Bultje
Hi, On Sun, Jul 12, 2015 at 5:54 PM, Paul B Mahol wrote: > On 7/12/15, Ronald S. Bultje wrote: > > The internal line accumulator for 16bit can overflow, so I changed that > > from int to uint64_t in the C code. The matching assembly looks a little > > weird but output looks correct. > > > > (av

Re: [FFmpeg-devel] [PATCH 1/4] ssim: refactor a weird double loop.

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 10:07:16PM +, Paul B Mahol wrote: > On 7/12/15, Ronald S. Bultje wrote: > > Hi, > > > > On Sun, Jul 12, 2015 at 10:29 AM, Paul B Mahol wrote: > > > >> Dana 12. 7. 2015. 14:18 osoba "Ronald S. Bultje" > >> napisala je: > >> > > >> > Hi, > >> > > >> > On Sun, Jul 12, 20

Re: [FFmpeg-devel] [PATCH 3/4] vf_ssim: remove another obscure double loop.

2015-07-12 Thread Michael Niedermayer
On Sun, Jul 12, 2015 at 10:04:32PM +, Paul B Mahol wrote: > On 7/12/15, Paul B Mahol wrote: > > Dana 12. 7. 2015. 01:57 osoba "Ronald S. Bultje" > > napisala je: > >> > >> --- > >> libavfilter/vf_ssim.c | 18 -- > >> 1 file changed, 8 insertions(+), 10 deletions(-) > >> > >>

Re: [FFmpeg-devel] [PATCH] Factor duplicated ff_fast_malloc() out into mem_internal.h

2015-07-12 Thread Michael Niedermayer
On Sat, Jul 11, 2015 at 11:58:39PM +0200, Michael Niedermayer wrote: > From: Michael Niedermayer > > internal.h is difficult to use due to circular dependancies > mem.h is a public header ff_* is not public > Alternative solutions probably are possible too > > Signed-off-by: Michael Niedermayer

[FFmpeg-devel] [PATCH] dxva2_hevc: unbreak compilation after recent sps/pps changes

2015-07-12 Thread James Almer
Signed-off-by: James Almer --- It compiles, but i can't test it. libavcodec/dxva2_hevc.c | 152 1 file changed, 76 insertions(+), 76 deletions(-) diff --git a/libavcodec/dxva2_hevc.c b/libavcodec/dxva2_hevc.c index 5f5134b..2c961a4 100644 --- a/l

Re: [FFmpeg-devel] [PATCH 4/4] avcodec: loongson optimized h264pred with mmi

2015-07-12 Thread 周晓勇
> so what is the plan to continue ? > you suggested to upgrade to Fedora21 but fate does not pass after the > upgrade > > you should have tested this before suggesting an upgrade! > > i cannot test your patches if fate does not pass > > will you fix the failures in Fedora21 or is there some othe

Re: [FFmpeg-devel] [PATCH] dxva2_hevc: unbreak compilation after recent sps/pps changes

2015-07-12 Thread James Almer
On 12/07/15 10:37 PM, James Almer wrote: > Signed-off-by: James Almer > --- > It compiles, but i can't test it. > > libavcodec/dxva2_hevc.c | 152 > > 1 file changed, 76 insertions(+), 76 deletions(-) Philip Langdale confirmed the fix is good, s

[FFmpeg-devel] [PATCH] ffmpeg_opt: discard packets correctly

2015-07-12 Thread Ganesh Ajjanagadde
libav commit 13f6917c merged in 574dcb5b results in unnecessary seeks due to discarded packets; especially problematic over a network. Fixes Ticket4126 Signed-off-by: Ganesh Ajjanagadde --- ffmpeg_opt.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ffmpeg_opt.c