On Thursday 14 May 2015 01:47:54 pm Michael Niedermayer wrote:
> On Thu, May 14, 2015 at 12:28:13PM +0200, Carl Eugen Hoyos wrote:
> > Hi!
> >
> > Attached patch fixes reading valid pict files with non-zero user data.
> >
https://developer.apple.com/legacy/library/documentation/mac/QuickDraw/Quick
On Tue, May 19, 2015 at 10:33:52AM +0200, Carl Eugen Hoyos wrote:
> On Thursday 14 May 2015 01:47:54 pm Michael Niedermayer wrote:
> > On Thu, May 14, 2015 at 12:28:13PM +0200, Carl Eugen Hoyos wrote:
> > > Hi!
> > >
> > > Attached patch fixes reading valid pict files with non-zero user data.
> > >
On Mon, May 18, 2015 at 09:21:30PM -0400, Ronald S. Bultje wrote:
> Hi,
>
> On Mon, May 18, 2015 at 7:53 AM, Michael Niedermayer
> wrote:
>
> > This improves compression but only by a very small bit
> > possibly it could be improved by exactly calculating the number of bits
> > that would be nee
Hi!
Attached patch improves the Quickdraw autodetection.
Please comment, Carl Eugen
diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c
index 0830f00..ec234d1 100644
--- a/libavformat/img2dec.c
+++ b/libavformat/img2dec.c
@@ -714,8 +714,10 @@ static int qdraw_probe(AVProbeData *p)
{
On 19/05/15 01:33, Michael Niedermayer wrote:
> The default is assumed to be 0xFF, which is what the 2009 spec lists,
> the older version i have lists 0 as the default.
>
> Signed-off-by: Michael Niedermayer
> ---
> libavformat/mxfenc.c| 28 +
> tests/ref/la
Thanks Philip. Updated.
-Niklesh
3gpp-fix-crashes-19may.patch
Description: Binary data
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
On Tue, May 19, 2015 at 12:07:24PM +0100, tim nicholson wrote:
> On 19/05/15 01:33, Michael Niedermayer wrote:
> > The default is assumed to be 0xFF, which is what the 2009 spec lists,
> > the older version i have lists 0 as the default.
> >
> > Signed-off-by: Michael Niedermayer
> > ---
> > lib
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 19/05/15 14:11, Michael Niedermayer wrote:
> On Tue, May 19, 2015 at 12:07:24PM +0100, tim nicholson wrote:
>> On 19/05/15 01:33, Michael Niedermayer wrote:
>>> The default is assumed to be 0xFF, which is what the 2009 spec lists
,
>>> the older ver
On Tue, 19 May 2015 18:35:09 +0530
Niklesh Lalwani wrote:
> Thanks Philip. Updated.
>
> -Niklesh
Looks good. I'll commit it later today.
--phil
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
On Tue, May 19, 2015 at 03:35:42PM +0100, tim nicholson wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On 19/05/15 14:11, Michael Niedermayer wrote:
> > On Tue, May 19, 2015 at 12:07:24PM +0100, tim nicholson wrote:
> >> On 19/05/15 01:33, Michael Niedermayer wrote:
> >>> The default
On Tue, May 19, 2015 at 10:33:52AM +0200, Carl Eugen Hoyos wrote:
> On Thursday 14 May 2015 01:47:54 pm Michael Niedermayer wrote:
> > On Thu, May 14, 2015 at 12:28:13PM +0200, Carl Eugen Hoyos wrote:
> > > Hi!
> > >
> > > Attached patch fixes reading valid pict files with non-zero user data.
> > >
On Tue, May 19, 2015 at 11:58:47AM +0200, Carl Eugen Hoyos wrote:
> Hi!
>
> Attached patch improves the Quickdraw autodetection.
>
> Please comment, Carl Eugen
> img2dec.c |6 --
> 1 file changed, 4 insertions(+), 2 deletions(-)
> e36c8a9c4c72f72030658d5f70ca46b27066eda3 patchimg2qdrw.
On Mon, May 18, 2015 at 09:04:01PM +0200, Jerome Martinez wrote:
>
> ffv1.lyx | 530
> ---
> 1 file changed, 204 insertions(+), 326 deletions(-)
> 38da62e7514e7ece306076f4de29aa1f99279920
> 0001-Merge-of-FrameHeader01-and-GlobalHead
Le 19/05/2015 21:15, Michael Niedermayer a écrit :
On Mon, May 18, 2015 at 09:04:01PM +0200, Jerome Martinez wrote:
FrameHeader01() and GlobalHeader() have a lot of common fields
and having a common function + default value for fields unused
in previous versions is less complex and more coheren
Hi!
The scale filter currently skips scaling if width, height and pix_fmt do not
change. I suspect it should scale if the user specified different colour
ranges for input and output.
Attached patch is not sufficient, libswscale decides to use "simple copy"
before srcRange and dstRange are set.
This can unnecessarily waste a lot of time.
Signed-off-by: Andreas Cadhalpun
---
libavformat/nutdec.c | 8 +---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index a75587f..e979ee6 100644
--- a/libavformat/nutdec.c
+++ b/libavformat
nut->last_syncpoint_pos doesn't necessarily change between resync
attempts, so find_any_startcode can return the same startcode again.
Thus remember where the last resync happened and don't try to resync
before that.
This can't be done locally in nut_read_packet, because this wouldn't
prevent inf
These loops can take a lot of time if count is very large.
Signed-off-by: Andreas Cadhalpun
---
libavformat/nutdec.c | 8
1 file changed, 8 insertions(+)
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index e979ee6..ad61d7e 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/
On Wed, May 20, 2015 at 12:49:49AM +0200, Andreas Cadhalpun wrote:
> nut->last_syncpoint_pos doesn't necessarily change between resync
> attempts, so find_any_startcode can return the same startcode again.
>
> Thus remember where the last resync happened and don't try to resync
> before that.
>
>
If someone wants to cleanup spelling and grammer and push this, do not
hesitate!
I just wanted to document the 2 newly added options and then realized
that flac enc is missig from the docs ...
Signed-off-by: Michael Niedermayer
---
doc/encoders.texi | 76 +++
On Wed, May 20, 2015 at 12:49:55AM +0200, Andreas Cadhalpun wrote:
> This can unnecessarily waste a lot of time.
>
> Signed-off-by: Andreas Cadhalpun
> ---
> libavformat/nutdec.c | 8 +---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/libavformat/nutdec.c b/libavformat/
On Tue, May 19, 2015 at 10:24:02PM +0200, Jerome Martinez wrote:
> Le 19/05/2015 21:15, Michael Niedermayer a écrit :
> >On Mon, May 18, 2015 at 09:04:01PM +0200, Jerome Martinez wrote:
> >
> >>FrameHeader01() and GlobalHeader() have a lot of common fields
> >>and having a common function + default
On Wed, May 20, 2015 at 12:50:00AM +0200, Andreas Cadhalpun wrote:
> These loops can take a lot of time if count is very large.
>
> Signed-off-by: Andreas Cadhalpun
> ---
> libavformat/nutdec.c | 8
> 1 file changed, 8 insertions(+)
>
> diff --git a/libavformat/nutdec.c b/libavformat/n
I used Zip-7 to unpack the file no problem;
It's file properties now being;
Name: ffmpeg-2.6.3
Folder: +
Size: 44 550 426
Packed Size: 45 859 840
Modified: 2015-05-17 02:26:53
Mode: Orwx
User: Michael
Group: Michael
Folder: 64
Files: 4922
Etc: the icon's a docume
On 19/05/15 9:31 PM, Michael Niedermayer wrote:
> If someone wants to cleanup spelling and grammer and push this, do not
> hesitate!
> I just wanted to document the 2 newly added options and then realized
> that flac enc is missig from the docs ...
>
> Signed-off-by: Michael Niedermayer
> ---
>
25 matches
Mail list logo