Re: [libav-devel] [PATCH] lavc: add MMAL hardware decoder wrapper

2015-03-26 Thread Martin Storsjö
On Tue, 24 Mar 2015, wm4 wrote: Based on a patch by Rodger Combs. --- Changed the way the configure test works. Now it will first run a test without adding the insane RPI driver include and library paths (which are usually missing from the compiler's standard paths). Added a call to

Re: [libav-devel] [RFC/PATCH 4/4] lavc: add Intel libmfx-based H.264 encoder

2015-03-26 Thread Diego Biurrun
On Wed, Mar 25, 2015 at 08:19:35PM +0100, Anton Khirnov wrote: Quoting Diego Biurrun (2015-03-25 18:04:54) On Thu, Mar 19, 2015 at 09:45:51AM +0100, Anton Khirnov wrote: --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -463,6 +463,7 @@ void avcodec_register_all(void)

[libav-devel] New format (DICOM)

2015-03-26 Thread Mathieu Malaterre
Hi there, I am trying to add a new format to libav. Long story short this is a format which encapsulate another format (either MPEG-2 or MPEG-4). So technically it should be sufficient to skip to the proper offset and call the regular MOV demuxer. I could not figure out to handle

Re: [libav-devel] [PATCH] Canopus HQ/HQA decoder

2015-03-26 Thread Vittorio Giovara
On Tue, Mar 24, 2015 at 8:08 PM, James Almer jamr...@gmail.com wrote: On 22/03/15 12:49 PM, Vittorio Giovara wrote: +// AAN IDCT If this isn't already in the tree somewhere and it's generic enough that it can be reused, then it should be shared like faanidct and added to idctdsp. it's not,

Re: [libav-devel] [PATCH] Canopus HQ/HQA decoder

2015-03-26 Thread Vittorio Giovara
On Thu, Mar 26, 2015 at 2:27 PM, Diego Biurrun di...@biurrun.de wrote: On Sun, Mar 22, 2015 at 03:49:50PM +, Vittorio Giovara wrote: +#include libavutil/imgutils.h +#include libavutil/intreadwrite.h + +#include avcodec.h +#include internal.h + +#include hq_hqa.h + +// AAN IDCT Does

Re: [libav-devel] [PATCHv3] log: Print a full backtrace under Valgrinds on error message

2015-03-26 Thread Janne Grunau
On 2015-03-23 23:29:23 +, Vittorio Giovara wrote: Useful to understand where and in what execution state a certain message is generated. It is enabled only when optimizations are disabled, since function names are not print otherwise. Signed-off-by: Vittorio Giovara

Re: [libav-devel] [PATCH] lavc: add MMAL hardware decoder wrapper

2015-03-26 Thread wm4
On Thu, 26 Mar 2015 10:18:14 +0200 (EET) Martin Storsjö mar...@martin.st wrote: On Tue, 24 Mar 2015, wm4 wrote: Based on a patch by Rodger Combs. --- Changed the way the configure test works. Now it will first run a test without adding the insane RPI driver include and library paths

[libav-devel] [PATCH] lavc: add MMAL hardware decoder wrapper

2015-03-26 Thread wm4
Based on a patch by Rodger Combs. --- Implement format changes, some other fixes. --- configure | 11 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 2 + libavcodec/mmaldec.c | 759 + libavutil/pixdesc.c| 4 +

Re: [libav-devel] New format (DICOM)

2015-03-26 Thread Luca Barbato
On 26/03/15 18:03, Mathieu Malaterre wrote: Hi there, I am trying to add a new format to libav. Long story short this is a format which encapsulate another format (either MPEG-2 or MPEG-4). So technically it should be sufficient to skip to the proper offset and call the regular MOV demuxer.

Re: [libav-devel] [PATCH] Canopus HQ/HQA decoder

2015-03-26 Thread Diego Biurrun
On Sun, Mar 22, 2015 at 03:49:50PM +, Vittorio Giovara wrote: --- /dev/null +++ b/libavcodec/hq_hqa.c @@ -0,0 +1,454 @@ + +#include inttypes.h It seems you only need stdint.h. +#include libavutil/imgutils.h +#include libavutil/intreadwrite.h + +#include avcodec.h +#include