comparison g726.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 48759bfbd073
children e943e1409077
comparison
equal deleted inserted replaced
6709:f18b7851b5a5 6710:a4104482ceef
411 sizeof(AVG726Context), 411 sizeof(AVG726Context),
412 g726_init, 412 g726_init,
413 g726_encode_frame, 413 g726_encode_frame,
414 g726_close, 414 g726_close,
415 NULL, 415 NULL,
416 .long_name = "G.726 ADPCM",
416 }; 417 };
417 #endif //CONFIG_ENCODERS 418 #endif //CONFIG_ENCODERS
418 419
419 AVCodec adpcm_g726_decoder = { 420 AVCodec adpcm_g726_decoder = {
420 "g726", 421 "g726",
423 sizeof(AVG726Context), 424 sizeof(AVG726Context),
424 g726_init, 425 g726_init,
425 NULL, 426 NULL,
426 g726_close, 427 g726_close,
427 g726_decode_frame, 428 g726_decode_frame,
429 .long_name = "G.726 ADPCM",
428 }; 430 };