comparison libamr.c @ 6712:5b3acf9fd50a libavcodec

Add long names to AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Sun, 27 Apr 2008 22:39:51 +0000
parents 1d35fe8cd53c
children c93570aeb3eb
comparison
equal deleted inserted replaced
6711:78c7765d9618 6712:5b3acf9fd50a
501 sizeof(AMRContext), 501 sizeof(AMRContext),
502 amr_nb_decode_init, 502 amr_nb_decode_init,
503 NULL, 503 NULL,
504 amr_nb_decode_close, 504 amr_nb_decode_close,
505 amr_nb_decode_frame, 505 amr_nb_decode_frame,
506 .long_name = "libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band",
506 }; 507 };
507 508
508 AVCodec libamr_nb_encoder = 509 AVCodec libamr_nb_encoder =
509 { 510 {
510 "libamr_nb", 511 "libamr_nb",
513 sizeof(AMRContext), 514 sizeof(AMRContext),
514 amr_nb_encode_init, 515 amr_nb_encode_init,
515 amr_nb_encode_frame, 516 amr_nb_encode_frame,
516 amr_nb_encode_close, 517 amr_nb_encode_close,
517 NULL, 518 NULL,
519 .long_name = "libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band",
518 }; 520 };
519 521
520 #endif 522 #endif
521 523
522 /* -----------AMR wideband ------------*/ 524 /* -----------AMR wideband ------------*/
693 sizeof(AMRWBContext), 695 sizeof(AMRWBContext),
694 amr_wb_decode_init, 696 amr_wb_decode_init,
695 NULL, 697 NULL,
696 amr_wb_decode_close, 698 amr_wb_decode_close,
697 amr_wb_decode_frame, 699 amr_wb_decode_frame,
700 .long_name = "libamr-wb Adaptive Multi-Rate (AMR) Wide-Band",
698 }; 701 };
699 702
700 AVCodec libamr_wb_encoder = 703 AVCodec libamr_wb_encoder =
701 { 704 {
702 "libamr_wb", 705 "libamr_wb",
705 sizeof(AMRWBContext), 708 sizeof(AMRWBContext),
706 amr_wb_encode_init, 709 amr_wb_encode_init,
707 amr_wb_encode_frame, 710 amr_wb_encode_frame,
708 amr_wb_encode_close, 711 amr_wb_encode_close,
709 NULL, 712 NULL,
713 .long_name = "libamr-wb Adaptive Multi-Rate (AMR) Wide-Band",
710 }; 714 };
711 715
712 #endif //CONFIG_LIBAMR_WB 716 #endif //CONFIG_LIBAMR_WB