Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Mariusz Szczepańczyk
On 21/06/15 09:37, Timothy Gu wrote: El sábado, 20 de junio de 2015, Mariusz Szczepańczyk mszczepanc...@gmail.com mailto:mszczepanc...@gmail.com escribió: --- doc/APIchanges| 4 libavformat/avio.c| 38 ++

Re: [FFmpeg-devel] [PATCH] avformat/rawenc: Store sample number for ADX

2015-06-21 Thread Michael Niedermayer
On Sun, Jun 21, 2015 at 08:32:46AM +, Paul B Mahol wrote: Dana 21. 6. 2015. 00:32 osoba Michael Niedermayer michae...@gmx.at napisala je: Fixes Ticket4540 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/rawenc.c | 20

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Mariusz Szczepańczyk
On 21/06/15 10:11, Hendrik Leppkes wrote: On Sat, Jun 20, 2015 at 2:52 PM, Mariusz Szczepańczyk mszczepanc...@gmail.com wrote: --- doc/APIchanges| 4 libavformat/avio.c| 38 ++ libavformat/avio.h| 19 +++

[FFmpeg-devel] [PATCH] lavf/libsmbclient: implement move and delete callbacks

2015-06-21 Thread Mariusz Szczepańczyk
--- libavformat/libsmbclient.c | 63 ++ 1 file changed, 63 insertions(+) diff --git a/libavformat/libsmbclient.c b/libavformat/libsmbclient.c index 1af8163..84fef7f 100644 --- a/libavformat/libsmbclient.c +++ b/libavformat/libsmbclient.c @@ -287,6

Re: [FFmpeg-devel] [PATCH] avcodec: Add support for per-frame AFD output in h264

2015-06-21 Thread Michael Niedermayer
On Mon, Jun 22, 2015 at 12:01:06AM +0100, Kieran Kunhya wrote: h264.c | 11 +++ h264.h |3 +++ h264_sei.c |6 ++ 3 files changed, 20 insertions(+) 0795671b9553ff2c0af24c0004e582bcbe5b3554 0001-avcodec-Add-support-for-per-frame-AFD-output-in-h264.patch

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Kieran Kunhya
Suppose you're writing a video player with browsing capabilities for network protocols (like Kodi/XBMC). Now you can have file rename/delete functionality in it. Suppose you are writing a video player and need to change the screen resolution. Can we have that feature in libavutil too? Kieran

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Mariusz Szczepańczyk
On Sun, Jun 21, 2015 at 8:24 PM, wm4 nfx...@googlemail.com wrote: On Sun, 21 Jun 2015 19:20:53 +0100 Kieran Kunhya kier...@obe.tv wrote: Suppose you're writing a video player with browsing capabilities for network protocols (like Kodi/XBMC). Now you can have file rename/delete

[FFmpeg-devel] [PATCH] yuv4mpeg: add rough duration estimate and seeking.

2015-06-21 Thread Ronald S. Bultje
--- libavformat/yuv4mpeg.h| 1 + libavformat/yuv4mpegdec.c | 26 +++--- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/libavformat/yuv4mpeg.h b/libavformat/yuv4mpeg.h index 750f498..eba7337 100644 --- a/libavformat/yuv4mpeg.h +++ b/libavformat/yuv4mpeg.h

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Michael Niedermayer
On Sun, Jun 21, 2015 at 10:11:53AM +0200, Hendrik Leppkes wrote: On Sat, Jun 20, 2015 at 2:52 PM, Mariusz Szczepańczyk mszczepanc...@gmail.com wrote: --- doc/APIchanges| 4 libavformat/avio.c| 38 ++ libavformat/avio.h| 19

Re: [FFmpeg-devel] [PATCH] yuv4mpeg: add rough duration estimate and seeking.

