Sorry this is taking so many iterations, I'm not making myself
very clear it seems ...

On Thu, Feb 12, 2015 at 03:29:26PM +0100, Oleksij Rempel wrote:
> --- a/doc/general.texi
> +++ b/doc/general.texi
> @@ -834,6 +834,8 @@ following image formats are supported:
>  @item DPCM Xan               @tab     @tab  X
>      @tab Used in Origin's Wing Commander IV AVI files.
>  @item DSP Group TrueSpeech   @tab     @tab  X
> +@item DSS SP                 @tab     @tab  X
> +    @tab Digital Speech Standard - Standard Play mode (DSS SP) audio decoder.

This is the list of audio decoders, no need to add that info.
Make it just

@item Digital Speech Standard - Standard Play mode (DSS SP)    @tab     @tab  X

and move it up into alphabetical order.

> --- a/libavcodec/codec_desc.c
> +++ b/libavcodec/codec_desc.c
> @@ -2202,6 +2202,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
>      {
> +        .id        = AV_CODEC_ID_DSS_SP,
> +        .type      = AVMEDIA_TYPE_AUDIO,
> +        .name      = "DSS SP",

This must be dss_sp to match the name of the AVCodec declaration
(ff_dss_sp_decoder).

> +        .long_name = NULL_IF_CONFIG_SMALL("Digital Speech Standard - 
> Standard Play mode (DSS SP) audio decoder."),

.long_name = NULL_IF_CONFIG_SMALL("Digital Speech Standard - Standard Play mode 
(DSS SP)"),

> --- /dev/null
> +++ b/libavcodec/dss_sp.c
> @@ -0,0 +1,780 @@
> +
> +AVCodec ff_dss_sp_decoder = {
> +    .name           = "DSS SP",
> +    .long_name      = NULL_IF_CONFIG_SMALL("Digital Speech Standard - 
> Standard Play mode (DSS SP) audio decoder."),

.long_name = NULL_IF_CONFIG_SMALL("Digital Speech Standard - Standard Play mode 
(DSS SP)"),

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

Reply via email to