May 28, 2020, 11:34 by oreo...@outlook.com:
> This adds partial support for OggPCM muxing.
>
> +static inline uint32_t ogg_get_pcm_format_id(uint32_t codec_id)
>
use enum AVCodecID instead of uint32_t.
Also use that in ogg_pcm_codec for the codec IDs.
> +{
> +int i;
> +
> +for (i = 0;
3:34 AM
To: FFmpeg development discussions and patches
Subject: [FFmpeg-devel] [PATCH v2] avformat/oggenc: Add partial support for
OggPCM muxing
This adds partial support for OggPCM muxing.
Heavily based on the work here:
https://ffmpeg.org/pipermail/ffmpeg-devel/2013-July/
Apologies for the previous patch (v1), the commit message was incorrect
and I failed to add the requested change.
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above,
This adds partial support for OggPCM muxing.
Heavily based on the work here:
https://ffmpeg.org/pipermail/ffmpeg-devel/2013-July/145556.html
and here:
http://www.on2.com/media/gpl/mplayer/
---
libavformat/oggenc.c | 86
1 file changed, 80 insertions(+)