[FFmpeg-devel] [PATCH] libavdevice: JACK demuxer

Diego Biurrun diego
Thu Mar 19 02:01:38 CET 2009


On Thu, Mar 19, 2009 at 01:30:48AM +0100, Olivier Guilyardi wrote:
> Attached: jack demuxer patch 0.12

build system and doc parts OK

> --- libavdevice/jack_audio.c	(revision 0)
> +++ libavdevice/jack_audio.c	(revision 0)
> @@ -0,0 +1,352 @@
> +    stream->codec->codec_type = CODEC_TYPE_AUDIO;
> +#ifdef WORDS_BIGENDIAN
> +    stream->codec->codec_id = CODEC_ID_PCM_F32BE;
> +#else
> +    stream->codec->codec_id = CODEC_ID_PCM_F32LE;
> +#endif

align

> +    stream->codec->sample_rate = self->sample_rate;
> +    stream->codec->channels = self->nports;

align

Diego




More information about the ffmpeg-devel mailing list