comparison sonic.c @ 6713:f282270c589f libavcodec

Add long names to some AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Mon, 28 Apr 2008 10:21:58 +0000
parents 48759bfbd073
children e943e1409077
comparison
equal deleted inserted replaced
6712:5b3acf9fd50a 6713:f282270c589f
944 sizeof(SonicContext), 944 sizeof(SonicContext),
945 sonic_encode_init, 945 sonic_encode_init,
946 sonic_encode_frame, 946 sonic_encode_frame,
947 sonic_encode_close, 947 sonic_encode_close,
948 NULL, 948 NULL,
949 .long_name = "Sonic",
949 }; 950 };
950 951
951 AVCodec sonic_ls_encoder = { 952 AVCodec sonic_ls_encoder = {
952 "sonicls", 953 "sonicls",
953 CODEC_TYPE_AUDIO, 954 CODEC_TYPE_AUDIO,
955 sizeof(SonicContext), 956 sizeof(SonicContext),
956 sonic_encode_init, 957 sonic_encode_init,
957 sonic_encode_frame, 958 sonic_encode_frame,
958 sonic_encode_close, 959 sonic_encode_close,
959 NULL, 960 NULL,
961 .long_name = "Sonic lossless",
960 }; 962 };
961 #endif 963 #endif
962 964
963 #ifdef CONFIG_DECODERS 965 #ifdef CONFIG_DECODERS
964 AVCodec sonic_decoder = { 966 AVCodec sonic_decoder = {
968 sizeof(SonicContext), 970 sizeof(SonicContext),
969 sonic_decode_init, 971 sonic_decode_init,
970 NULL, 972 NULL,
971 sonic_decode_close, 973 sonic_decode_close,
972 sonic_decode_frame, 974 sonic_decode_frame,
975 .long_name = "Sonic",
973 }; 976 };
974 #endif 977 #endif