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