[FFmpeg-devel] [PATCH] rtpenc: HEVC/H.265 support

2014-09-21 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog | 1 + libavformat/Makefile | 1 + libavformat/rtpenc.c | 11 libavformat/rtpenc.h | 1 + libavformat/rtpenc_hevc.c | 146 ++ libavformat

[FFmpeg-devel] [PATCH] rtpdec_hevc: do not print an error message if the received packet has a valid header but lacks additional bytes as payload

2014-09-21 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- libavformat/rtpdec_hevc.c | 14 +- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/libavformat/rtpdec_hevc.c b/libavformat/rtpdec_hevc.c index 60a97e4..4c393a9 100644 --- a/libavformat/rtpdec_hevc.c +++ b

[FFmpeg-devel] [PATCH 1/2] mux: make sure that the AV_PKT_DATA_H263_MB_INFO side data is received by the H.263/RTP packetizer (rfc2190)

2014-09-21 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- libavformat/mux.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/libavformat/mux.c b/libavformat/mux.c index 55add43..ef90466 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -586,6 +586,16 @@ static int

[FFmpeg-devel] [PATCH 2/2] rtpenc_h263_rfc2190: avoid misleading error output

2014-09-21 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- libavformat/rtpenc_h263_rfc2190.c | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/libavformat/rtpenc_h263_rfc2190.c b/libavformat/rtpenc_h263_rfc2190.c index 0493008..34b3906 100644 --- a/libavformat

[FFmpeg-devel] [PATCH] Add missing entry for maintainer of rtpenc_hevc.*

2014-09-22 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 545b71e..90a4013 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -463,7 +463,7 @@ Muxers/Demuxers: rtmp

Re: [FFmpeg-devel] [PATCH] avformat: Support merging side data before the muxer

2014-09-22 Thread Thomas Volkert
Hello, On 22.09.2014 19:02, Nicolas George wrote: In general I can agree with that argument, but in this particular case I believe it does not apply for two reasons: First, the application will need some redesign anyway to make use of the merged-side-data hack. Definitely not - but this is

Re: [FFmpeg-devel] [PATCH] avformat: Support merging side data before the muxer

2014-09-24 Thread Thomas Volkert
On 24.09.2014 13:16, Nicolas George wrote: Le primidi 1er vendémiaire, an CCXXIII, Thomas Volkert a écrit : There were enough votes declining this fast patch. That's okay. Yes, you are right. This patch could cause some confusion in the future. See https://trac.ffmpeg.org/ticket/3936

[FFmpeg-devel] Facebook page

