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
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_
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
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
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
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
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
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
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.
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
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
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
>
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
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
[
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
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
> >
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
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
> -原始邮件-
> 发件人: "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
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
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
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
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
> > +++
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
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
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:
> > > >
> > > > -
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
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
> >
>
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
> >
>
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"
> > >
> > > 抄送:
> >
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
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"
> > >
> > > 抄送:
> >
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
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
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
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:
> > > >
> > > > --
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
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
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
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
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
> +
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 |
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 |
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
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
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(-)
> >>
> >>
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
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
> 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
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
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
51 matches
Mail list logo