comparison wmaenc.c @ 6710:a4104482ceef libavcodec

Add long names to many AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Sun, 27 Apr 2008 10:52:44 +0000
parents 5a2c7290ddd3
children e943e1409077
comparison
equal deleted inserted replaced
6709:f18b7851b5a5 6710:a4104482ceef
385 CODEC_ID_WMAV1, 385 CODEC_ID_WMAV1,
386 sizeof(WMACodecContext), 386 sizeof(WMACodecContext),
387 encode_init, 387 encode_init,
388 encode_superframe, 388 encode_superframe,
389 ff_wma_end, 389 ff_wma_end,
390 .long_name = "Windows Media Audio 1",
390 }; 391 };
391 392
392 AVCodec wmav2_encoder = 393 AVCodec wmav2_encoder =
393 { 394 {
394 "wmav2", 395 "wmav2",
396 CODEC_ID_WMAV2, 397 CODEC_ID_WMAV2,
397 sizeof(WMACodecContext), 398 sizeof(WMACodecContext),
398 encode_init, 399 encode_init,
399 encode_superframe, 400 encode_superframe,
400 ff_wma_end, 401 ff_wma_end,
402 .long_name = "Windows Media Audio 2",
401 }; 403 };