On Wed, 29 Jul 2015 21:06:33 -0300
James Almer wrote:
> The test code is updated with some cosmetics to avoid the loop
> using undefined AVHMACType values.
> The old enum values will be removed in the next major bump, effectively
> making both projects synced and without API or ABI issues.
>
Uh
2015-07-30 0:01 GMT+08:00 Clément Bœsch :
> On Tue, Jul 28, 2015 at 09:01:50PM +0800, Zhang Rui wrote:
>> 2015-07-28 16:04 GMT+08:00 Clément Bœsch :
>> > On Mon, Jul 27, 2015 at 10:10:12PM +0800, Zhang Rui wrote:
>> >> 2015-07-27 20:14 GMT+08:00 Clément Bœsch :
>> >> > On Mon, Jul 27, 2015 at 06:13
Vesselin Bontchev yandex.com> writes:
> Is the licensing blurb okay now?
No objections from me, the "This file is part of"
may be unnecessary.
> +avio_read(pb, key, nkey); // key string
I may miss something but I wonder if there
isn't a check missing if nkey is sane and
if pb is long en
On Thu, 30 Jul 2015 16:08:36 +0800
Zhang Rui wrote:
> 2015-07-30 0:01 GMT+08:00 Clément Bœsch :
> > On Tue, Jul 28, 2015 at 09:01:50PM +0800, Zhang Rui wrote:
> >> 2015-07-28 16:04 GMT+08:00 Clément Bœsch :
> >> > On Mon, Jul 27, 2015 at 10:10:12PM +0800, Zhang Rui wrote:
> >> >> 2015-07-27 20:14
2015-07-30 16:37 GMT+08:00 wm4 :
> On Thu, 30 Jul 2015 16:08:36 +0800
> Zhang Rui wrote:
>
>> 2015-07-30 0:01 GMT+08:00 Clément Bœsch :
>> > On Tue, Jul 28, 2015 at 09:01:50PM +0800, Zhang Rui wrote:
>> >> 2015-07-28 16:04 GMT+08:00 Clément Bœsch :
>> >> > On Mon, Jul 27, 2015 at 10:10:12PM +0800,
Hi,
I don't know if this is the right place to ask for this kind of information.
Basically I am trying to get width and height from the H264 SPS using ffmpeg.
Using a reduced sample like this :
#include
#include
int main()
{
const char sps[] = {0, 0, 0, 1, 0x67, 0x42,
On Thu, 30 Jul 2015 17:12:21 +0800
Zhang Rui wrote:
> 2015-07-30 16:37 GMT+08:00 wm4 :
> > On Thu, 30 Jul 2015 16:08:36 +0800
> > Zhang Rui wrote:
> >
> >> 2015-07-30 0:01 GMT+08:00 Clément Bœsch :
> >> > On Tue, Jul 28, 2015 at 09:01:50PM +0800, Zhang Rui wrote:
> >> >> 2015-07-28 16:04 GMT+08:
Please review.
Thanks,
VesselinFrom 06b0c0013404a67c72ea14a3c90730c0c4bd5b9a Mon Sep 17 00:00:00 2001
From: Vesselin Bontchev
Date: Sun, 19 Jul 2015 23:16:36 +0200
Subject: [PATCH] Add support for Audible AA files
https://en.wikipedia.org/wiki/Audible.com#Quality
---
doc/demuxers.texi|
hi,
avcodec_encode_audio() is used to encode audio frame. How to flush audio
delayed frames in audio encoder?
Thanks!
B.R.
Andrew
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
30.07.2015, 11:35, "Carl Eugen Hoyos" :
> Vesselin Bontchev yandex.com> writes:
>> + if (c->aa_fixed_key_size != 16) {
>> // AVOption with a default value
>
> Again: Where is this variable set?
> You don't have to add a comment, just
> tell me, I don't see it.
+#define OFFSET(x) offsetof(AADe
On Sat, Jul 25, 2015 at 01:12:06PM -0300, James Almer wrote:
> Between 1.5 and 2.5 times faster
>
> Signed-off-by: James Almer
> ---
> libavcodec/aacps.c | 4 +-
> libavcodec/aacpsdsp.h | 1 +
> libavcodec/aacpsdsp_template.c | 2 +
> libavcodec/x86/Makefile|
On Wed, Jul 29, 2015 at 05:28:16PM -0400, Ganesh Ajjanagadde wrote:
> On Wed, Jul 29, 2015 at 3:27 PM, Michael Niedermayer
> wrote:
> > On Wed, Jul 29, 2015 at 02:43:52PM -0400, Ganesh Ajjanagadde wrote:
> >> On Mon, Jul 27, 2015 at 9:56 AM, Ganesh Ajjanagadde
> >> wrote:
> >> > This fixes Ticket
Hi,
On Thu, Jul 30, 2015 at 5:16 AM, PROMONET Michel <
michel.promo...@thalesgroup.com> wrote:
> Hi,
>
> I don't know if this is the right place to ask for this kind of
> information.
> Basically I am trying to get width and height from the H264 SPS using
> ffmpeg.
>
> Using a reduced
On Wed, Jul 29, 2015 at 12:28:47AM -0400, Ganesh Ajjanagadde wrote:
> May be used to fix Ticket4577
>
> Signed-off-by: Ganesh Ajjanagadde
> ---
> libavformat/riffdec.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavformat/riffdec.c b/libavformat/riffdec.c
> in
I added "custom.c" to ffmpeg source directory and insert "OBJS-ffmpeg +=
ffmpeg_opt.o ffmpeg_filter.o custom.o" into Makefile file. I can compile the
project.
Then, i used OpenMP in "custom.c", like this:
#pragma omp parallel for
for (int i = 0; i < 10; ++i)
I need "-fopenmp" to
On 2015-07-30 15:36, Nemo wrote:
> I need "-fopenmp" to tell gcc to use OpenMP now. But where should I insert
> "-fopenmp" to?
Add it to the compiler and linker flags. The easiest way to do this
with ffmpeg is probably to configure with --extra-cflags=-fopenmp and
--extra-ldflags=-fopenmp
si
Hi Ronald,
Thanks for the quick answer, following the code this was also my guess.
From my side I feel that it could be nice to use ffmpeg to decode SPS without
any stream, I would like to avoid an other processing of the SPS.
Is there a particular reason for hiding width/height before decoding
On Thu, 30 Jul 2015 16:58:38 +0200
PROMONET Michel wrote:
> Hi Ronald,
>
> Thanks for the quick answer, following the code this was also my guess.
>
> From my side I feel that it could be nice to use ffmpeg to decode SPS without
> any stream, I would like to avoid an other processing of the SP
Hi,
On 28.07.2015 15:36, Vittorio Giovara wrote:
> This set contains the removal of all deprecated features marked as
> such until 2012/early 2013. This was announced several times in the
> past months and agreed at several meetings (since fosdem and recently
> at the sprint).
>
> With more than
On Thu, Jul 30, 2015 at 9:31 AM, Michael Niedermayer
wrote:
> On Wed, Jul 29, 2015 at 12:28:47AM -0400, Ganesh Ajjanagadde wrote:
>> May be used to fix Ticket4577
>>
>> Signed-off-by: Ganesh Ajjanagadde
>> ---
>> libavformat/riffdec.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
---
doc/filters.texi| 38 +
libavfilter/Makefile| 1 +
libavfilter/allfilters.c| 1 +
libavfilter/vf_atadenoise.c | 327
4 files changed, 367 insertions(+)
create mode 100755 libavfilter/vf_atadenoise.c
diff --git a/do
On 30.07.2015 17:38, Anton Khirnov wrote:
> Quoting Andreas Cadhalpun (2015-07-30 17:05:12)
>> Ideally you should make sure that patches for all of them are available,
>> before these APIs get removed.
>>
>> Considering how widespread the use of FF_API_PIX_FMT and FF_API_AVFRAME_LAVC
>> still is, i
Am 30.07.2015 17:50 schrieb "Andreas Cadhalpun" <
andreas.cadhal...@googlemail.com>:
>
> On 30.07.2015 17:38, Anton Khirnov wrote:
> > Quoting Andreas Cadhalpun (2015-07-30 17:05:12)
> >> Ideally you should make sure that patches for all of them are
available,
> >> before these APIs get removed.
>
Hi all
luca has reimplemented some of the option handling in hls like
cookies and user agent
ive merged this in ba12ba859aabfa7153ba397d869db13acdaba340
and used the new wraper functions where they fitted easily
ive left the code using the previous tested and working option system
Someone should
On 30/07/15 4:27 AM, wm4 wrote:
> On Wed, 29 Jul 2015 21:06:33 -0300
> James Almer wrote:
>
>> The test code is updated with some cosmetics to avoid the loop
>> using undefined AVHMACType values.
>> The old enum values will be removed in the next major bump, effectively
>> making both projects sy
Cookies and user agent stuff all look the same to me (I'll test with
an encrypted stream this weekend).
Also, its cool that he added renditions.
On Thu, Jul 30, 2015 at 12:14 PM, Michael Niedermayer
wrote:
> Hi all
>
> luca has reimplemented some of the option handling in hls like
> cookies and
Hi,
On Thu, Jul 30, 2015 at 10:58 AM, PROMONET Michel <
michel.promo...@thalesgroup.com> wrote:
> Hi Ronald,
>
> Thanks for the quick answer, following the code this was also my guess.
>
> From my side I feel that it could be nice to use ffmpeg to decode SPS
> without any stream, I would like to
On 30.07.2015 18:00, Hendrik Leppkes wrote:
> Patching dozens of downstream projects is clearly not in the scope of what
> should be expected from any Libav or FFmpeg developer.
But keeping the API usable is. Regularly breaking the majority of reverse
dependencies makes an API much less usable.
S
On 30.07.2015 18:10, Luca Barbato wrote:
> On 30/07/15 17:49, Andreas Cadhalpun wrote:
>> Have you tried sending them patches before breaking compatibility?
>
> We did in the past.
Great, so please do it again.
> Needless to say distributors then did not pick up the updated releases
> of those s
On 30.07.2015 18:26, Anton Khirnov wrote:
> Quoting Andreas Cadhalpun (2015-07-30 17:49:51)
>> I think that keeping some of these APIs "forever" is much less of a problem
>> then breaking the majority of reverse dependencies.
>
> The API breaks are not done for the fun of it.
I hope so. ;)
> The
On Thu, Jul 30, 2015 at 12:39:53PM -0400, Micah Galizia wrote:
> Cookies and user agent stuff all look the same to me (I'll test with
> an encrypted stream this weekend).
the Cookies & user agent stuff is still the code as it was previously
best to look at the diff of the new code
git show 0c73a5
On Thu, Jul 30, 2015 at 11:17:28AM -0400, Ganesh Ajjanagadde wrote:
> On Thu, Jul 30, 2015 at 9:31 AM, Michael Niedermayer
> wrote:
> > On Wed, Jul 29, 2015 at 12:28:47AM -0400, Ganesh Ajjanagadde wrote:
> >> May be used to fix Ticket4577
> >>
> >> Signed-off-by: Ganesh Ajjanagadde
> >> ---
> >>
Signed-off-by: Ganesh Ajjanagadde
---
libavcodec/aacdec_template.c | 5 -
1 file changed, 5 deletions(-)
diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c
index 2f270bc..d7849da 100644
--- a/libavcodec/aacdec_template.c
+++ b/libavcodec/aacdec_template.c
@@ -1907,11 +1
Can be used to fix Ticket4577
Signed-off-by: Ganesh Ajjanagadde
---
libavformat/wavdec.c | 9 +++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index 1803b5c..ba70da6 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@
On Wed, 29 Jul 2015, Michael Niedermayer wrote:
From: Michael Niedermayer
This theoretically is faster and might be useful on some low end embeded systems
This issue seems quite theoretical to me. Scaling happens only once per
subtitle, usually no more often than once per second. I'd say l
On Thu, Jul 30, 2015 at 04:06:54PM -0400, Ganesh Ajjanagadde wrote:
> Can be used to fix Ticket4577
>
> Signed-off-by: Ganesh Ajjanagadde
> ---
> libavformat/wavdec.c | 9 +++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
>
On Thu, Jul 30, 2015 at 02:43:01PM +0200, Michael Niedermayer wrote:
> On Wed, Jul 29, 2015 at 05:28:16PM -0400, Ganesh Ajjanagadde wrote:
> > On Wed, Jul 29, 2015 at 3:27 PM, Michael Niedermayer
> > wrote:
> > > On Wed, Jul 29, 2015 at 02:43:52PM -0400, Ganesh Ajjanagadde wrote:
> > >> On Mon, Ju
See attached. Possibly useful for debugging async issues that crop up
from time to time.
Thanks!
-roger-
0001-dshow-show-more-debug-timestamp-info.patch
Description: Binary data
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/ma
On Thu, Jul 30, 2015 at 5:49 PM, Michael Niedermayer
wrote:
> On Thu, Jul 30, 2015 at 02:43:01PM +0200, Michael Niedermayer wrote:
>> On Wed, Jul 29, 2015 at 05:28:16PM -0400, Ganesh Ajjanagadde wrote:
>> > On Wed, Jul 29, 2015 at 3:27 PM, Michael Niedermayer
>> > wrote:
>> > > On Wed, Jul 29, 20
On 30/07/15 9:30 AM, Michael Niedermayer wrote:
> On Sat, Jul 25, 2015 at 01:12:06PM -0300, James Almer wrote:
>> Between 1.5 and 2.5 times faster
>>
>> Signed-off-by: James Almer
>> ---
>> libavcodec/aacps.c | 4 +-
>> libavcodec/aacpsdsp.h | 1 +
>> libavcodec/aacpsdsp_
On Thu, Jul 30, 2015 at 11:46:43PM +0200, Michael Niedermayer wrote:
> On Thu, Jul 30, 2015 at 04:06:54PM -0400, Ganesh Ajjanagadde wrote:
> > Can be used to fix Ticket4577
> >
> > Signed-off-by: Ganesh Ajjanagadde
> > ---
> > libavformat/wavdec.c | 9 +++--
> > 1 file changed, 7 insertions(
On Thu, Jul 30, 2015 at 6:02 PM, Michael Niedermayer
wrote:
> On Thu, Jul 30, 2015 at 11:46:43PM +0200, Michael Niedermayer wrote:
>> On Thu, Jul 30, 2015 at 04:06:54PM -0400, Ganesh Ajjanagadde wrote:
>> > Can be used to fix Ticket4577
>> >
>> > Signed-off-by: Ganesh Ajjanagadde
>> > ---
>> > l
Needed for old compilers like GCC 4.2
Tested by trac user brad. Fixes ticket #4745
Signed-off-by: James Almer
---
libavcodec/mips/hevc_mc_bi_msa.c | 4 ++--
libavcodec/mips/hevc_mc_biw_msa.c | 4 ++--
libavcodec/mips/hevc_mc_uni_msa.c | 4 ++--
libavcodec/mips/hevc_mc_uniw_msa.c | 4 ++--
On Thu, Jul 30, 2015 at 07:31:13PM -0300, James Almer wrote:
> Needed for old compilers like GCC 4.2
> Tested by trac user brad. Fixes ticket #4745
>
> Signed-off-by: James Almer
> ---
> libavcodec/mips/hevc_mc_bi_msa.c | 4 ++--
> libavcodec/mips/hevc_mc_biw_msa.c | 4 ++--
> libavcodec/mi
On 30/07/15 8:33 PM, Michael Niedermayer wrote:
> On Thu, Jul 30, 2015 at 07:31:13PM -0300, James Almer wrote:
>> Needed for old compilers like GCC 4.2
>> Tested by trac user brad. Fixes ticket #4745
>>
>> Signed-off-by: James Almer
>> ---
>> libavcodec/mips/hevc_mc_bi_msa.c | 4 ++--
>> libav
Can be used to fix Ticket4577
Signed-off-by: Ganesh Ajjanagadde
---
libavformat/wavdec.c | 7 +++
1 file changed, 7 insertions(+)
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index 1803b5c..8b48fc8 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -440,6 +440,13 @@
On Thu, Jul 30, 2015 at 08:33:28PM -0400, Ganesh Ajjanagadde wrote:
> Can be used to fix Ticket4577
>
> Signed-off-by: Ganesh Ajjanagadde
> ---
> libavformat/wavdec.c | 7 +++
> 1 file changed, 7 insertions(+)
applied
thanks
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF13
On Thu, Jul 30, 2015 at 03:56:30PM -0600, Roger Pack wrote:
> See attached. Possibly useful for debugging async issues that crop up
> from time to time.
> Thanks!
should i apply this to ffmpeg git ?
its not clear to me if this is intended for git or just for others
to test/debug ?
[...]
--
Mic
On Thu, Jul 30, 2015 at 05:57:54PM -0400, Ganesh Ajjanagadde wrote:
> On Thu, Jul 30, 2015 at 5:49 PM, Michael Niedermayer
> wrote:
> > On Thu, Jul 30, 2015 at 02:43:01PM +0200, Michael Niedermayer wrote:
> >> On Wed, Jul 29, 2015 at 05:28:16PM -0400, Ganesh Ajjanagadde wrote:
> >> > On Wed, Jul 2
On Thu, Jul 30, 2015 at 9:53 PM, Michael Niedermayer
wrote:
> On Thu, Jul 30, 2015 at 05:57:54PM -0400, Ganesh Ajjanagadde wrote:
>> On Thu, Jul 30, 2015 at 5:49 PM, Michael Niedermayer
>> wrote:
>> > On Thu, Jul 30, 2015 at 02:43:01PM +0200, Michael Niedermayer wrote:
>> >> On Wed, Jul 29, 2015
This fixes Ticket2964
Signed-off-by: Ganesh Ajjanagadde
---
ffmpeg.c | 2 +-
tests/fate-run.sh | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index 5575e2f..eb3f613 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -372,7 +372,7 @@ void term_init(void)
51 matches
Mail list logo