[FFmpeg-devel] [PATCH] force WINAPI_FAMILY to WINAPI_FAMILY_DESKTOP_APP to use DVXA

2015-07-26 Thread Steve Lhomme
The struct definitions in dxva.h, which are necessary in order to actually use d3d11va, are hidden when WINAPI_FAMILY targets Windows Phone or WindowsRT. Building with WINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP is disallowed when targeting ARM. ("Compiling Desktop applications for the ARM platform is

[FFmpeg-devel] [PATCH] avcodec/dvbsubdec: Add option to select when to computer clut (always/never/"if needed")

2015-07-26 Thread Michael Niedermayer
From: Michael Niedermayer Signed-off-by: Michael Niedermayer --- libavcodec/dvbsubdec.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c index 9f59b72..e3b72ab 100644 --- a/libavcodec/dvbsubdec.c +++ b/libavcodec/dvbsubdec

Re: [FFmpeg-devel] [PATCH] movtextdec.c: Add support for fontsize

2015-07-26 Thread Philip Langdale
On Fri, 24 Jul 2015 14:35:16 +0530 Niklesh Lalwani wrote: > From: Niklesh > > Add support for fontsize in style records. The patch uses reset to > directly change back to default style instead of using closing tags, > since we are not handling the default styles right now. > > Signed-off-by: N

[FFmpeg-devel] [PATCH] ffplay: Use sws_scale to scale subtitles

2015-07-26 Thread Michael Niedermayer
From: Michael Niedermayer Fixes some files from Ticket679 This also changes subtitles to 4:2:0 matching the output format and thus simplifying the blend code. This restricts placement to the chroma sample resolution though, speak up if you consider this a problem, say so, the code could be chang

Re: [FFmpeg-devel] [PATCH 2/2] mcfps filter WIP

2015-07-26 Thread wm4
On Fri, 24 Jul 2015 20:50:56 +0200 Michael Niedermayer wrote: > Works well with some scenes, works really not well with others > More work needed > if you can improve it, i would not be unhappy > > this should not be optimized yet except trivial things, first the code > should work well then it

Re: [FFmpeg-devel] [PATCH] avcodec/dvbsubdec: Add option to select when to computer clut (always/never/"if needed")

2015-07-26 Thread Anshul
On July 26, 2015 10:33:22 PM IST, Michael Niedermayer wrote: >From: Michael Niedermayer > >Signed-off-by: Michael Niedermayer >--- > libavcodec/dvbsubdec.c |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > >diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c >index 9f59b72.

Re: [FFmpeg-devel] [PATCH] force WINAPI_FAMILY to WINAPI_FAMILY_DESKTOP_APP to use DVXA

2015-07-26 Thread Michael Niedermayer
On Sun, Jul 26, 2015 at 01:35:47PM +0200, Steve Lhomme wrote: > The struct definitions in dxva.h, which are necessary in order to > actually use d3d11va, are hidden when WINAPI_FAMILY targets Windows Phone > or WindowsRT. > > Building with WINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP is disallowed > wh

Re: [FFmpeg-devel] [PATCH] avcodec/dvbsubdec: Add option to select when to computer clut (always/never/"if needed")

2015-07-26 Thread Michael Niedermayer
On Mon, Jul 27, 2015 at 01:38:53AM +0530, Anshul wrote: > On July 26, 2015 10:33:22 PM IST, Michael Niedermayer > wrote: > >From: Michael Niedermayer > > > >Signed-off-by: Michael Niedermayer > >--- > > libavcodec/dvbsubdec.c |4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > >

[FFmpeg-devel] [PATCH] Add support for Audible AA files

2015-07-26 Thread Vesselin Bontchev
Hi! This patch adds support for Audible AA files. Audible samples can be obtained from, https://gitlab.com/vesselin.bontchev/audible-samples/tree/master https://samples.ffmpeg.org/audible/ Currently, this code generates corrupt audio output (in some places, and deterministically). By posting

Re: [FFmpeg-devel] [PATCH] Add support for Audible AA files

2015-07-26 Thread Carl Eugen Hoyos
Vesselin Bontchev yandex.com> writes: > This patch adds support for Audible AA files. > +uint32_t Magic; This one is unused, please remove it. And please make all others lower case. And please avoid CamelCase, use_underscores_instead. (I actually prefer CamelCase but it is very unusual in

[FFmpeg-devel] [PATCH] ffmpeg: Implement support for seeking relative to EOF

2015-07-26 Thread Michael Niedermayer
From: Michael Niedermayer Fixes Ticket227 Signed-off-by: Michael Niedermayer --- ffmpeg.h |1 + ffmpeg_opt.c |6 ++ 2 files changed, 7 insertions(+) diff --git a/ffmpeg.h b/ffmpeg.h index e43c985..38e7784 100644 --- a/ffmpeg.h +++ b/ffmpeg.h @@ -92,6 +92,7 @@ typedef struct Op

Re: [FFmpeg-devel] [PATCH] ffmpeg: Implement support for seeking relative to EOF

2015-07-26 Thread Timothy Gu
On 7/27/15, Michael Niedermayer wrote: > From: Michael Niedermayer > > Fixes Ticket227 > > Signed-off-by: Michael Niedermayer > --- > ffmpeg.h |1 + > ffmpeg_opt.c |6 ++ > 2 files changed, 7 insertions(+) docs missing […] Timothy _

[FFmpeg-devel] [PATCH 1/2] ffmpeg: reset tty state correctly

2015-07-26 Thread Ganesh Ajjanagadde
tty state was not being reset upon "hard" signals (SIGSEGV etc) This resets tty state in such situations, fixes Ticket2964 Signed-off-by: Ganesh Ajjanagadde --- ffmpeg.c | 38 -- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/ffmpeg.c b/ffmpeg

[FFmpeg-devel] [PATCH 2/2] ffmpeg: silence unused return value warnings

2015-07-26 Thread Ganesh Ajjanagadde
GCC throws a -Wunused-result for not checking return value of write(); silence it Signed-off-by: Ganesh Ajjanagadde --- ffmpeg.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 8b5a705..6f18ab8 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@