On Mon, Oct 17, 2011 at 08:45:36PM +0200, Kostya Shishkov wrote:
>  
> --- a/doc/general.texi
> +++ b/doc/general.texi
> @@ -516,6 +516,7 @@ following image formats are supported:
>      @tab encoding supported through external library libtheora
>  @item Tiertex Limited SEQ video  @tab     @tab  X
>      @tab Codec used in DOS CD-ROM FlashBack game.
> +@item Ut Video               @tab     @tab  X

A small note here what Ut Video is or where it is used would be nice.

> --- /dev/null
> +++ b/libavcodec/utvideo.c
> @@ -0,0 +1,410 @@
> +
> +AVCodec ff_utvideo_decoder = {
> +    .name           = "elenril",
> +    .type           = AVMEDIA_TYPE_VIDEO,
> +    .id             = CODEC_ID_UTVIDEO,
> +    .priv_data_size = sizeof(UtvideoContext),
> +    .init           = decode_init,
> +    .close          = decode_end,
> +    .decode         = decode_frame,
> +    .capabilities   = CODEC_CAP_DR1,
> +    .long_name = NULL_IF_CONFIG_SMALL("Ut Video"),

Align the last '='.

Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to