comparison raw.c @ 576:f701ba509d0c libavformat

H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
author michael
date Thu, 28 Oct 2004 10:12:57 +0000
parents 23b915bb10f5
children 76e36d97a27a
comparison
equal deleted inserted replaced
575:b7680f41ade9 576:f701ba509d0c
342 raw_read_close, 342 raw_read_close,
343 .extensions = "h261", 343 .extensions = "h261",
344 .value = CODEC_ID_H261, 344 .value = CODEC_ID_H261,
345 }; 345 };
346 346
347 #ifdef CONFIG_ENCODERS
348 AVOutputFormat h261_oformat = {
349 "h261",
350 "raw h261",
351 "video/x-h261",
352 "h261",
353 0,
354 0,
355 CODEC_ID_H261,
356 raw_write_header,
357 raw_write_packet,
358 raw_write_trailer,
359 };
360 #endif //CONFIG_ENCODERS
361
347 AVInputFormat h263_iformat = { 362 AVInputFormat h263_iformat = {
348 "h263", 363 "h263",
349 "raw h263", 364 "raw h263",
350 0, 365 0,
351 h263_probe, 366 h263_probe,
646 av_register_output_format(&ac3_oformat); 661 av_register_output_format(&ac3_oformat);
647 662
648 av_register_input_format(&dts_iformat); 663 av_register_input_format(&dts_iformat);
649 664
650 av_register_input_format(&h261_iformat); 665 av_register_input_format(&h261_iformat);
666 av_register_output_format(&h261_oformat);
651 667
652 av_register_input_format(&h263_iformat); 668 av_register_input_format(&h263_iformat);
653 av_register_output_format(&h263_oformat); 669 av_register_output_format(&h263_oformat);
654 670
655 av_register_input_format(&m4v_iformat); 671 av_register_input_format(&m4v_iformat);