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 avpriv_report_missing_fea

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

2015-02-13 Thread Gilles Chanteperdrix
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 avpriv_report_missing_feature() here. I am not sure that the case

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(+) cre

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

2015-02-08 Thread Gilles Chanteperdrix
--- 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