On 06/18/2012 04:40 AM, Martin Storsjö wrote:
> ---
>  doc/general.texi         |    1 +
>  libavformat/Makefile     |    2 +
>  libavformat/allformats.c |    1 +
>  libavformat/ilbc.c       |  140 
> ++++++++++++++++++++++++++++++++++++++++++++++
>  4 files changed, 144 insertions(+)
>  create mode 100644 libavformat/ilbc.c
[...]
> +AVOutputFormat ff_ilbc_muxer = {
> +    .name         = "ilbc",
> +    .long_name    = NULL_IF_CONFIG_SMALL("iLBC storage file format"),
> +    .mime_type    = "audio/iLBC",
> +    .extensions   = "lbc",
> +    .audio_codec  = CODEC_ID_ILBC,
> +    .write_header = ilbc_write_header,
> +    .write_packet = ilbc_write_packet,
> +};

Since this raw format has no coded timestamps, it should use the
AVFMT_NOTIMESTAMPS flag.

The rest LGTM.

-Justin
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to