comparison aiff.c @ 1679:ba58d49d4685 libavformat

get rid of the [4] limitation of codec tag lists
author michael
date Sun, 21 Jan 2007 12:08:31 +0000
parents 71078c1009c4
children 8b062c65fe0d
comparison
equal deleted inserted replaced
1678:71078c1009c4 1679:ba58d49d4685
415 aiff_probe, 415 aiff_probe,
416 aiff_read_header, 416 aiff_read_header,
417 aiff_read_packet, 417 aiff_read_packet,
418 aiff_read_close, 418 aiff_read_close,
419 aiff_read_seek, 419 aiff_read_seek,
420 .codec_tag= {codec_aiff_tags}, 420 .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
421 }; 421 };
422 #endif 422 #endif
423 423
424 #ifdef CONFIG_AIFF_MUXER 424 #ifdef CONFIG_AIFF_MUXER
425 AVOutputFormat aiff_muxer = { 425 AVOutputFormat aiff_muxer = {
431 CODEC_ID_PCM_S16BE, 431 CODEC_ID_PCM_S16BE,
432 CODEC_ID_NONE, 432 CODEC_ID_NONE,
433 aiff_write_header, 433 aiff_write_header,
434 aiff_write_packet, 434 aiff_write_packet,
435 aiff_write_trailer, 435 aiff_write_trailer,
436 .codec_tag= {codec_aiff_tags}, 436 .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
437 }; 437 };
438 #endif 438 #endif