comparison dsicinav.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 48759bfbd073
children e943e1409077
comparison
equal deleted inserted replaced
6711:78c7765d9618 6712:5b3acf9fd50a
346 cinvideo_decode_init, 346 cinvideo_decode_init,
347 NULL, 347 NULL,
348 cinvideo_decode_end, 348 cinvideo_decode_end,
349 cinvideo_decode_frame, 349 cinvideo_decode_frame,
350 CODEC_CAP_DR1, 350 CODEC_CAP_DR1,
351 .long_name = "Delphine Software International CIN video",
351 }; 352 };
352 353
353 AVCodec dsicinaudio_decoder = { 354 AVCodec dsicinaudio_decoder = {
354 "dsicinaudio", 355 "dsicinaudio",
355 CODEC_TYPE_AUDIO, 356 CODEC_TYPE_AUDIO,
357 sizeof(CinAudioContext), 358 sizeof(CinAudioContext),
358 cinaudio_decode_init, 359 cinaudio_decode_init,
359 NULL, 360 NULL,
360 NULL, 361 NULL,
361 cinaudio_decode_frame, 362 cinaudio_decode_frame,
363 .long_name = "Delphine Software International CIN audio",
362 }; 364 };