On Tue, Jan 20, 2015 at 09:58:33PM +0100, Reimar Döffinger wrote:
> On Mon, Jan 19, 2015 at 10:58:02PM +0100, Clément Bœsch wrote:
> > -echo "scale=2; v = $1 - $2; if (v < 0) v = -v; if (v > $3) r = 1; r" |
> > bc
> > +awk "BEGIN { v=$1-$2; printf \"%d\\n\", ((v<0?v:-v) > $3) ? 1 : 0 }"
>
On Sun, Feb 08, 2015 at 10:27:14AM +0100, Clément Bœsch wrote:
> On Tue, Jan 20, 2015 at 09:58:33PM +0100, Reimar Döffinger wrote:
> > On Mon, Jan 19, 2015 at 10:58:02PM +0100, Clément Bœsch wrote:
> > > -echo "scale=2; v = $1 - $2; if (v < 0) v = -v; if (v > $3) r = 1; r"
> > > | bc
> > > +
Mickaël Raulet insa-rennes.fr> writes:
> As we can consider, we won't have 4k interlaced
> content, copying a field into a frame should be ok.
> This is what has been done in this implementation.
Do you have a sample?
I am only interested in testing this.
Thank you, Carl Eugen
___
Michael Niedermayer gmx.at> writes:
> On Sat, Feb 07, 2015 at 08:27:49PM +, Carl Eugen Hoyos wrote:
> > Ronald S. Bultje gmail.com> writes:
> >
> > > I'm not sure we should ever set -mdynamic-no-pic
> > > on Mac x86-64?
> skiping the -mdynamic-no-pic check and addition
> on x86-64 looks
Michael Niedermayer gmx.at> writes:
> patch LGTM
The patch was merged.
Thank you, Carl Eugen
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
On Fri, Feb 06, 2015 at 10:47:09AM +0100, Stefano Sabatini wrote:
> On date Thursday 2015-02-05 22:12:08 +0530, Eejya Singh encoded:
> [...]
> > From ed526a03c939055e2b9f931a0cb4e0e22b7b5b04 Mon Sep 17 00:00:00 2001
> > From: Eejya Singh
> > Date: Wed, 28 Jan 2015 17:41:42 +0530
> > Subject: [PATC
Hi,
2015-02-07 23:06 GMT+01:00 James Almer :
> Signed-off-by: James Almer
> ---
> libavcodec/x86/hevc_sao.asm | 40
> libavcodec/x86/hevcdsp_init.c | 24
> 2 files changed, 48 insertions(+), 16 deletions(-)
Passes fate here for
Suggestions for more efficient make rules, clearer documentation and a
better macro than the generic 'DBG' welcome.
--
Christophe
From 8e2adea82a4ec440744b701716a93e6ecaf211d6 Mon Sep 17 00:00:00 2001
From: Christophe Gisquet
Date: Sun, 8 Feb 2015 12:18:27 +0100
Subject: [PATCH] x86/doc/Makefile
Hi,
the attached patch is strictly identical to this x264 one:
http://git.videolan.org/?p=x264/x264-sandbox.git;a=commit;h=a7a909fc7b82df85ff369adcbc048927ebec2289
except for the edited paths.
The goal is to catch that last batch of issues in external asm:
http://git.videolan.org/?p=ffmpeg.git;a=
---
libavcodec/ass.c | 5 +++--
libavcodec/ass.h | 3 +++
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/libavcodec/ass.c b/libavcodec/ass.c
index ea247f8..468b8bb 100644
--- a/libavcodec/ass.c
+++ b/libavcodec/ass.c
@@ -36,8 +36,8 @@ int ff_ass_subtitle_header(AVCodecContext *avct
The positioning was completely wrong. First, the coordinates are
expressed in ASS playback resolution (which is by default 384x288).
Secondly, the coordinates define a drawing rectangle, not a moving area.
The previous code was making subtitles move from a random position to
another random position
On Sun, Feb 08, 2015 at 12:40:19PM +0100, Clément Bœsch wrote:
> The positioning was completely wrong. First, the coordinates are
> expressed in ASS playback resolution (which is by default 384x288).
> Secondly, the coordinates define a drawing rectangle, not a moving area.
> The previous code was
On Sun, 8 Feb 2015 04:37:31 + (UTC)
Ben Boeckel wrote:
> On Sun, 08 Feb, 2015 at 02:05:45 GMT, Michael Niedermayer wrote:
> > i tried clementine
> > it happily adds and edits id3 tags on ogg files, one has to rename
> > the file to .mp3 though.
> > So no problem as noone would be doing that .
Christophe Gisquet gmail.com> writes:
> Suggestions for more efficient make rules, clearer documentation
> and a better macro than the generic 'DBG' welcome.
Doesn't this also need an update for "make clean"?
Carl Eugen
___
ffmpeg-devel mailing list
Hi,
On Sun, Feb 8, 2015 at 6:30 AM, Christophe Gisquet <
christophe.gisq...@gmail.com> wrote:
> Hi,
>
> the attached patch is strictly identical to this x264 one:
>
> http://git.videolan.org/?p=x264/x264-sandbox.git;a=commit;h=a7a909fc7b82df85ff369adcbc048927ebec2289
> except for the edited paths
Hi,
On Sat, Feb 7, 2015 at 9:10 PM, James Almer wrote:
> On 07/02/15 11:08 PM, James Almer wrote:
> > On 07/02/15 11:05 PM, Ronald S. Bultje wrote:
> >> Hi,
> >>
> >> On Sat, Feb 7, 2015 at 8:33 PM, James Almer wrote:
> >>
> >>> Signed-off-by: James Almer
> >>> ---
> >>> libavcodec/x86/vp9itx
Hi,
2015-02-08 14:28 GMT+01:00 Ronald S. Bultje :
> Cool! Do you know if it catches all assembly types now (e.g. does it catch
> mmxext in mmx functions)? Or is it >=sse only?
Good thing that you asked, because I attached an earlier version...
So I think what you ask was checked by the first "wa
Hi,
2015-02-08 14:07 GMT+01:00 Carl Eugen Hoyos :
> Doesn't this also need an update for "make clean"?
Right, here's an updated one, also improving dependency generation and
allowing more genering (for now) code.
--
Christophe
From 6795382920c90fdf7e9cef5031627534c9df15b3 Mon Sep 17 00:00:00 20
On Sun, Feb 08, 2015 at 04:37:31AM +, Ben Boeckel wrote:
> On Sun, 08 Feb, 2015 at 02:05:45 GMT, Michael Niedermayer wrote:
> > i tried clementine
> > it happily adds and edits id3 tags on ogg files, one has to rename
> > the file to .mp3 though.
> > So no problem as noone would be doing that .
Hi!
On Wednesday 04 February 2015 01:48:53 pm Thilo Borgmann wrote:
>
> fixes Ticket #4238.
>
> Testing for CGImageGetTypeID function is questionable (see trac
> discussion). If someone has a better idea, please let me know.
Alternative patch attached.
Also attached is a patch that I believe is
On Sun, Feb 08, 2015 at 03:19:40PM +0100, Carl Eugen Hoyos wrote:
> Hi!
>
> On Wednesday 04 February 2015 01:48:53 pm Thilo Borgmann wrote:
> >
> > fixes Ticket #4238.
> >
> > Testing for CGImageGetTypeID function is questionable (see trac
> > discussion). If someone has a better idea, please let
On 01/16/2015 07:21 AM, Michael Niedermayer wrote:
On Wed, Jan 14, 2015 at 03:11:24PM +0530, Anshul wrote:
Hi
I have enabled demuxing and muxing path for datat stream
Please find attachment
Thanks
Anshul
ffmpeg.c|2 ++
ffmpeg_opt.c| 10 ++
libavc
> It has timestamp inside the data stream, and for making a simple use case
> scte need -copyts and -vsync 0 param. Otherwise user can ignore the data as
> they always did.
> -Anshul
Is FFmpeg aware of this PTS and how to place the data packet with
respect to PES packets?
How are you testing thi
On Sun, Feb 08, 2015 at 10:42:43PM +0530, Anshul wrote:
>
> On 01/16/2015 07:21 AM, Michael Niedermayer wrote:
> >On Wed, Jan 14, 2015 at 03:11:24PM +0530, Anshul wrote:
> >>Hi
> >>
> >>I have enabled demuxing and muxing path for datat stream
> >>
> >>Please find attachment
> >>
> >>Thanks
> >>Ans
On 08/02/15 8:21 AM, Christophe Gisquet wrote:
> Hi,
>
> 2015-02-07 23:06 GMT+01:00 James Almer :
>> Signed-off-by: James Almer
>> ---
>> libavcodec/x86/hevc_sao.asm | 40
>> libavcodec/x86/hevcdsp_init.c | 24
>> 2 files change
2015-02-08 10:48 GMT+01:00 Carl Eugen Hoyos :
> Mickaël Raulet insa-rennes.fr> writes:
>
> > As we can consider, we won't have 4k interlaced
> > content, copying a field into a frame should be ok.
> > This is what has been done in this implementation.
>
> Do you have a sample?
> I am only interes
Hi,
2015-02-08 18:48 GMT+01:00 James Almer :
>>> +%assign MMSIZE mmsize
>>
>> Why do that? Not a big deal: it's only for my education, if there's
>> something I'm missing.
>
> For width 48, the COMPUTE macro is last run after an INIT_XMM cpuname, so
> mmsize becomes
> 16 and in the avx2 versi
Kacper Michajłow gmail.com> writes:
> 2015-02-08 10:48 GMT+01:00 Carl Eugen Hoyos:
>
> > Mickaël Raulet insa-rennes.fr> writes:
> >
> > > As we can consider, we won't have 4k interlaced
> > > content, copying a field into a frame should be ok.
> > > This is what has been done in this implementa
Hi!
Attached patch intends to fix compilation with msvc
when the vfwcap input device is disabled.
Tested by Bernhard Döbler
Please comment, Carl Eugen
diff --git a/configure b/configure
index f31d372..0c6f7ea 100755
--- a/configure
+++ b/configure
@@ -5371,7 +5371,7 @@ if test $target_os = "haik
Hi,
I am using ffmpeg 2.5.3 as an RTSP client and found a few missing
pieces, which the following series of patches should address. I used
some test files streamed with an RTSP server on the xenomai.org
server, the files are available for download by replacing
rtsp://xenomai.org:8554 with https://
---
libavformat/rtsp.c | 9 ++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index ae62252..77407dd 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -68,10 +68,11 @@
{ "filter_src", "only receive packets from the negoti
Hello all,
we applied for a booth at `Chemnitzer Linux-Tage' in Germany.
Fortunately we were accepted again!
The event will take place on 21st & 22nd of March in Chemnitz.
More information can be found here:
https://chemnitzer.linux-tage.de/2015/en/
We invite every FFmpeg developer/cont
---
libavformat/Makefile | 1 +
libavformat/rtpdec.c | 1 +
libavformat/rtpdec_ac3.c | 166 +++
libavformat/rtpdec_formats.h | 1 +
4 files changed, 169 insertions(+)
create mode 100644 libavformat/rtpdec_ac3.c
diff --git a/libavf
---
libavformat/rtsp.c | 12
libavformat/rtsp.h | 2 ++
2 files changed, 14 insertions(+)
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 77407dd..3a68020 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -477,6 +477,8 @@ static void sdp_parse_line(AVFormatConte
---
libavcodec/mpegaudio_parser.c | 14 --
libavcodec/mpegaudiodecheader.c | 3 ++-
2 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/libavcodec/mpegaudio_parser.c b/libavcodec/mpegaudio_parser.c
index 79dbf63..42f4706 100644
--- a/libavcodec/mpegaudio_parser.c
+++ b/l
---
libavformat/rtpdec.c | 7 +++
1 file changed, 7 insertions(+)
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c
index f5557d8..4091bdc 100644
--- a/libavformat/rtpdec.c
+++ b/libavformat/rtpdec.c
@@ -56,6 +56,12 @@ static RTPDynamicProtocolHandler opus_dynamic_handler = {
.cod
---
libavformat/rtpdec_mpeg4.c | 84 +-
1 file changed, 76 insertions(+), 8 deletions(-)
diff --git a/libavformat/rtpdec_mpeg4.c b/libavformat/rtpdec_mpeg4.c
index 53921f2..f791a5c 100644
--- a/libavformat/rtpdec_mpeg4.c
+++ b/libavformat/rtpdec_mpeg4.c
---
libavformat/rtpdec.c | 1 +
libavformat/rtpdec_formats.h | 1 +
libavformat/rtpdec_mpeg12.c | 201 +++
3 files changed, 203 insertions(+)
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c
index 4091bdc..711a94d 100644
--- a/libavform
On Sat, Feb 07, 2015 at 06:49:36PM +, Christophe Gisquet wrote:
> In that case, it's just to load my, but mx/r3src is not used.
> ---
> libavcodec/x86/hevc_mc.asm | 18 --
> 1 file changed, 12 insertions(+), 6 deletions(-)
applied
thanks
[...]
--
Michael GnuPG fingerpri
On Sat, Feb 07, 2015 at 06:49:37PM +, Christophe Gisquet wrote:
> The second parameter to the macro is always an immediate address,
> so no lea is needed.
> ---
> libavcodec/x86/hevc_mc.asm | 19 +++
> 1 file changed, 7 insertions(+), 12 deletions(-)
applied
thanks
[...]
--
On Thu, Feb 05, 2015 at 02:22:28PM +0100, Mickaël Raulet wrote:
> Michael,
>
> Please find some commits that can be cherry picked from
> https://github.com/OpenHEVC/FFmpeg/commits/ffmpeg_patch
>
> Optimized deblocking filter (8bits only)
> 1b9ee47d2f43b0a029a9468233626102eb1473b8
>
> Optimzed t
On Sun, Feb 08, 2015 at 12:40:18PM +0100, Clément Bœsch wrote:
> ---
> libavcodec/ass.c | 5 +++--
> libavcodec/ass.h | 3 +++
> 2 files changed, 6 insertions(+), 2 deletions(-)
LGTM
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Freedom in capitalist society
On Sun, Jan 18, 2015 at 08:50:15PM +, Timothy Gu wrote:
> On Sun Jan 18 2015 at 11:46:03 AM Georg Lippitsch
> wrote:
[...]
> > @@ -1023,6 +1023,16 @@ Defaults to @option{false}.
> > If set to @option{true}, print a list of supported formats and exit.
> > Defaults to @option{false}.
> >
> >
On Fri, Feb 06, 2015 at 10:10:22PM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer
> ---
> ffprobe.c |3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
i intend to apply this and similar fixes to other parts of ffmpeg
soon ...
>
> diff --git a/ffprobe.c b/ffpro
On Fri, Feb 06, 2015 at 10:10:22PM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer
> ---
> ffprobe.c |3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/ffprobe.c b/ffprobe.c
> index d352bb6b..8617c96 100644
> --- a/ffprobe.c
> +++ b/ffprobe.c
> @
On February 8, 2015 11:07:12 PM IST, Kieran Kunhya wrote:
>> It has timestamp inside the data stream, and for making a simple use
>case scte need -copyts and -vsync 0 param. Otherwise user can ignore
>the data as they always did.
>> -Anshul
>
>Is FFmpeg aware of this PTS and how to place the data
On Mon, Feb 09, 2015 at 01:44:43AM +0100, Clément Bœsch wrote:
> On Fri, Feb 06, 2015 at 10:10:22PM +0100, Michael Niedermayer wrote:
> > Signed-off-by: Michael Niedermayer
> > ---
> > ffprobe.c |3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/ffprobe.c b/ffpro
On Fri, Jan 16, 2015 at 12:23:32AM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer
> ---
> libavfilter/f_sendcmd.c |5 +
> 1 file changed, 5 insertions(+)
applied
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Good people do not
48 matches
Mail list logo