Mercurial > libavformat.hg
annotate raw.c @ 976:c4a67d8fa68f libavformat
replace if by assert as it should never by true
| author | michael |
|---|---|
| date | Wed, 01 Mar 2006 01:29:12 +0000 |
| parents | 61959072be81 |
| children | 7f8b1a1ac020 |
| 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 | |
| 0 | 308 |
| 309 static int mpegvideo_probe(AVProbeData *p) | |
| 310 { | |
| 924 | 311 uint32_t code= -1; |
| 312 int pic=0, seq=0, slice=0, pspack=0; | |
| 313 int i; | |
| 49 | 314 |
| 924 | 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 } | |
| 0 | 325 } |
| 930 | 326 if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack) |
| 924 | 327 return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg |
| 0 | 328 return 0; |
| 329 } | |
| 330 | |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
331 static int h263_probe(AVProbeData *p) |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
332 { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
333 int code; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
334 const uint8_t *d; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
335 |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
336 if (p->buf_size < 6) |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
337 return 0; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
338 d = p->buf; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
339 code = (d[0] << 14) | (d[1] << 6) | (d[2] >> 2); |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
340 if (code == 0x20) { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
341 return 50; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
342 } |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
343 return 0; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
344 } |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
345 |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
346 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
|
347 { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
348 int code; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
349 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
|
350 |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
351 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
|
352 return 0; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
353 d = p->buf; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
354 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
|
355 if (code == 0x10) { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
356 return 50; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
357 } |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
358 return 0; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
359 } |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
360 |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
361 AVInputFormat shorten_iformat = { |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
362 "shn", |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
363 "raw shorten", |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
364 0, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
365 NULL, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
366 shorten_read_header, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
367 raw_read_partial_packet, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
368 raw_read_close, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
369 .extensions = "shn", |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
370 }; |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
371 |
| 0 | 372 AVInputFormat ac3_iformat = { |
| 373 "ac3", | |
| 374 "raw ac3", | |
| 375 0, | |
| 376 NULL, | |
| 63 | 377 ac3_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
378 raw_read_partial_packet, |
| 0 | 379 raw_read_close, |
| 380 .extensions = "ac3", | |
| 381 }; | |
| 382 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
383 #ifdef CONFIG_MUXERS |
| 0 | 384 AVOutputFormat ac3_oformat = { |
| 385 "ac3", | |
| 386 "raw ac3", | |
| 885 | 387 "audio/x-ac3", |
| 0 | 388 "ac3", |
| 389 0, | |
| 390 CODEC_ID_AC3, | |
| 391 0, | |
| 392 raw_write_header, | |
| 393 raw_write_packet, | |
| 394 raw_write_trailer, | |
| 395 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
396 #endif //CONFIG_MUXERS |
| 0 | 397 |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
398 AVInputFormat dts_iformat = { |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
399 "dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
400 "raw dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
401 0, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
402 NULL, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
403 dts_read_header, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
404 raw_read_partial_packet, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
405 raw_read_close, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
406 .extensions = "dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
407 }; |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
408 |
| 931 | 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 | |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
420 AVInputFormat h261_iformat = { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
421 "h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
422 "raw h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
423 0, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
424 h261_probe, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
425 video_read_header, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
426 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
|
427 raw_read_close, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
428 .extensions = "h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
429 .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
|
430 }; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
431 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
432 #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
|
433 AVOutputFormat h261_oformat = { |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
434 "h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
435 "raw h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
436 "video/x-h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
437 "h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
438 0, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
439 0, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
440 CODEC_ID_H261, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
441 raw_write_header, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
442 raw_write_packet, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
443 raw_write_trailer, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
444 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
445 #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
|
446 |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
447 AVInputFormat h263_iformat = { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
448 "h263", |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
449 "raw h263", |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
450 0, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
451 h263_probe, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
452 video_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
453 raw_read_partial_packet, |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
454 raw_read_close, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
455 // .extensions = "h263", //FIXME remove after writing mpeg4_probe |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
456 .value = CODEC_ID_H263, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
457 }; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
458 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
459 #ifdef CONFIG_MUXERS |
| 0 | 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 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
472 #endif //CONFIG_MUXERS |
| 0 | 473 |
| 474 AVInputFormat m4v_iformat = { | |
| 475 "m4v", | |
| 476 "raw MPEG4 video format", | |
| 477 0, | |
| 478 NULL /*mpegvideo_probe*/, | |
| 479 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
480 raw_read_partial_packet, |
| 0 | 481 raw_read_close, |
| 482 .extensions = "m4v", //FIXME remove after writing mpeg4_probe | |
| 483 .value = CODEC_ID_MPEG4, | |
| 484 }; | |
| 485 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
486 #ifdef CONFIG_MUXERS |
| 0 | 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 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
499 #endif //CONFIG_MUXERS |
| 0 | 500 |
| 100 | 501 AVInputFormat h264_iformat = { |
| 502 "h264", | |
| 503 "raw H264 video format", | |
| 504 0, | |
| 505 NULL /*mpegvideo_probe*/, | |
| 506 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
507 raw_read_partial_packet, |
| 100 | 508 raw_read_close, |
| 808 | 509 .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe |
| 100 | 510 .value = CODEC_ID_H264, |
| 511 }; | |
| 512 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
513 #ifdef CONFIG_MUXERS |
| 100 | 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 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
526 #endif //CONFIG_MUXERS |
| 100 | 527 |
| 0 | 528 AVInputFormat mpegvideo_iformat = { |
| 529 "mpegvideo", | |
| 530 "MPEG video", | |
| 531 0, | |
| 532 mpegvideo_probe, | |
| 533 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
534 raw_read_partial_packet, |
| 0 | 535 raw_read_close, |
| 536 .value = CODEC_ID_MPEG1VIDEO, | |
| 537 }; | |
| 538 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
539 #ifdef CONFIG_MUXERS |
| 0 | 540 AVOutputFormat mpeg1video_oformat = { |
| 541 "mpeg1video", | |
| 542 "MPEG video", | |
| 543 "video/x-mpeg", | |
| 814 | 544 "mpg,mpeg,m1v", |
| 0 | 545 0, |
| 546 0, | |
| 547 CODEC_ID_MPEG1VIDEO, | |
| 548 raw_write_header, | |
| 549 raw_write_packet, | |
| 550 raw_write_trailer, | |
| 551 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
552 #endif //CONFIG_MUXERS |
| 0 | 553 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
554 #ifdef CONFIG_MUXERS |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
555 AVOutputFormat mpeg2video_oformat = { |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
556 "mpeg2video", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
557 "MPEG2 video", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
558 NULL, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
559 "m2v", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
560 0, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
561 0, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
562 CODEC_ID_MPEG2VIDEO, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
563 raw_write_header, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
564 raw_write_packet, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
565 raw_write_trailer, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
566 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
567 #endif //CONFIG_MUXERS |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
568 |
| 0 | 569 AVInputFormat mjpeg_iformat = { |
| 570 "mjpeg", | |
| 571 "MJPEG video", | |
| 572 0, | |
| 573 NULL, | |
| 574 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
575 raw_read_partial_packet, |
| 0 | 576 raw_read_close, |
| 577 .extensions = "mjpg,mjpeg", | |
| 578 .value = CODEC_ID_MJPEG, | |
| 579 }; | |
| 580 | |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
581 AVInputFormat ingenient_iformat = { |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
582 "ingenient", |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
583 "Ingenient MJPEG", |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
584 0, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
585 NULL, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
586 video_read_header, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
587 ingenient_read_packet, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
588 raw_read_close, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
589 .extensions = "cgi", // FIXME |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
590 .value = CODEC_ID_MJPEG, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
591 }; |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
592 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
593 #ifdef CONFIG_MUXERS |
| 0 | 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 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
606 #endif //CONFIG_MUXERS |
| 0 | 607 |
| 608 /* pcm formats */ | |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
609 |
| 306 | 610 #define PCMINPUTDEF(name, long_name, ext, codec) \ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
611 AVInputFormat pcm_ ## name ## _iformat = {\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
612 #name,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
613 long_name,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
614 0,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
615 NULL,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
616 raw_read_header,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
617 raw_read_packet,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
618 raw_read_close,\ |
| 306 | 619 pcm_read_seek,\ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
620 .extensions = ext,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
621 .value = codec,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
622 }; |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
623 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
624 #if !defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
| 306 | 625 |
| 626 #define PCMDEF(name, long_name, ext, codec) \ | |
| 627 PCMINPUTDEF(name, long_name, ext, codec) | |
| 628 | |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
629 #else |
| 0 | 630 |
| 631 #define PCMDEF(name, long_name, ext, codec) \ | |
| 306 | 632 PCMINPUTDEF(name, long_name, ext, codec)\ |
| 0 | 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 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
646 #endif //CONFIG_MUXERS |
| 0 | 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 | |
| 885 | 657 PCMDEF(s16le, "pcm signed 16 bit little endian format", |
| 0 | 658 LE_DEF("sw"), CODEC_ID_PCM_S16LE) |
| 659 | |
| 885 | 660 PCMDEF(s16be, "pcm signed 16 bit big endian format", |
| 0 | 661 BE_DEF("sw"), CODEC_ID_PCM_S16BE) |
| 662 | |
| 885 | 663 PCMDEF(u16le, "pcm unsigned 16 bit little endian format", |
| 0 | 664 LE_DEF("uw"), CODEC_ID_PCM_U16LE) |
| 665 | |
| 885 | 666 PCMDEF(u16be, "pcm unsigned 16 bit big endian format", |
| 0 | 667 BE_DEF("uw"), CODEC_ID_PCM_U16BE) |
| 668 | |
| 885 | 669 PCMDEF(s8, "pcm signed 8 bit format", |
| 0 | 670 "sb", CODEC_ID_PCM_S8) |
| 671 | |
| 885 | 672 PCMDEF(u8, "pcm unsigned 8 bit format", |
| 0 | 673 "ub", CODEC_ID_PCM_U8) |
| 674 | |
| 885 | 675 PCMDEF(mulaw, "pcm mu law format", |
| 0 | 676 "ul", CODEC_ID_PCM_MULAW) |
| 677 | |
| 885 | 678 PCMDEF(alaw, "pcm A law format", |
| 0 | 679 "al", CODEC_ID_PCM_ALAW) |
| 680 | |
| 64 | 681 static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt) |
| 0 | 682 { |
| 683 int packet_size, ret, width, height; | |
| 684 AVStream *st = s->streams[0]; | |
| 685 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
686 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
|
687 height = st->codec->height; |
| 0 | 688 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
689 packet_size = avpicture_get_size(st->codec->pix_fmt, width, height); |
| 128 | 690 if (packet_size < 0) |
| 537 | 691 return -1; |
| 0 | 692 |
| 775 | 693 ret= av_get_packet(&s->pb, pkt, packet_size); |
| 0 | 694 |
| 695 pkt->stream_index = 0; | |
| 775 | 696 if (ret != packet_size) { |
| 482 | 697 return AVERROR_IO; |
| 0 | 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, | |
|
749
1a19a6add674
default to YUV420P if none specified for rawvideo input
michael
parents:
745
diff
changeset
|
711 .extensions = "yuv,cif,qcif", |
| 0 | 712 .value = CODEC_ID_RAWVIDEO, |
| 713 }; | |
| 714 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
715 #ifdef CONFIG_MUXERS |
| 0 | 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 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
728 #endif //CONFIG_MUXERS |
| 0 | 729 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
730 #ifdef CONFIG_MUXERS |
| 468 | 731 static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
| 0 | 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 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
753 #endif //CONFIG_MUXERS |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
754 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
755 #ifndef CONFIG_MUXERS |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
756 #define av_register_output_format(format) |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
757 #endif |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
758 #ifndef CONFIG_DEMUXERS |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
759 #define av_register_input_format(format) |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
760 #endif |
| 0 | 761 |
| 762 int raw_init(void) | |
| 763 { | |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
764 |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
765 av_register_input_format(&shorten_iformat); |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
766 |
| 0 | 767 av_register_input_format(&ac3_iformat); |
| 768 av_register_output_format(&ac3_oformat); | |
| 769 | |
| 931 | 770 av_register_input_format(&aac_iformat); |
| 771 | |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
772 av_register_input_format(&dts_iformat); |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
773 |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
774 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
|
775 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
|
776 |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
777 av_register_input_format(&h263_iformat); |
| 0 | 778 av_register_output_format(&h263_oformat); |
| 885 | 779 |
| 0 | 780 av_register_input_format(&m4v_iformat); |
| 781 av_register_output_format(&m4v_oformat); | |
| 885 | 782 |
| 100 | 783 av_register_input_format(&h264_iformat); |
| 784 av_register_output_format(&h264_oformat); | |
| 0 | 785 |
| 786 av_register_input_format(&mpegvideo_iformat); | |
| 787 av_register_output_format(&mpeg1video_oformat); | |
| 788 | |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
789 av_register_output_format(&mpeg2video_oformat); |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
790 |
| 0 | 791 av_register_input_format(&mjpeg_iformat); |
| 792 av_register_output_format(&mjpeg_oformat); | |
| 885 | 793 |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
794 av_register_input_format(&ingenient_iformat); |
| 0 | 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 } |