2015-06-21 Thread Hendrik Leppkes
On Sun, Jun 21, 2015 at 10:41 PM, Ronald S. Bultje rsbul...@gmail.com wrote: --- libavformat/yuv4mpeg.h| 1 + libavformat/yuv4mpegdec.c | 26 +++--- 2 files changed, 20 insertions(+), 7 deletions(-) What happens if a seek does not end up on a perfect frame boundary?

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread wm4
On Sun, 21 Jun 2015 19:20:53 +0100 Kieran Kunhya kier...@obe.tv wrote: Suppose you're writing a video player with browsing capabilities for network protocols (like Kodi/XBMC). Now you can have file rename/delete functionality in it. Suppose you are writing a video player and need to

[FFmpeg-devel] [PATCH 2/2] lavf/file: check for dirent.h support

2015-06-21 Thread Mariusz Szczepańczyk
--- configure | 2 ++ libavformat/file.c | 34 ++ 2 files changed, 36 insertions(+) diff --git a/configure b/configure index 06a9941..09a71d8 100755 --- a/configure +++ b/configure @@ -1679,6 +1679,7 @@ HEADERS_LIST= dev_video_bktr_ioctl_bt848_h

Re: [FFmpeg-devel] [PATCH] yuv4mpeg: add rough duration estimate and seeking.

2015-06-21 Thread Ronald S. Bultje
Hi, On Sun, Jun 21, 2015 at 5:17 PM, Hendrik Leppkes h.lepp...@gmail.com wrote: On Sun, Jun 21, 2015 at 10:41 PM, Ronald S. Bultje rsbul...@gmail.com wrote: --- libavformat/yuv4mpeg.h| 1 + libavformat/yuv4mpegdec.c | 26 +++--- 2 files changed, 20

Re: [FFmpeg-devel] [PATCH] yuv4mpeg: add rough duration estimate and seeking.

2015-06-21 Thread Michael Niedermayer
On Sun, Jun 21, 2015 at 04:41:23PM -0400, Ronald S. Bultje wrote: --- libavformat/yuv4mpeg.h| 1 + libavformat/yuv4mpegdec.c | 26 +++--- 2 files changed, 20 insertions(+), 7 deletions(-) this needs to update the reference checksum for fate-seek-lavf-yuv4mpeg

[FFmpeg-devel] [PATCH] avcodec: Add support for per-frame AFD output in h264

2015-06-21 Thread Kieran Kunhya
From 6c0c94f8581d9e76301b03f9f416972fc0265fb6 Mon Sep 17 00:00:00 2001 From: Kieran Kunhya kie...@kunhya.com Date: Sun, 21 Jun 2015 23:59:12 +0100 Subject: [PATCH] avcodec: Add support for per-frame AFD output in h264 --- libavcodec/h264.c | 11 +++ libavcodec/h264.h | 3 +++

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Timothy Gu
El sábado, 20 de junio de 2015, Mariusz Szczepańczyk mszczepanc...@gmail.com escribió: --- doc/APIchanges| 4 libavformat/avio.c| 38 ++ libavformat/avio.h| 19 +++ libavformat/url.h | 2 ++

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: Extend API with avio_move() and avio_delete()

2015-06-21 Thread Hendrik Leppkes
On Sat, Jun 20, 2015 at 2:52 PM, Mariusz Szczepańczyk mszczepanc...@gmail.com wrote: --- doc/APIchanges| 4 libavformat/avio.c| 38 ++ libavformat/avio.h| 19 +++ libavformat/url.h | 2 ++ libavformat/version.h |

Re: [FFmpeg-devel] [PATCH] avformat/rawenc: Store sample number for ADX

2015-06-21 Thread Paul B Mahol
Dana 21. 6. 2015. 00:32 osoba Michael Niedermayer michae...@gmx.at napisala je: Fixes Ticket4540 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/rawenc.c | 20 tests/ref/acodec/adpcm-adx |2 +-

Re: [FFmpeg-devel] Areas needing work

2015-06-21 Thread Peter Ross
On Tue, Apr 07, 2015 at 10:22:17AM +1000, Peter Ross wrote: On Mon, Apr 06, 2015 at 07:24:35PM +0100, Derek Buitenhuis wrote: On 4/6/2015 4:43 AM, Michael Niedermayer wrote: [..] * Conferences / exhibitions, public stuff Theres a conference, linuxtag, fosdem, whatever, wherever in your