2014-10-04 Thread Thomas Volkert
Hallo @ll, On Facebook, there is no official ffmpeg presence at the moment. But maybe it would be interesting to have a page with announcements about: * new releases * API/ABI changes * ffmpeg related events * new bounties ...what is your opinion about this idea? (If you are convinced of the

Re: [FFmpeg-devel] Facebook page

2014-10-05 Thread Thomas Volkert
On 05.10.2014 00:42, Michael Niedermayer wrote: On Sat, Oct 04, 2014 at 10:12:49PM +0200, Thomas Volkert wrote: Hallo @ll, On Facebook, there is no official ffmpeg presence at the moment. But maybe it would be interesting to have a page with announcements about: * new releases * API/ABI

Re: [FFmpeg-devel] Facebook page

2014-10-15 Thread Thomas Volkert
On 10/05/2014 09:09 PM, compn wrote: On Sun, 05 Oct 2014 20:19:49 +0200 Thomas Volkert si...@gmx.net wrote: http://www.facebook.com/ffmpeg.devel, http://www.facebook.com/ffmpeg.framework, http://www.facebook.com/multimedia.framework, ... @all: What is your opinion about these alternative

Re: [FFmpeg-devel] Facebook page

2014-10-21 Thread Thomas Volkert
Please, vote for a Facebook url here: http://goo.gl/forms/AHVFvPxp8X This will show us the community opinion about this. Does this mean that just ffmpeg is used by someone else? Yes, ffmpeg is already used by someone else. Best regards, Thomas.

Re: [FFmpeg-devel] Facebook page

2014-10-21 Thread Thomas Volkert
Am 15.10.2014 10:49, schrieb Thomas Volkert: On 10/05/2014 09:09 PM, compn wrote: On Sun, 05 Oct 2014 20:19:49 +0200 Thomas Volkert si...@gmx.net wrote: http://www.facebook.com/ffmpeg.devel, http://www.facebook.com/ffmpeg.framework, http://www.facebook.com/multimedia.framework, ... @all

Re: [FFmpeg-devel] Facebook page

2014-10-21 Thread Thomas Volkert
Am 21.10.2014 18:12, schrieb James Almer: ffmpeg is a registered trademark. I'm sure Facebook can solve this is asked. There was also no response from Facebook within the last days. Best regards, Thomas. ___ ffmpeg-devel mailing list

[FFmpeg-devel] [PATCH] avformat/rtpdec_h261: code aligned to the HEVC code

2014-11-01 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- libavformat/rtpdec_h261.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/libavformat/rtpdec_h261.c b/libavformat/rtpdec_h261.c index b902d2a..43244bb 100644 --- a/libavformat/rtpdec_h261.c +++ b/libavformat

[FFmpeg-devel] [PATCH] avformat/udp: UDP-Lite (RFC 3828) support added

2014-11-03 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog| 1 + configure| 3 +++ libavformat/allformats.c | 1 + libavformat/udp.c| 55 +++- libavformat/version.h| 2 +- 5 files changed, 60

Re: [FFmpeg-devel] [PATCH] avformat/udp: UDP-Lite (RFC 3828) support added

2014-11-03 Thread Thomas Volkert
On 11/03/2014 09:35 AM, Thomas Volkert wrote: From: Thomas Volkert tho...@homer-conferencing.com --- Changelog| 1 + configure| 3 +++ libavformat/allformats.c | 1 + libavformat/udp.c| 55

Re: [FFmpeg-devel] [PATCH] avformat/udp: UDP-Lite (RFC 3828) support added

2014-11-03 Thread Thomas Volkert
On 03.11.2014 23:02, Kieran Kunhya wrote: Out of interest, does UDP-lite have any practical applications? i.e. do you actually ever receive packets which have corruption as opposed to packet loss. That depends on your used layer 2 protocol (implementation).

[FFmpeg-devel] [PATCH] avformat/udp: UDP-Lite (RFC 3828) support added

2014-11-04 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog| 1 + configure| 3 +++ libavformat/allformats.c | 1 + libavformat/udp.c| 59 +++- libavformat/version.h| 2 +- 5 files changed, 64

[FFmpeg-devel] [PATCH] wavdec: RIFX file format support

2014-12-15 Thread Thomas Volkert
This fixes ticket #1978. From: Thomas Volkert tho...@homer-conferencing.com --- Changelog | 1 + libavformat/act.c | 2 +- libavformat/asfdec.c | 2 +- libavformat/avidec.c | 2 +- libavformat/dxa.c | 2 +- libavformat/matroskadec.c | 2

Re: [FFmpeg-devel] [PATCH] wavdec: RIFX file format support

2014-12-15 Thread Thomas Volkert
On 12/15/2014 11:24 AM, Carl Eugen Hoyos wrote: Thomas Volkert silvo at gmx.net writes: +#include netinet/in.h This will hopefully be unneeded. Okay, this will simplify the patch. if (size = 18) { /* We're obviously dealing with WAVEFORMATEX */ +if (big_endian

[FFmpeg-devel] [PATCH] wavdec: RIFX file format support

2014-12-16 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog | 1 + libavformat/act.c | 2 +- libavformat/asfdec.c | 2 +- libavformat/avidec.c | 2 +- libavformat/dxa.c | 2 +- libavformat/matroskadec.c | 2 +- libavformat/mlvdec.c | 2

[FFmpeg-devel] [PATCH] wavdec: RIFX file format support

2014-12-17 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog | 1 + libavformat/act.c | 2 +- libavformat/asfdec.c | 2 +- libavformat/avidec.c | 2 +- libavformat/dxa.c | 2 +- libavformat/matroskadec.c | 2 +- libavformat/mlvdec.c | 2

Re: [FFmpeg-devel] [PATCH] wavdec: RIFX file format support

2014-12-17 Thread Thomas Volkert
On 12/16/2014 08:36 AM, Reimar Döffinger wrote: On Mon, Dec 15, 2014 at 10:24:55AM +, Carl Eugen Hoyos wrote: codec-sample_rate = avio_rl32(pb); codec-bit_rate= avio_rl32(pb) * 8; codec-block_align = avio_rl16(pb); +if (big_endian) { +id

[FFmpeg-devel] [PATCH] wavdec: RIFX file format support

2014-12-17 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog | 1 + libavformat/act.c | 2 +- libavformat/asfdec.c | 2 +- libavformat/avidec.c | 2 +- libavformat/dxa.c | 2 +- libavformat/matroskadec.c | 2 +- libavformat/mlvdec.c | 2

Re: [FFmpeg-devel] [PATCH] wavdec: RIFX file format support

2014-12-17 Thread Thomas Volkert
On 12/17/2014 10:57 PM, Benoit Fouet wrote: Hi, Le 17/12/2014 22:15, Reimar Döffinger a écrit : On Wed, Dec 17, 2014 at 11:55:17AM +0100, Thomas Volkert wrote: On 12/16/2014 08:36 AM, Reimar Döffinger wrote: On Mon, Dec 15, 2014 at 10:24:55AM +, Carl Eugen Hoyos wrote: codec

[FFmpeg-devel] [PATCH] wavdec: refactor wav_read_header()

2014-12-19 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com Make it more readable and display an error message in case an invalid header is detected (the current version just returns AVERROR_INVALIDDATA) --- libavformat/wavdec.c | 31 ++- 1 file changed, 22 insertions(+), 9

[FFmpeg-devel] [PATCH] wavdec: refactor wav_read_header()

2014-12-19 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com Make it more readable and display an error message in case an invalid header is detected (the current version just returns AVERROR_INVALIDDATA) --- libavformat/wavdec.c | 31 ++- 1 file changed, 22 insertions(+), 9

Re: [FFmpeg-devel] [PATCH] wavdec: refactor wav_read_header()

2014-12-19 Thread Thomas Volkert
On 12/19/2014 09:57 PM, Thomas Volkert wrote: + av_log(s, AV_LOG_ERROR, invalid start code %c%c%c%c in RIFF header\n, tag 0xFF, (tag 8) 0xFF, (tag 16) 0xFF, (tag 24) 0xFF); return AVERROR_INVALIDDATA; Some remainung tabs - please, remove when commit. Best regards

Re: [FFmpeg-devel] [PATCH] wavdec: refactor wav_read_header()

2014-12-19 Thread Thomas Volkert
On 12/19/2014 11:03 PM, James Almer wrote: On 19/12/14 7:00 PM, Michael Niedermayer wrote: On Fri, Dec 19, 2014 at 09:58:48PM +0100, Thomas Volkert wrote: On 12/19/2014 09:57 PM, Thomas Volkert wrote: + av_log(s, AV_LOG_ERROR, invalid start code %c%c%c%c in RIFF header\n, tag 0xFF

[FFmpeg-devel] [PATCH] wavdec: avoid output of arbitrary chars

2014-12-19 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com use av_get_codec_tag_string() in wav_read_header() for printing the faulty start code from riff header --- libavformat/wavdec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c

[FFmpeg-devel] [PATCH] avcodec.h: document needed buffer size for av_get_codec_tag_string()

2014-12-19 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- libavcodec/avcodec.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4b6b00c..0f69a18 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -4900,6 +4900,8 @@ void

Re: [FFmpeg-devel] [PATCH] avcodec.h: document needed buffer size for av_get_codec_tag_string()

2014-12-20 Thread Thomas Volkert
On 20.12.2014 00:41, Clément Bœsch wrote: On Sat, Dec 20, 2014 at 12:29:56AM +0100, Thomas Volkert wrote: From: Thomas Volkert tho...@homer-conferencing.com --- libavcodec/avcodec.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index

[FFmpeg-devel] [PATCH] rtpdec_hevc: correct parsing of aggregated packets

2015-02-12 Thread Thomas Volkert
reported by tim dot yao at amlogic dot com --- libavformat/rtpdec_hevc.c | 91 ++- 1 file changed, 74 insertions(+), 17 deletions(-) diff --git a/libavformat/rtpdec_hevc.c b/libavformat/rtpdec_hevc.c index 3926614..471823c 100644 ---

[FFmpeg-devel] [PATCH] rtpdec_hevc: correct parsing of aggregated packets

2015-02-12 Thread Thomas Volkert
From: Thomas Volkert si...@gmx.net This fixes the parser for NAL type 48 (AP), reported by tim dot yao at amlogic dot com. --- libavformat/rtpdec_hevc.c | 91 ++- 1 file changed, 74 insertions(+), 17 deletions(-) diff --git a/libavformat

Re: [FFmpeg-devel] [PATCH 5/7] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 3119)

2015-02-12 Thread Thomas Volkert
On 02/12/2015 10:41 PM, Thomas Volkert wrote: [..] +RTPDynamicProtocolHandler ff_mpeg_audio_robust_dynamic_handler = { +.codec_type= AVMEDIA_TYPE_AUDIO, +.codec_id = AV_CODEC_ID_MP3ADU, +.init = mpa_robust_init, +.alloc

Re: [FFmpeg-devel] [PATCH 5/7] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 3119)

2015-02-12 Thread Thomas Volkert
On 02/08/2015 10:22 PM, Gilles Chanteperdrix wrote: --- 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

Re: [FFmpeg-devel] [PATCH 7/7] avformat/rtsp: parse lang attribute in SDP

2015-02-12 Thread Thomas Volkert
On 02/08/2015 10:22 PM, Gilles Chanteperdrix wrote: --- 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 @@

Re: [FFmpeg-devel] [PATCH 1/7] avformat/rtpdec_ac3: add AC3 RTP depacketization

2015-02-12 Thread Thomas Volkert
On 02/08/2015 10:22 PM, Gilles Chanteperdrix wrote: --- libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_ac3.c | 166 +++ libavformat/rtpdec_formats.h | 1 + 4 files changed, 169 insertions(+)

Re: [FFmpeg-devel] [PATCH 2/7] avformat/rtsp: allow receiving subtitles via RTP

2015-02-12 Thread Thomas Volkert
On 02/08/2015 10:22 PM, Gilles Chanteperdrix wrote: --- 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 @@

Re: [FFmpeg-devel] [PATCH 4/7] avcocdec/mpegaudio_parser: add MP3 ADU headers parser

2015-02-12 Thread Thomas Volkert
On 02/08/2015 10:22 PM, Gilles Chanteperdrix wrote: --- 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

Re: [FFmpeg-devel] [PATCH 3/7] avformat/rtpdec: add T.140 RTP depacketization (RFC 4103)

2015-02-12 Thread Thomas Volkert
On 02/08/2015 10:22 PM, Gilles Chanteperdrix wrote: --- 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

[FFmpeg-devel] [PATCH] rtpdec: experimental VP9 depacketizer (draft 0)

2015-02-15 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog| 1 + MAINTAINERS | 1 + libavcodec/version.h | 4 +- libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_formats.h | 1 + libavformat

Re: [FFmpeg-devel] [PATCH] rtpdec: experimental VP9 depacketizer (draft 0)

2015-02-14 Thread Thomas Volkert
The patch implements the already specified parts of the VP9 related parsing of RTP packets. It is tested with live555 server (they do not use the SS/SU data). The available draft 0 of the spec. has still some gaps. So, the parser prints a warning about its experimental state. BR, Thomas.

[FFmpeg-devel] [PATCH] rtpdec: experimental VP9 depacketizer (draft 0)

2015-02-14 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog| 1 + MAINTAINERS | 1 + libavcodec/version.h | 4 +- libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_formats.h | 1 + libavformat

[FFmpeg-devel] [PATCH] rtpdec: experimental VP9 depacketizer (draft 0)

2015-02-14 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog| 1 + MAINTAINERS | 1 + libavcodec/version.h | 4 +- libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_formats.h | 1 + libavformat

Re: [FFmpeg-devel] [PATCH 2/3] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 5219)

2015-02-14 Thread Thomas Volkert
On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: Signed-off-by: Gilles Chanteperdrix gilles.chanteperd...@xenomai.org --- Changelog | 1 + libavcodec/mpegaudio_parser.c | 14 ++- libavcodec/mpegaudiodecheader.c | 3 +- libavformat/rtpdec.c| 1 +

Re: [FFmpeg-devel] [PATCH 3/3] avformat/rtpdec_ac3: add AC3 RTP depacketization (RFC 4184)

2015-02-14 Thread Thomas Volkert
, rtpenc.c Martin Storsjo + rtpdec_ac3.* Gilles Chanteperdrix rtpdec_h261.*, rtpenc_h261.* Thomas Volkert rtpdec_hevc.*, rtpenc_hevc.* Thomas Volkert rtpdec_asf.* Ronald S. Bultje diff --git a/libavformat

Re: [FFmpeg-devel] [PATCH 1/7] avformat/rtpdec_ac3: add AC3 RTP depacketization

2015-02-14 Thread Thomas Volkert
On 02/13/2015 09:11 PM, Gilles Chanteperdrix wrote: On Thu, Feb 12, 2015 at 10:07:39PM +0100, Thomas Volkert wrote: +if (nr_frames 1) { +av_log(ctx, AV_LOG_ERROR, + Unimplemented multiple AC3 frames per packet\n); You could use

Re: [FFmpeg-devel] [PATCH 2/3] avformat/rtpdec_mpeg12: add robust MPEG audio depacketization (RFC 5219)

2015-02-14 Thread Thomas Volkert
On 02/14/2015 06:16 PM, Gilles Chanteperdrix wrote: On Sat, Feb 14, 2015 at 05:56:49PM +0100, Thomas Volkert wrote: On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: #define LIBAVFORMAT_VERSION_MAJOR 56 -#define LIBAVFORMAT_VERSION_MINOR 19 -#define LIBAVFORMAT_VERSION_MICRO 101 +#define

[FFmpeg-devel] [PATCH] rtpdec: DV depacketizer (RFC 6469)

2015-02-15 Thread Thomas Volkert
From: Thomas Volkert tho...@homer-conferencing.com --- Changelog| 2 +- MAINTAINERS | 1 + libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_dv.c | 168

Re: [FFmpeg-devel] [PATCH] rtpdec: DV depacketizer (RFC 6469)

2015-02-15 Thread Thomas Volkert
The patch was tested with live555 RTSP server. Best regards, Thomas. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] dump: show audio service type

2015-03-08 Thread Thomas Volkert
--- libavformat/dump.c | 29 + 1 file changed, 29 insertions(+) diff --git a/libavformat/dump.c b/libavformat/dump.c index 56b37ff..9801042 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -291,6 +291,31 @@ static void dump_stereo3d(void *ctx,

Re: [FFmpeg-devel] [PATCH] dump: show audio service type

2015-03-08 Thread Thomas Volkert
On 03/08/2015 12:03 PM, Nicolas George wrote: L'octidi 18 ventôse, an CCXXIII, Clement Boesch a écrit : Factorize it with ashowinfo instead of copying the code. You can add a public helper returning the string. I strongly support the second option. All enums like that should have a

Re: [FFmpeg-devel] UDP Multicast

2015-03-30 Thread Thomas Volkert
Andre Lopes wrote: H I was trying to setup a ffmpeg client to work with an Arecont camera in multicast and realized that the camera would only return a multicast stream after an RSTP call, if the SETUP was requested with the following transport: Transport:

Re: [FFmpeg-devel] [PATCH 1/3] avformat/rtpdec_mpeg4: reassemble fragmented AAC frames

2015-02-21 Thread Thomas Volkert
On 21.02.2015 22:35, Gilles Chanteperdrix wrote: On Sat, Feb 21, 2015 at 04:54:12PM +0100, Thomas Volkert wrote: +if (len data-au_headers[0].size) { +av_log(ctx, AV_LOG_ERROR, First AU larger than packet size\n); Can this really happen? In the lines above you already check

Re: [FFmpeg-devel] [PATCH 1/3] avformat/rtpdec_mpeg4: reassemble fragmented AAC frames

2015-02-21 Thread Thomas Volkert
On 02/13/2015 10:51 PM, Gilles Chanteperdrix wrote: Signed-off-by: Gilles Chanteperdrix gilles.chanteperd...@xenomai.org --- libavformat/rtpdec_mpeg4.c | 84 +- 1 file changed, 76 insertions(+), 8 deletions(-) diff --git

Re: [FFmpeg-devel] Refund request for Chemnitzer Linux Tage 2015

2015-04-13 Thread Thomas Volkert
Am 13.04.2015 um 12:21 schrieb Stefano Sabatini: On date Monday 2015-04-13 12:19:36 +0200, Michael Niedermayer encoded: On Mon, Apr 13, 2015 at 11:37:39AM +0200, Thomas Volkert wrote: Hi, My expenses consist of: - 5 x t-shirt: 116,49 € (the shirts were given to our team, one stays with me

[FFmpeg-devel] [PATCH] avfoundation: do not report an I/O error if devices are listed

2015-04-26 Thread Thomas Volkert
From: ThomasVolkert tho...@homer-conferencing.com --- libavdevice/avfoundation.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavdevice/avfoundation.m b/libavdevice/avfoundation.m index 763e675..aa8e825 100644 --- a/libavdevice/avfoundation.m +++

Re: [FFmpeg-devel] Refund request for Chemnitzer Linux Tage 2015

2015-04-13 Thread Thomas Volkert
Hi, My expenses consist of: - 5 x t-shirt: 116,49 € (the shirts were given to our team, one stays with me) - 1 x tablecloth: 81,61 € - 1 x traveling: 147 € - no hotel costs --- total: 345,1 € (The invoices were sent to Stefano.) Best regards, Thomas. Am

Re: [FFmpeg-devel] [PATCH] avformat/rtpproto: Move dscp into context AVOptions

2015-04-11 Thread Thomas Volkert
Am 11.04.2015 um 19:00 schrieb Michael Niedermayer: Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/rtpproto.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index 0f294fb..d3e2ca0

Re: [FFmpeg-devel] Refund request for Chemnitzer Linux Tage 2015

2015-04-11 Thread Thomas Volkert
Am 11.04.2015 um 03:31 schrieb compn: On Fri, 10 Apr 2015 20:58:13 +0200 Thilo Borgmann thilo.borgm...@mail.de wrote: Hi! I'd like to request refunds for merchandise expenses at the Chemnitzer Linux Tage 2015, where we had manned a booth for FFmpeg. I wonder why there seems to be nothing

Re: [FFmpeg-devel] FFmpeg 2.7

2015-06-10 Thread Thomas Volkert
Am 10.06.2015 um 01:52 schrieb Michael Niedermayer: On Sat, Jun 06, 2015 at 02:10:20PM +0200, Michael Niedermayer wrote: Hi all Its time again for another release (its about 3 months since 2.6) so if theres anything you want in it, or you want something specific written in some releas notes /

Re: [FFmpeg-devel] Survey for the community

2015-10-13 Thread Thomas Volkert
On Fri, Oct 09, 2015 at 06:13:05PM +0200, Clément Bœsch wrote: [...] You have 24 hours to make comments. 24 hours is IMHO too little. What is the hurry? Maybe at least 96 hours? People had time to comment on the thread already, but sure OK for 96 hours. Not sure if I counted well, but the

Re: [FFmpeg-devel] [PATCH] rtpenc: packetizer for VP9 RTP payload format (draft v2)

2016-06-13 Thread Thomas Volkert
On 30.05.2016 16:41, Thomas Volkert wrote: From: Thomas Volkert <tho...@netzeal.de> --- libavformat/Makefile | 1 + libavformat/rtpenc.c | 14 + libavformat/rtpenc.h | 1 + libavformat/rtpenc_vp9.

Re: [FFmpeg-devel] [PATCH 1/5] rtpdec_vp9: Make sure to free the temp buffer on close

2016-06-14 Thread Thomas Volkert
On 13.06.2016 21:03, Thomas Volkert wrote: From: Martin Storsjö <mar...@martin.st> Signed-off-by: Martin Storsjö <mar...@martin.st> --- libavformat/rtpdec_vp9.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/rtpdec_vp9.c b/libavformat/rtpdec_vp9.c i

[FFmpeg-devel] [PATCH 2/5] rtpdec_vp9: Update header parsing to spec draft 02

2016-06-13 Thread Thomas Volkert
ndex 7b1c38f..506a5cd 100644 --- a/libavformat/rtpdec_vp9.c +++ b/libavformat/rtpdec_vp9.c @@ -1,5 +1,5 @@ /* - * RTP parser for VP9 payload format (draft version 0) - experimental + * RTP parser for VP9 payload format (draft version 02) - experimental * Copyright (c) 2015 Thomas Volkert &

[FFmpeg-devel] [PATCH 3/5] rtpdec: Use AVERROR_PATCHWELCOME instead of AVERROR(ENOSYS) for unimplemented features

2016-06-13 Thread Thomas Volkert
From: Martin Storsjö Signed-off-by: Martin Storsjö --- libavformat/rtpdec_h264.c | 2 +- libavformat/rtpdec_vp9.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index

[FFmpeg-devel] [PATCH 4/5] rtpdec_h264: Use avpriv_report_missing_feature instead of a manual av_log

2016-06-13 Thread Thomas Volkert
From: Martin Storsjö Signed-off-by: Martin Storsjö --- libavformat/rtpdec_h264.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index 7216dd8..4ab0eee 100644 ---

[FFmpeg-devel] [PATCH 5/5] rtpdec_vp9: Support parsing the scalability structure

2016-06-13 Thread Thomas Volkert
From: Martin Storsjö We still only support one single layer though, but this allows receiving streams that have this structure present even for single layer streams. Signed-off-by: Martin Storsjö --- libavformat/rtpdec_vp9.c | 60

[FFmpeg-devel] [PATCH 1/5] rtpdec_vp9: Make sure to free the temp buffer on close

2016-06-13 Thread Thomas Volkert
From: Martin Storsjö Signed-off-by: Martin Storsjö --- libavformat/rtpdec_vp9.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/rtpdec_vp9.c b/libavformat/rtpdec_vp9.c index e50bede..7b1c38f 100644 --- a/libavformat/rtpdec_vp9.c +++

[FFmpeg-devel] [PATCH] rtpenc: packetizer for VP9 RTP payload format (draft v2)

2016-05-30 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- libavformat/Makefile | 1 + libavformat/rtpenc.c | 14 + libavformat/rtpenc.h | 1 + libavformat/rtpenc_vp9.c | 54 libavformat/sdp.c| 4 5 files chang

Re: [FFmpeg-devel] [PATCH] rtpenc: packetizer for VP9 RTP payload format (draft v2)

2016-06-02 Thread Thomas Volkert
Hi, On 30.05.2016 17:43, Ronald S. Bultje wrote: Hi, On Mon, May 30, 2016 at 10:41 AM, Thomas Volkert <si...@gmx.net> wrote: From: Thomas Volkert <tho...@netzeal.de> --- libavformat/Makefile | 1 + libavformat/rtpenc.c | 14 + libavformat/rtpen

[FFmpeg-devel] [PATCH] movenc: Add an option for offsetting the ISM fragment info timestamps

2016-06-21 Thread Thomas Volkert
From: Martin Storsjö --- libavformat/movenc.c | 2 ++ libavformat/movenc.h | 1 + 2 files changed, 3 insertions(+) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 837e1e5..589c2ea 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -87,6 +87,7 @@

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Thomas Volkert
On 27.06.2016 17:17, Michael Niedermayer wrote: > Some entries from the changelog are used > --- > src/index | 56 > 1 file changed, 56 insertions(+) > > diff --git a/src/index b/src/index > index ff0caf2..eb66060 100644 > --- a/src/index

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Thomas Volkert
On 27.06.2016 16:29, Michael Niedermayer wrote: > Some entries from the changelog are used > --- > src/index | 27 +++ > 1 file changed, 27 insertions(+) > > Can't we use all changelog entries for version 3.1? Best regards, Thomas.

Re: [FFmpeg-devel] [PATCH] rtpdec: support for VC-2 HQ RTP payload format (draft v1)

2016-02-07 Thread Thomas Volkert
On 02/03/2016 10:21 AM, si...@gmx.net wrote: From: Thomas Volkert <si...@gmx.net> --- Changelog| 1 + libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_formats.h | 1 + libavformat/rtpdec_vc2hq.c

Re: [FFmpeg-devel] [PATCH] rtpdec: support for VC-2 HQ RTP payload format (draft v1)

2016-02-07 Thread Thomas Volkert
On 02/07/2016 07:54 PM, Paul B Mahol wrote: On 2/7/16, Thomas Volkert <si...@gmx.net> wrote: On 02/03/2016 10:21 AM, si...@gmx.net wrote: From: Thomas Volkert <si...@gmx.net> --- Changelog| 1 + libavformat/Makefile | 1 + libavfor

[FFmpeg-devel] [PATCH] rtpdec: support for VC-2 HQ RTP payload format (draft v1)

2016-02-01 Thread Thomas Volkert
000..b7620da --- /dev/null +++ b/libavformat/rtpdec_vc2hq.c @@ -0,0 +1,230 @@ +/* + * RTP parser for VC-2 HQ payload format (draft version 1) - experimental + * Copyright (c) 2016 Thomas Volkert + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute

[FFmpeg-devel] [PATCH] rtpdec: support for VC-2 HQ RTP payload format (draft v1)

2016-02-01 Thread Thomas Volkert
000..281b591 --- /dev/null +++ b/libavformat/rtpdec_vc2hq.c @@ -0,0 +1,227 @@ +/* + * RTP parser for VC-2 HQ payload format (draft version 1) - experimental + * Copyright (c) 2016 Thomas Volkert + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute

Re: [FFmpeg-devel] [PATCH] rtpdec: support for VC-2 HQ RTP payload format (draft v1)

2016-03-21 Thread Thomas Volkert
On 07.02.2016 20:15, Thomas Volkert wrote: On 02/07/2016 07:54 PM, Paul B Mahol wrote: On 2/7/16, Thomas Volkert <si...@gmx.net> wrote: On 02/03/2016 10:21 AM, si...@gmx.net wrote: From: Thomas Volkert <si...@gmx.net> --- Changelog| 1 + libavfor

Re: [FFmpeg-devel] Refund request for FFmpeg at CLT 2016

2016-03-31 Thread Thomas Volkert
On 21.03.2016 21:49, Thilo Borgmann wrote: Am 21.03.16 um 20:42 schrieb Michael Niedermayer: On Mon, Mar 21, 2016 at 12:14:40PM +0100, Thilo Borgmann wrote: Hi, last weekend, the Chemnitzer Linux Tage in Germany took place and we had quite a good experience and contacts to our end-users.

Re: [FFmpeg-devel] Refund request for FFmpeg at CLT 2016

2016-04-26 Thread Thomas Volkert
Hi, On 21.03.2016 21:49, Thilo Borgmann wrote: Am 21.03.16 um 20:42 schrieb Michael Niedermayer: On Mon, Mar 21, 2016 at 12:14:40PM +0100, Thilo Borgmann wrote: Hi, last weekend, the Chemnitzer Linux Tage in Germany took place and we had quite a good experience and contacts to our end-users.

[FFmpeg-devel] [PATCH] rtpenc: packetizer for VC-2 HQ RTP payload format (draft v1)

2016-05-01 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- Changelog | 2 +- MAINTAINERS| 1 + libavformat/Makefile | 1 + libavformat/rtpenc.c | 15 + libavformat/rtpenc.h | 1 + libavformat/rtpenc_vc2hq.c

Re: [FFmpeg-devel] [PATCH] rtpenc: packetizer for VC-2 HQ RTP payload format (draft v1)

2016-05-02 Thread Thomas Volkert
On 01.05.2016 15:08, Moritz Barsnick wrote: On Sun, May 01, 2016 at 13:42:58 +0200, Thomas Volkert wrote: + "Please set -f_strict experimental in order to enable it.\n"); "-f_strict"? "deprecated; use strict, save via avconv" is how it's doc

Re: [FFmpeg-devel] [PATCH] rtpenc: packetizer for VC-2 HQ RTP payload format (draft v1)

2016-05-03 Thread Thomas Volkert
On 02.05.2016 15:53, Michael Niedermayer wrote: On Sun, May 01, 2016 at 01:42:58PM +0200, Thomas Volkert wrote: From: Thomas Volkert <tho...@netzeal.de> --- Changelog | 2 +- MAINTAINERS| 1 + libavformat/Makefile | 1 + libavformat/rt

[FFmpeg-devel] [PATCH] lavc: add mpeg4 mediacodec decoder

2016-07-23 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/mediacodecdec_mpeg4.c | 239 +++ 3 files changed, 241 insertions(+) create mode 100644 libavcodec/mediacodecdec_m

[FFmpeg-devel] [PATCH] lavc: add mpeg4 mediacodec decoder

2016-07-24 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- configure| 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/mediacodecdec_mpeg4.c | 239 +++ 4 files changed, 242 insertions(+)

[FFmpeg-devel] [PATCH 3/4] lavc: add h.263 mediacodec decoder

2016-07-24 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- Changelog | 1 + configure | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/mediacodecdec_h263.c | 90 + liba

[FFmpeg-devel] [PATCH 2/4] lavc: share more code between h.264 and mpeg4 decoder

2016-07-24 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- libavcodec/mediacodecdec.c | 140 ++- libavcodec/mediacodecdec.h | 12 +++ libavcodec/mediacodecdec_h264.c | 175 +++ libavcodec/mediacodecdec_mpeg4.c

[FFmpeg-devel] [PATCH 1/4] lavc: add mpeg4 mediacodec decoder

2016-07-24 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- Changelog| 1 + configure| 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/mediacodecdec_mpeg4.c

[FFmpeg-devel] [PATCH 4/4] lavc: add vp8 mediacodec decoder

2016-07-24 Thread Thomas Volkert
From: Thomas Volkert <tho...@netzeal.de> --- Changelog | 1 + configure | 1 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/mediacodecdec_vp8.c | 89 ++ liba

Re: [FFmpeg-devel] [PATCH 1/4] lavc: add mpeg4 mediacodec decoder

2016-07-26 Thread Thomas Volkert
On 26.07.2016 11:15, Matthieu Bouron wrote: > On Tue, Jul 26, 2016 at 11:00:46AM +0200, Matthieu Bouron wrote: >> On Sun, Jul 24, 2016 at 03:06:14PM +0200, Thomas Volkert wrote: >>> From: Thomas Volkert <tho...@netzeal.de> >>> >>> --- >>> Chan

Re: [FFmpeg-devel] release/3.1

2016-06-27 Thread Thomas Volkert
On 27.06.2016 02:48, Michael Niedermayer wrote: > On Sun, Jun 26, 2016 at 03:36:33AM +0200, Michael Niedermayer wrote: >> Hi all >> >> ive branched release/3.1 off from master >> i will make the 3.1 release from HEAD of this branch tomorrow >> If there are any last minute changes that should go

Re: [FFmpeg-devel] libavcodec : add psd image file decoder

2016-07-09 Thread Thomas Volkert
On 09.07.2016 19:37, Martin Vignali wrote: You're right, this is a very complex file format, with lot of features. indeed.. But i disagree, with the idea, that this decoder have no interest. The "useful question", highly depend of the point of view. I write this decoder, because i sometime

Re: [FFmpeg-devel] [PATCH v3 2/2] rtp: rfc4175: add handler for YCbCr-4:2:2

2017-02-28 Thread Thomas Volkert
On 28.02.2017 19:39, Damien Riegel wrote: > This adds partial support for the RFC 4175 (raw video over RTP). The > only supported formats are the YCbCr-4:2:2 8 bit because it's natively > supported by FFmpeg with pixel format UYVY, and 10 bit which requires > the vrawdepay codec to convert the

[FFmpeg-devel] order T-shirts

2016-09-04 Thread Thomas Volkert
Hi, Some guys at the VDD asked for FFmpeg T-shirts. I'd like to do a new T-shirt order. The shirts could be given to multimedia devs who stop at one of our next booths. My idea is to order 25 shirts: 1*S 5*M 10*L 7*XL 2*XXL Last time we ordered 5 shirts and got a price of 22,50 Euro per shirt.

Re: [FFmpeg-devel] [PATCH 0/4] ffplay and lavd SDL2 set

2016-09-14 Thread Thomas Volkert
On 15.09.2016 00:27, Josh de Kock wrote: Hi, Resending this set with ffplay now having two versions, a SDL2 and a SDL1 version. I've integrated all comments up until now (hopefully). Josh Josh de Kock (3): lavd: Add SDL2 output device ffplay: make copy for SDL1 MAINTAINERS: update my

Re: [FFmpeg-devel] [PATCH 0/4] ffplay and lavd SDL2 set

2016-09-15 Thread Thomas Volkert
On 15.09.2016 08:55, Josh de Kock wrote: On 14/09/2016 23:44, Thomas Volkert wrote: On 15.09.2016 00:27, Josh de Kock wrote: Hi, Resending this set with ffplay now having two versions, a SDL2 and a SDL1 version. I've integrated all comments up until now (hopefully). Josh Josh de Kock (3

Re: [FFmpeg-devel] Resurrection of ffserver

2016-09-17 Thread Thomas Volkert
On 17.09.2016 22:27, Rostislav Pehlivanov wrote: > >> Good day, >> >> I read the sad news about ffservers a few days ago and have already >> written some mails to ffmpeg-user. >> >> I would like to step in to make ffserver maintainable and distributable >> again, especially because of the many

Re: [FFmpeg-devel] [PATCH 2/2] lavc/mediacodecdec_h264: use h264_parse.h instead of h264dec.h

2016-09-07 Thread Thomas Volkert
On 07.09.2016 15:38, Matthieu Bouron wrote: On Mon, Sep 05, 2016 at 03:57:54PM +0200, Matthieu Bouron wrote: From: Matthieu Bouron ff_h264_decode_extradata is referenced by h264_parse.h and not h264dec.h. --- libavcodec/mediacodecdec_h264.c | 2 +- 1 file

  1   2   >