[FFmpeg-soc] [soc]: r2684 - nellyenc/nellymoserenc.c
bwolowiec
subversion at mplayerhq.hu
Fri Jul 4 16:22:47 CEST 2008
Author: bwolowiec
Date: Fri Jul 4 16:22:46 2008
New Revision: 2684
Log:
adding parameter names in initialization of AVCodec
Modified:
nellyenc/nellymoserenc.c
Modified: nellyenc/nellymoserenc.c
==============================================================================
--- nellyenc/nellymoserenc.c (original)
+++ nellyenc/nellymoserenc.c Fri Jul 4 16:22:46 2008
@@ -315,12 +315,12 @@ static int encode_tag(AVCodecContext *av
AVCodec nellymoser_encoder = {
- "nellymoser",
- CODEC_TYPE_AUDIO,
- CODEC_ID_NELLYMOSER,
- sizeof(NellyMoserEncodeContext),
- encode_init,
- encode_tag,
- encode_end,
- NULL,
+ .name = "nellymoser",
+ .type = CODEC_TYPE_AUDIO,
+ .id = CODEC_ID_NELLYMOSER,
+ .priv_data_size = sizeof(NellyMoserEncodeContext),
+ .init = encode_init,
+ .encode = encode_tag,
+ .close = encode_end,
+ .long_name = "Nellymoser Asao Codec"
};
More information about the FFmpeg-soc
mailing list