]> git.sesse.net Git - ffmpeg/blob - libavformat/raw.c
Simplify header installation.
[ffmpeg] / libavformat / raw.c
1 /*
2  * RAW encoder and decoder
3  * Copyright (c) 2001 Fabrice Bellard.
4  * Copyright (c) 2005 Alex Beregszaszi
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 #include "avformat.h"
21
22 #ifdef CONFIG_MUXERS
23 /* simple formats */
24 static int raw_write_header(struct AVFormatContext *s)
25 {
26     return 0;
27 }
28
29 static int raw_write_packet(struct AVFormatContext *s, AVPacket *pkt)
30 {
31     put_buffer(&s->pb, pkt->data, pkt->size);
32     put_flush_packet(&s->pb);
33     return 0;
34 }
35
36 static int raw_write_trailer(struct AVFormatContext *s)
37 {
38     return 0;
39 }
40 #endif //CONFIG_MUXERS
41
42 /* raw input */
43 static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap)
44 {
45     AVStream *st;
46     int id;
47
48     st = av_new_stream(s, 0);
49     if (!st)
50         return AVERROR_NOMEM;
51     if (ap) {
52         id = s->iformat->value;
53         if (id == CODEC_ID_RAWVIDEO) {
54             st->codec->codec_type = CODEC_TYPE_VIDEO;
55         } else {
56             st->codec->codec_type = CODEC_TYPE_AUDIO;
57         }
58         st->codec->codec_id = id;
59
60         switch(st->codec->codec_type) {
61         case CODEC_TYPE_AUDIO:
62             st->codec->sample_rate = ap->sample_rate;
63             st->codec->channels = ap->channels;
64             av_set_pts_info(st, 64, 1, st->codec->sample_rate);
65             break;
66         case CODEC_TYPE_VIDEO:
67             av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den);
68             st->codec->width = ap->width;
69             st->codec->height = ap->height;
70             st->codec->pix_fmt = ap->pix_fmt;
71             if(st->codec->pix_fmt == PIX_FMT_NONE)
72                 st->codec->pix_fmt= PIX_FMT_YUV420P;
73             break;
74         default:
75             return -1;
76         }
77     } else {
78         return -1;
79     }
80     return 0;
81 }
82
83 #define RAW_PACKET_SIZE 1024
84
85 static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
86 {
87     int ret, size;
88     //    AVStream *st = s->streams[0];
89
90     size= RAW_PACKET_SIZE;
91
92     ret= av_get_packet(&s->pb, pkt, size);
93
94     pkt->stream_index = 0;
95     if (ret <= 0) {
96         return AVERROR_IO;
97     }
98     /* note: we need to modify the packet size here to handle the last
99        packet */
100     pkt->size = ret;
101     return ret;
102 }
103
104 static int raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
105 {
106     int ret, size;
107
108     size = RAW_PACKET_SIZE;
109
110     if (av_new_packet(pkt, size) < 0)
111         return AVERROR_IO;
112
113     pkt->pos= url_ftell(&s->pb);
114     pkt->stream_index = 0;
115     ret = get_partial_buffer(&s->pb, pkt->data, size);
116     if (ret <= 0) {
117         av_free_packet(pkt);
118         return AVERROR_IO;
119     }
120     pkt->size = ret;
121     return ret;
122 }
123
124 // http://www.artificis.hu/files/texts/ingenient.txt
125 static int ingenient_read_packet(AVFormatContext *s, AVPacket *pkt)
126 {
127     int ret, size, w, h, unk1, unk2;
128
129     if (get_le32(&s->pb) != MKTAG('M', 'J', 'P', 'G'))
130         return AVERROR_IO; // FIXME
131
132     size = get_le32(&s->pb);
133
134     w = get_le16(&s->pb);
135     h = get_le16(&s->pb);
136
137     url_fskip(&s->pb, 8); // zero + size (padded?)
138     url_fskip(&s->pb, 2);
139     unk1 = get_le16(&s->pb);
140     unk2 = get_le16(&s->pb);
141     url_fskip(&s->pb, 22); // ascii timestamp
142
143     av_log(NULL, AV_LOG_DEBUG, "Ingenient packet: size=%d, width=%d, height=%d, unk1=%d unk2=%d\n",
144         size, w, h, unk1, unk2);
145
146     if (av_new_packet(pkt, size) < 0)
147         return AVERROR_IO;
148
149     pkt->pos = url_ftell(&s->pb);
150     pkt->stream_index = 0;
151     ret = get_buffer(&s->pb, pkt->data, size);
152     if (ret <= 0) {
153         av_free_packet(pkt);
154         return AVERROR_IO;
155     }
156     pkt->size = ret;
157     return ret;
158 }
159
160 static int raw_read_close(AVFormatContext *s)
161 {
162     return 0;
163 }
164
165 int pcm_read_seek(AVFormatContext *s,
166                   int stream_index, int64_t timestamp, int flags)
167 {
168     AVStream *st;
169     int block_align, byte_rate;
170     int64_t pos;
171
172     st = s->streams[0];
173     switch(st->codec->codec_id) {
174     case CODEC_ID_PCM_S16LE:
175     case CODEC_ID_PCM_S16BE:
176     case CODEC_ID_PCM_U16LE:
177     case CODEC_ID_PCM_U16BE:
178         block_align = 2 * st->codec->channels;
179         byte_rate = block_align * st->codec->sample_rate;
180         break;
181     case CODEC_ID_PCM_S8:
182     case CODEC_ID_PCM_U8:
183     case CODEC_ID_PCM_MULAW:
184     case CODEC_ID_PCM_ALAW:
185         block_align = st->codec->channels;
186         byte_rate = block_align * st->codec->sample_rate;
187         break;
188     default:
189         block_align = st->codec->block_align;
190         byte_rate = st->codec->bit_rate / 8;
191         break;
192     }
193
194     if (block_align <= 0 || byte_rate <= 0)
195         return -1;
196
197     /* compute the position by aligning it to block_align */
198     pos = av_rescale_rnd(timestamp * byte_rate,
199                          st->time_base.num,
200                          st->time_base.den * (int64_t)block_align,
201                          (flags & AVSEEK_FLAG_BACKWARD) ? AV_ROUND_DOWN : AV_ROUND_UP);
202     pos *= block_align;
203
204     /* recompute exact position */
205     st->cur_dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num);
206     url_fseek(&s->pb, pos + s->data_offset, SEEK_SET);
207     return 0;
208 }
209
210 /* ac3 read */
211 static int ac3_read_header(AVFormatContext *s,
212                            AVFormatParameters *ap)
213 {
214     AVStream *st;
215
216     st = av_new_stream(s, 0);
217     if (!st)
218         return AVERROR_NOMEM;
219
220     st->codec->codec_type = CODEC_TYPE_AUDIO;
221     st->codec->codec_id = CODEC_ID_AC3;
222     st->need_parsing = 1;
223     /* the parameters will be extracted from the compressed bitstream */
224     return 0;
225 }
226
227 static int shorten_read_header(AVFormatContext *s,
228                                AVFormatParameters *ap)
229 {
230     AVStream *st;
231
232     st = av_new_stream(s, 0);
233     if (!st)
234         return AVERROR_NOMEM;
235     st->codec->codec_type = CODEC_TYPE_AUDIO;
236     st->codec->codec_id = CODEC_ID_SHORTEN;
237     st->need_parsing = 1;
238     /* the parameters will be extracted from the compressed bitstream */
239     return 0;
240 }
241
242 /* dts read */
243 static int dts_read_header(AVFormatContext *s,
244                            AVFormatParameters *ap)
245 {
246     AVStream *st;
247
248     st = av_new_stream(s, 0);
249     if (!st)
250         return AVERROR_NOMEM;
251
252     st->codec->codec_type = CODEC_TYPE_AUDIO;
253     st->codec->codec_id = CODEC_ID_DTS;
254     st->need_parsing = 1;
255     /* the parameters will be extracted from the compressed bitstream */
256     return 0;
257 }
258
259 /* aac read */
260 static int aac_read_header(AVFormatContext *s,
261                            AVFormatParameters *ap)
262 {
263     AVStream *st;
264
265     st = av_new_stream(s, 0);
266     if (!st)
267         return AVERROR_NOMEM;
268
269     st->codec->codec_type = CODEC_TYPE_AUDIO;
270     st->codec->codec_id = CODEC_ID_AAC;
271     st->need_parsing = 1;
272     /* the parameters will be extracted from the compressed bitstream */
273     return 0;
274 }
275
276 /* mpeg1/h263 input */
277 static int video_read_header(AVFormatContext *s,
278                              AVFormatParameters *ap)
279 {
280     AVStream *st;
281
282     st = av_new_stream(s, 0);
283     if (!st)
284         return AVERROR_NOMEM;
285
286     st->codec->codec_type = CODEC_TYPE_VIDEO;
287     st->codec->codec_id = s->iformat->value;
288     st->need_parsing = 1;
289
290     /* for mjpeg, specify frame rate */
291     /* for mpeg4 specify it too (most mpeg4 streams dont have the fixed_vop_rate set ...)*/
292     if (ap && ap->time_base.num) {
293         av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den);
294     } else if ( st->codec->codec_id == CODEC_ID_MJPEG ||
295                 st->codec->codec_id == CODEC_ID_MPEG4 ||
296                 st->codec->codec_id == CODEC_ID_H264) {
297         av_set_pts_info(st, 64, 1, 25);
298     }
299
300     return 0;
301 }
302
303 #define SEQ_START_CODE          0x000001b3
304 #define GOP_START_CODE          0x000001b8
305 #define PICTURE_START_CODE      0x00000100
306 #define SLICE_START_CODE        0x00000101
307 #define PACK_START_CODE         0x000001ba
308
309 static int mpegvideo_probe(AVProbeData *p)
310 {
311     uint32_t code= -1;
312     int pic=0, seq=0, slice=0, pspack=0;
313     int i;
314
315     for(i=0; i<p->buf_size; i++){
316         code = (code<<8) + p->buf[i];
317         if ((code & 0xffffff00) == 0x100) {
318             switch(code){
319             case     SEQ_START_CODE:   seq++; break;
320             case PICTURE_START_CODE:   pic++; break;
321             case   SLICE_START_CODE: slice++; break;
322             case    PACK_START_CODE: pspack++; break;
323             }
324         }
325     }
326     if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack)
327         return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg
328     return 0;
329 }
330
331 static int h263_probe(AVProbeData *p)
332 {
333     int code;
334     const uint8_t *d;
335
336     if (p->buf_size < 6)
337         return 0;
338     d = p->buf;
339     code = (d[0] << 14) | (d[1] << 6) | (d[2] >> 2);
340     if (code == 0x20) {
341         return 50;
342     }
343     return 0;
344 }
345
346 static int h261_probe(AVProbeData *p)
347 {
348     int code;
349     const uint8_t *d;
350
351     if (p->buf_size < 6)
352         return 0;
353     d = p->buf;
354     code = (d[0] << 12) | (d[1] << 4) | (d[2] >> 4);
355     if (code == 0x10) {
356         return 50;
357     }
358     return 0;
359 }
360
361 AVInputFormat shorten_iformat = {
362     "shn",
363     "raw shorten",
364     0,
365     NULL,
366     shorten_read_header,
367     raw_read_partial_packet,
368     raw_read_close,
369     .extensions = "shn",
370 };
371
372 AVInputFormat ac3_iformat = {
373     "ac3",
374     "raw ac3",
375     0,
376     NULL,
377     ac3_read_header,
378     raw_read_partial_packet,
379     raw_read_close,
380     .extensions = "ac3",
381 };
382
383 #ifdef CONFIG_MUXERS
384 AVOutputFormat ac3_oformat = {
385     "ac3",
386     "raw ac3",
387     "audio/x-ac3",
388     "ac3",
389     0,
390     CODEC_ID_AC3,
391     0,
392     raw_write_header,
393     raw_write_packet,
394     raw_write_trailer,
395 };
396 #endif //CONFIG_MUXERS
397
398 AVInputFormat dts_iformat = {
399     "dts",
400     "raw dts",
401     0,
402     NULL,
403     dts_read_header,
404     raw_read_partial_packet,
405     raw_read_close,
406     .extensions = "dts",
407 };
408
409 AVInputFormat aac_iformat = {
410     "aac",
411     "ADTS AAC",
412     0,
413     NULL,
414     aac_read_header,
415     raw_read_partial_packet,
416     raw_read_close,
417     .extensions = "aac",
418 };
419
420 AVInputFormat h261_iformat = {
421     "h261",
422     "raw h261",
423     0,
424     h261_probe,
425     video_read_header,
426     raw_read_partial_packet,
427     raw_read_close,
428     .extensions = "h261",
429     .value = CODEC_ID_H261,
430 };
431
432 #ifdef CONFIG_MUXERS
433 AVOutputFormat h261_oformat = {
434     "h261",
435     "raw h261",
436     "video/x-h261",
437     "h261",
438     0,
439     0,
440     CODEC_ID_H261,
441     raw_write_header,
442     raw_write_packet,
443     raw_write_trailer,
444 };
445 #endif //CONFIG_MUXERS
446
447 AVInputFormat h263_iformat = {
448     "h263",
449     "raw h263",
450     0,
451     h263_probe,
452     video_read_header,
453     raw_read_partial_packet,
454     raw_read_close,
455 //    .extensions = "h263", //FIXME remove after writing mpeg4_probe
456     .value = CODEC_ID_H263,
457 };
458
459 #ifdef CONFIG_MUXERS
460 AVOutputFormat h263_oformat = {
461     "h263",
462     "raw h263",
463     "video/x-h263",
464     "h263",
465     0,
466     0,
467     CODEC_ID_H263,
468     raw_write_header,
469     raw_write_packet,
470     raw_write_trailer,
471 };
472 #endif //CONFIG_MUXERS
473
474 AVInputFormat m4v_iformat = {
475     "m4v",
476     "raw MPEG4 video format",
477     0,
478     NULL /*mpegvideo_probe*/,
479     video_read_header,
480     raw_read_partial_packet,
481     raw_read_close,
482     .extensions = "m4v", //FIXME remove after writing mpeg4_probe
483     .value = CODEC_ID_MPEG4,
484 };
485
486 #ifdef CONFIG_MUXERS
487 AVOutputFormat m4v_oformat = {
488     "m4v",
489     "raw MPEG4 video format",
490     NULL,
491     "m4v",
492     0,
493     CODEC_ID_NONE,
494     CODEC_ID_MPEG4,
495     raw_write_header,
496     raw_write_packet,
497     raw_write_trailer,
498 };
499 #endif //CONFIG_MUXERS
500
501 AVInputFormat h264_iformat = {
502     "h264",
503     "raw H264 video format",
504     0,
505     NULL /*mpegvideo_probe*/,
506     video_read_header,
507     raw_read_partial_packet,
508     raw_read_close,
509     .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe
510     .value = CODEC_ID_H264,
511 };
512
513 #ifdef CONFIG_MUXERS
514 AVOutputFormat h264_oformat = {
515     "h264",
516     "raw H264 video format",
517     NULL,
518     "h264",
519     0,
520     CODEC_ID_NONE,
521     CODEC_ID_H264,
522     raw_write_header,
523     raw_write_packet,
524     raw_write_trailer,
525 };
526 #endif //CONFIG_MUXERS
527
528 AVInputFormat mpegvideo_iformat = {
529     "mpegvideo",
530     "MPEG video",
531     0,
532     mpegvideo_probe,
533     video_read_header,
534     raw_read_partial_packet,
535     raw_read_close,
536     .value = CODEC_ID_MPEG1VIDEO,
537 };
538
539 #ifdef CONFIG_MUXERS
540 AVOutputFormat mpeg1video_oformat = {
541     "mpeg1video",
542     "MPEG video",
543     "video/x-mpeg",
544     "mpg,mpeg,m1v",
545     0,
546     0,
547     CODEC_ID_MPEG1VIDEO,
548     raw_write_header,
549     raw_write_packet,
550     raw_write_trailer,
551 };
552 #endif //CONFIG_MUXERS
553
554 #ifdef CONFIG_MUXERS
555 AVOutputFormat mpeg2video_oformat = {
556     "mpeg2video",
557     "MPEG2 video",
558     NULL,
559     "m2v",
560     0,
561     0,
562     CODEC_ID_MPEG2VIDEO,
563     raw_write_header,
564     raw_write_packet,
565     raw_write_trailer,
566 };
567 #endif //CONFIG_MUXERS
568
569 AVInputFormat mjpeg_iformat = {
570     "mjpeg",
571     "MJPEG video",
572     0,
573     NULL,
574     video_read_header,
575     raw_read_partial_packet,
576     raw_read_close,
577     .extensions = "mjpg,mjpeg",
578     .value = CODEC_ID_MJPEG,
579 };
580
581 AVInputFormat ingenient_iformat = {
582     "ingenient",
583     "Ingenient MJPEG",
584     0,
585     NULL,
586     video_read_header,
587     ingenient_read_packet,
588     raw_read_close,
589     .extensions = "cgi", // FIXME
590     .value = CODEC_ID_MJPEG,
591 };
592
593 #ifdef CONFIG_MUXERS
594 AVOutputFormat mjpeg_oformat = {
595     "mjpeg",
596     "MJPEG video",
597     "video/x-mjpeg",
598     "mjpg,mjpeg",
599     0,
600     0,
601     CODEC_ID_MJPEG,
602     raw_write_header,
603     raw_write_packet,
604     raw_write_trailer,
605 };
606 #endif //CONFIG_MUXERS
607
608 /* pcm formats */
609
610 #define PCMINPUTDEF(name, long_name, ext, codec) \
611 AVInputFormat pcm_ ## name ## _iformat = {\
612     #name,\
613     long_name,\
614     0,\
615     NULL,\
616     raw_read_header,\
617     raw_read_packet,\
618     raw_read_close,\
619     pcm_read_seek,\
620     .extensions = ext,\
621     .value = codec,\
622 };
623
624 #if !defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS)
625
626 #define PCMDEF(name, long_name, ext, codec) \
627     PCMINPUTDEF(name, long_name, ext, codec)
628
629 #else
630
631 #define PCMDEF(name, long_name, ext, codec) \
632     PCMINPUTDEF(name, long_name, ext, codec)\
633 \
634 AVOutputFormat pcm_ ## name ## _oformat = {\
635     #name,\
636     long_name,\
637     NULL,\
638     ext,\
639     0,\
640     codec,\
641     0,\
642     raw_write_header,\
643     raw_write_packet,\
644     raw_write_trailer,\
645 };
646 #endif //CONFIG_MUXERS
647
648 #ifdef WORDS_BIGENDIAN
649 #define BE_DEF(s) s
650 #define LE_DEF(s) NULL
651 #else
652 #define BE_DEF(s) NULL
653 #define LE_DEF(s) s
654 #endif
655
656
657 PCMDEF(s16le, "pcm signed 16 bit little endian format",
658        LE_DEF("sw"), CODEC_ID_PCM_S16LE)
659
660 PCMDEF(s16be, "pcm signed 16 bit big endian format",
661        BE_DEF("sw"), CODEC_ID_PCM_S16BE)
662
663 PCMDEF(u16le, "pcm unsigned 16 bit little endian format",
664        LE_DEF("uw"), CODEC_ID_PCM_U16LE)
665
666 PCMDEF(u16be, "pcm unsigned 16 bit big endian format",
667        BE_DEF("uw"), CODEC_ID_PCM_U16BE)
668
669 PCMDEF(s8, "pcm signed 8 bit format",
670        "sb", CODEC_ID_PCM_S8)
671
672 PCMDEF(u8, "pcm unsigned 8 bit format",
673        "ub", CODEC_ID_PCM_U8)
674
675 PCMDEF(mulaw, "pcm mu law format",
676        "ul", CODEC_ID_PCM_MULAW)
677
678 PCMDEF(alaw, "pcm A law format",
679        "al", CODEC_ID_PCM_ALAW)
680
681 static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt)
682 {
683     int packet_size, ret, width, height;
684     AVStream *st = s->streams[0];
685
686     width = st->codec->width;
687     height = st->codec->height;
688
689     packet_size = avpicture_get_size(st->codec->pix_fmt, width, height);
690     if (packet_size < 0)
691         return -1;
692
693     ret= av_get_packet(&s->pb, pkt, packet_size);
694
695     pkt->stream_index = 0;
696     if (ret != packet_size) {
697         return AVERROR_IO;
698     } else {
699         return 0;
700     }
701 }
702
703 AVInputFormat rawvideo_iformat = {
704     "rawvideo",
705     "raw video format",
706     0,
707     NULL,
708     raw_read_header,
709     rawvideo_read_packet,
710     raw_read_close,
711     .extensions = "yuv,cif,qcif",
712     .value = CODEC_ID_RAWVIDEO,
713 };
714
715 #ifdef CONFIG_MUXERS
716 AVOutputFormat rawvideo_oformat = {
717     "rawvideo",
718     "raw video format",
719     NULL,
720     "yuv",
721     0,
722     CODEC_ID_NONE,
723     CODEC_ID_RAWVIDEO,
724     raw_write_header,
725     raw_write_packet,
726     raw_write_trailer,
727 };
728 #endif //CONFIG_MUXERS
729
730 #ifdef CONFIG_MUXERS
731 static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt)
732 {
733     return 0;
734 }
735
736 AVOutputFormat null_oformat = {
737     "null",
738     "null video format",
739     NULL,
740     NULL,
741     0,
742 #ifdef WORDS_BIGENDIAN
743     CODEC_ID_PCM_S16BE,
744 #else
745     CODEC_ID_PCM_S16LE,
746 #endif
747     CODEC_ID_RAWVIDEO,
748     raw_write_header,
749     null_write_packet,
750     raw_write_trailer,
751     .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE,
752 };
753 #endif //CONFIG_MUXERS
754
755 #ifndef CONFIG_MUXERS
756 #define av_register_output_format(format)
757 #endif
758 #ifndef CONFIG_DEMUXERS
759 #define av_register_input_format(format)
760 #endif
761
762 int raw_init(void)
763 {
764
765     av_register_input_format(&shorten_iformat);
766
767     av_register_input_format(&ac3_iformat);
768     av_register_output_format(&ac3_oformat);
769
770     av_register_input_format(&aac_iformat);
771
772     av_register_input_format(&dts_iformat);
773
774     av_register_input_format(&h261_iformat);
775     av_register_output_format(&h261_oformat);
776
777     av_register_input_format(&h263_iformat);
778     av_register_output_format(&h263_oformat);
779
780     av_register_input_format(&m4v_iformat);
781     av_register_output_format(&m4v_oformat);
782
783     av_register_input_format(&h264_iformat);
784     av_register_output_format(&h264_oformat);
785
786     av_register_input_format(&mpegvideo_iformat);
787     av_register_output_format(&mpeg1video_oformat);
788
789     av_register_output_format(&mpeg2video_oformat);
790
791     av_register_input_format(&mjpeg_iformat);
792     av_register_output_format(&mjpeg_oformat);
793
794     av_register_input_format(&ingenient_iformat);
795
796     av_register_input_format(&pcm_s16le_iformat);
797     av_register_output_format(&pcm_s16le_oformat);
798     av_register_input_format(&pcm_s16be_iformat);
799     av_register_output_format(&pcm_s16be_oformat);
800     av_register_input_format(&pcm_u16le_iformat);
801     av_register_output_format(&pcm_u16le_oformat);
802     av_register_input_format(&pcm_u16be_iformat);
803     av_register_output_format(&pcm_u16be_oformat);
804     av_register_input_format(&pcm_s8_iformat);
805     av_register_output_format(&pcm_s8_oformat);
806     av_register_input_format(&pcm_u8_iformat);
807     av_register_output_format(&pcm_u8_oformat);
808     av_register_input_format(&pcm_mulaw_iformat);
809     av_register_output_format(&pcm_mulaw_oformat);
810     av_register_input_format(&pcm_alaw_iformat);
811     av_register_output_format(&pcm_alaw_oformat);
812
813     av_register_input_format(&rawvideo_iformat);
814     av_register_output_format(&rawvideo_oformat);
815
816     av_register_output_format(&null_oformat);
817     return 0;
818 }