Mercurial > libavformat.hg
annotate raw.c @ 885:da1d5db0ce5c libavformat
COSMETICS: Remove all trailing whitespace.
| author | diego |
|---|---|
| date | Sat, 17 Dec 2005 18:14:38 +0000 |
| parents | c6b1dde68f3a |
| children | d70e50f1495f |
| 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 | |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 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')) |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
130 return AVERROR_IO; // FIXME |
|
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", |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
144 size, w, h, unk1, unk2); |
|
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 |
| 0 | 259 /* mpeg1/h263 input */ |
| 260 static int video_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 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
269 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
|
270 st->codec->codec_id = s->iformat->value; |
| 306 | 271 st->need_parsing = 1; |
| 272 | |
| 0 | 273 /* for mjpeg, specify frame rate */ |
| 274 /* for mpeg4 specify it too (most mpeg4 streams dont have the fixed_vop_rate set ...)*/ | |
| 745 | 275 if (ap && ap->time_base.num) { |
| 276 av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den); | |
| 885 | 277 } 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
|
278 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
|
279 st->codec->codec_id == CODEC_ID_H264) { |
| 745 | 280 av_set_pts_info(st, 64, 1, 25); |
| 0 | 281 } |
| 745 | 282 |
| 0 | 283 return 0; |
| 284 } | |
| 285 | |
| 286 #define SEQ_START_CODE 0x000001b3 | |
| 287 #define GOP_START_CODE 0x000001b8 | |
| 288 #define PICTURE_START_CODE 0x00000100 | |
| 289 | |
| 290 /* XXX: improve that by looking at several start codes */ | |
| 291 static int mpegvideo_probe(AVProbeData *p) | |
| 292 { | |
| 49 | 293 int code; |
| 294 const uint8_t *d; | |
| 0 | 295 |
| 296 /* we search the first start code. If it is a sequence, gop or | |
| 297 picture start code then we decide it is an mpeg video | |
| 298 stream. We do not send highest value to give a chance to mpegts */ | |
| 49 | 299 /* NOTE: the search range was restricted to avoid too many false |
| 300 detections */ | |
| 301 | |
| 302 if (p->buf_size < 6) | |
| 303 return 0; | |
| 304 d = p->buf; | |
| 305 code = (d[0] << 24) | (d[1] << 16) | (d[2] << 8) | (d[3]); | |
| 306 if ((code & 0xffffff00) == 0x100) { | |
| 307 if (code == SEQ_START_CODE || | |
| 308 code == GOP_START_CODE || | |
| 309 code == PICTURE_START_CODE) | |
| 310 return 50 - 1; | |
| 311 else | |
| 312 return 0; | |
| 0 | 313 } |
| 314 return 0; | |
| 315 } | |
| 316 | |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
317 static int h263_probe(AVProbeData *p) |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
318 { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
319 int code; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
320 const uint8_t *d; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
321 |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
322 if (p->buf_size < 6) |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
323 return 0; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
324 d = p->buf; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
325 code = (d[0] << 14) | (d[1] << 6) | (d[2] >> 2); |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
326 if (code == 0x20) { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
327 return 50; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
328 } |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
329 return 0; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
330 } |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
331 |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
332 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
|
333 { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
334 int code; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
335 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
|
336 |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
337 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
|
338 return 0; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
339 d = p->buf; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
340 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
|
341 if (code == 0x10) { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
342 return 50; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
343 } |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
344 return 0; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
345 } |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
346 |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
347 AVInputFormat shorten_iformat = { |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
348 "shn", |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
349 "raw shorten", |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
350 0, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
351 NULL, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
352 shorten_read_header, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
353 raw_read_partial_packet, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
354 raw_read_close, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
355 .extensions = "shn", |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
356 }; |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
357 |
| 0 | 358 AVInputFormat ac3_iformat = { |
| 359 "ac3", | |
| 360 "raw ac3", | |
| 361 0, | |
| 362 NULL, | |
| 63 | 363 ac3_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
364 raw_read_partial_packet, |
| 0 | 365 raw_read_close, |
| 366 .extensions = "ac3", | |
| 367 }; | |
| 368 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
369 #ifdef CONFIG_MUXERS |
| 0 | 370 AVOutputFormat ac3_oformat = { |
| 371 "ac3", | |
| 372 "raw ac3", | |
| 885 | 373 "audio/x-ac3", |
| 0 | 374 "ac3", |
| 375 0, | |
| 376 CODEC_ID_AC3, | |
| 377 0, | |
| 378 raw_write_header, | |
| 379 raw_write_packet, | |
| 380 raw_write_trailer, | |
| 381 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
382 #endif //CONFIG_MUXERS |
| 0 | 383 |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
384 AVInputFormat dts_iformat = { |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
385 "dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
386 "raw dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
387 0, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
388 NULL, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
389 dts_read_header, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
390 raw_read_partial_packet, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
391 raw_read_close, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
392 .extensions = "dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
393 }; |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
394 |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
395 AVInputFormat h261_iformat = { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
396 "h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
397 "raw h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
398 0, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
399 h261_probe, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
400 video_read_header, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
401 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
|
402 raw_read_close, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
403 .extensions = "h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
404 .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
|
405 }; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
406 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
407 #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
|
408 AVOutputFormat h261_oformat = { |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
409 "h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
410 "raw h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
411 "video/x-h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
412 "h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
413 0, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
414 0, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
415 CODEC_ID_H261, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
416 raw_write_header, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
417 raw_write_packet, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
418 raw_write_trailer, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
419 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
420 #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
|
421 |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
422 AVInputFormat h263_iformat = { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
423 "h263", |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
424 "raw h263", |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
425 0, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
426 h263_probe, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
427 video_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
428 raw_read_partial_packet, |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
429 raw_read_close, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
430 // .extensions = "h263", //FIXME remove after writing mpeg4_probe |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
431 .value = CODEC_ID_H263, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
432 }; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
433 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
434 #ifdef CONFIG_MUXERS |
| 0 | 435 AVOutputFormat h263_oformat = { |
| 436 "h263", | |
| 437 "raw h263", | |
| 438 "video/x-h263", | |
| 439 "h263", | |
| 440 0, | |
| 441 0, | |
| 442 CODEC_ID_H263, | |
| 443 raw_write_header, | |
| 444 raw_write_packet, | |
| 445 raw_write_trailer, | |
| 446 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
447 #endif //CONFIG_MUXERS |
| 0 | 448 |
| 449 AVInputFormat m4v_iformat = { | |
| 450 "m4v", | |
| 451 "raw MPEG4 video format", | |
| 452 0, | |
| 453 NULL /*mpegvideo_probe*/, | |
| 454 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
455 raw_read_partial_packet, |
| 0 | 456 raw_read_close, |
| 457 .extensions = "m4v", //FIXME remove after writing mpeg4_probe | |
| 458 .value = CODEC_ID_MPEG4, | |
| 459 }; | |
| 460 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
461 #ifdef CONFIG_MUXERS |
| 0 | 462 AVOutputFormat m4v_oformat = { |
| 463 "m4v", | |
| 464 "raw MPEG4 video format", | |
| 465 NULL, | |
| 466 "m4v", | |
| 467 0, | |
| 468 CODEC_ID_NONE, | |
| 469 CODEC_ID_MPEG4, | |
| 470 raw_write_header, | |
| 471 raw_write_packet, | |
| 472 raw_write_trailer, | |
| 473 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
474 #endif //CONFIG_MUXERS |
| 0 | 475 |
| 100 | 476 AVInputFormat h264_iformat = { |
| 477 "h264", | |
| 478 "raw H264 video format", | |
| 479 0, | |
| 480 NULL /*mpegvideo_probe*/, | |
| 481 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
482 raw_read_partial_packet, |
| 100 | 483 raw_read_close, |
| 808 | 484 .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe |
| 100 | 485 .value = CODEC_ID_H264, |
| 486 }; | |
| 487 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
488 #ifdef CONFIG_MUXERS |
| 100 | 489 AVOutputFormat h264_oformat = { |
| 490 "h264", | |
| 491 "raw H264 video format", | |
| 492 NULL, | |
| 493 "h264", | |
| 494 0, | |
| 495 CODEC_ID_NONE, | |
| 496 CODEC_ID_H264, | |
| 497 raw_write_header, | |
| 498 raw_write_packet, | |
| 499 raw_write_trailer, | |
| 500 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
501 #endif //CONFIG_MUXERS |
| 100 | 502 |
| 0 | 503 AVInputFormat mpegvideo_iformat = { |
| 504 "mpegvideo", | |
| 505 "MPEG video", | |
| 506 0, | |
| 507 mpegvideo_probe, | |
| 508 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
509 raw_read_partial_packet, |
| 0 | 510 raw_read_close, |
| 511 .value = CODEC_ID_MPEG1VIDEO, | |
| 512 }; | |
| 513 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
514 #ifdef CONFIG_MUXERS |
| 0 | 515 AVOutputFormat mpeg1video_oformat = { |
| 516 "mpeg1video", | |
| 517 "MPEG video", | |
| 518 "video/x-mpeg", | |
| 814 | 519 "mpg,mpeg,m1v", |
| 0 | 520 0, |
| 521 0, | |
| 522 CODEC_ID_MPEG1VIDEO, | |
| 523 raw_write_header, | |
| 524 raw_write_packet, | |
| 525 raw_write_trailer, | |
| 526 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
527 #endif //CONFIG_MUXERS |
| 0 | 528 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
529 #ifdef CONFIG_MUXERS |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
530 AVOutputFormat mpeg2video_oformat = { |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
531 "mpeg2video", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
532 "MPEG2 video", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
533 NULL, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
534 "m2v", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
535 0, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
536 0, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
537 CODEC_ID_MPEG2VIDEO, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
538 raw_write_header, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
539 raw_write_packet, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
540 raw_write_trailer, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
541 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
542 #endif //CONFIG_MUXERS |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
543 |
| 0 | 544 AVInputFormat mjpeg_iformat = { |
| 545 "mjpeg", | |
| 546 "MJPEG video", | |
| 547 0, | |
| 548 NULL, | |
| 549 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
550 raw_read_partial_packet, |
| 0 | 551 raw_read_close, |
| 552 .extensions = "mjpg,mjpeg", | |
| 553 .value = CODEC_ID_MJPEG, | |
| 554 }; | |
| 555 | |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
556 AVInputFormat ingenient_iformat = { |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
557 "ingenient", |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
558 "Ingenient MJPEG", |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
559 0, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
560 NULL, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
561 video_read_header, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
562 ingenient_read_packet, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
563 raw_read_close, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
564 .extensions = "cgi", // FIXME |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
565 .value = CODEC_ID_MJPEG, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
566 }; |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
567 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
568 #ifdef CONFIG_MUXERS |
| 0 | 569 AVOutputFormat mjpeg_oformat = { |
| 570 "mjpeg", | |
| 571 "MJPEG video", | |
| 572 "video/x-mjpeg", | |
| 573 "mjpg,mjpeg", | |
| 574 0, | |
| 575 0, | |
| 576 CODEC_ID_MJPEG, | |
| 577 raw_write_header, | |
| 578 raw_write_packet, | |
| 579 raw_write_trailer, | |
| 580 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
581 #endif //CONFIG_MUXERS |
| 0 | 582 |
| 583 /* pcm formats */ | |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
584 |
| 306 | 585 #define PCMINPUTDEF(name, long_name, ext, codec) \ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
586 AVInputFormat pcm_ ## name ## _iformat = {\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
587 #name,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
588 long_name,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
589 0,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
590 NULL,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
591 raw_read_header,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
592 raw_read_packet,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
593 raw_read_close,\ |
| 306 | 594 pcm_read_seek,\ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
595 .extensions = ext,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
596 .value = codec,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
597 }; |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
598 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
599 #if !defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
| 306 | 600 |
| 601 #define PCMDEF(name, long_name, ext, codec) \ | |
| 602 PCMINPUTDEF(name, long_name, ext, codec) | |
| 603 | |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
604 #else |
| 0 | 605 |
| 606 #define PCMDEF(name, long_name, ext, codec) \ | |
| 306 | 607 PCMINPUTDEF(name, long_name, ext, codec)\ |
| 0 | 608 \ |
| 609 AVOutputFormat pcm_ ## name ## _oformat = {\ | |
| 610 #name,\ | |
| 611 long_name,\ | |
| 612 NULL,\ | |
| 613 ext,\ | |
| 614 0,\ | |
| 615 codec,\ | |
| 616 0,\ | |
| 617 raw_write_header,\ | |
| 618 raw_write_packet,\ | |
| 619 raw_write_trailer,\ | |
| 620 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
621 #endif //CONFIG_MUXERS |
| 0 | 622 |
| 623 #ifdef WORDS_BIGENDIAN | |
| 624 #define BE_DEF(s) s | |
| 625 #define LE_DEF(s) NULL | |
| 626 #else | |
| 627 #define BE_DEF(s) NULL | |
| 628 #define LE_DEF(s) s | |
| 629 #endif | |
| 630 | |
| 631 | |
| 885 | 632 PCMDEF(s16le, "pcm signed 16 bit little endian format", |
| 0 | 633 LE_DEF("sw"), CODEC_ID_PCM_S16LE) |
| 634 | |
| 885 | 635 PCMDEF(s16be, "pcm signed 16 bit big endian format", |
| 0 | 636 BE_DEF("sw"), CODEC_ID_PCM_S16BE) |
| 637 | |
| 885 | 638 PCMDEF(u16le, "pcm unsigned 16 bit little endian format", |
| 0 | 639 LE_DEF("uw"), CODEC_ID_PCM_U16LE) |
| 640 | |
| 885 | 641 PCMDEF(u16be, "pcm unsigned 16 bit big endian format", |
| 0 | 642 BE_DEF("uw"), CODEC_ID_PCM_U16BE) |
| 643 | |
| 885 | 644 PCMDEF(s8, "pcm signed 8 bit format", |
| 0 | 645 "sb", CODEC_ID_PCM_S8) |
| 646 | |
| 885 | 647 PCMDEF(u8, "pcm unsigned 8 bit format", |
| 0 | 648 "ub", CODEC_ID_PCM_U8) |
| 649 | |
| 885 | 650 PCMDEF(mulaw, "pcm mu law format", |
| 0 | 651 "ul", CODEC_ID_PCM_MULAW) |
| 652 | |
| 885 | 653 PCMDEF(alaw, "pcm A law format", |
| 0 | 654 "al", CODEC_ID_PCM_ALAW) |
| 655 | |
| 64 | 656 static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt) |
| 0 | 657 { |
| 658 int packet_size, ret, width, height; | |
| 659 AVStream *st = s->streams[0]; | |
| 660 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
661 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
|
662 height = st->codec->height; |
| 0 | 663 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
664 packet_size = avpicture_get_size(st->codec->pix_fmt, width, height); |
| 128 | 665 if (packet_size < 0) |
| 537 | 666 return -1; |
| 0 | 667 |
| 775 | 668 ret= av_get_packet(&s->pb, pkt, packet_size); |
| 0 | 669 |
| 670 pkt->stream_index = 0; | |
| 775 | 671 if (ret != packet_size) { |
| 482 | 672 return AVERROR_IO; |
| 0 | 673 } else { |
| 674 return 0; | |
| 675 } | |
| 676 } | |
| 677 | |
| 678 AVInputFormat rawvideo_iformat = { | |
| 679 "rawvideo", | |
| 680 "raw video format", | |
| 681 0, | |
| 682 NULL, | |
| 683 raw_read_header, | |
| 684 rawvideo_read_packet, | |
| 685 raw_read_close, | |
|
749
1a19a6add674
default to YUV420P if none specified for rawvideo input
michael
parents:
745
diff
changeset
|
686 .extensions = "yuv,cif,qcif", |
| 0 | 687 .value = CODEC_ID_RAWVIDEO, |
| 688 }; | |
| 689 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
690 #ifdef CONFIG_MUXERS |
| 0 | 691 AVOutputFormat rawvideo_oformat = { |
| 692 "rawvideo", | |
| 693 "raw video format", | |
| 694 NULL, | |
| 695 "yuv", | |
| 696 0, | |
| 697 CODEC_ID_NONE, | |
| 698 CODEC_ID_RAWVIDEO, | |
| 699 raw_write_header, | |
| 700 raw_write_packet, | |
| 701 raw_write_trailer, | |
| 702 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
703 #endif //CONFIG_MUXERS |
| 0 | 704 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
705 #ifdef CONFIG_MUXERS |
| 468 | 706 static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
| 0 | 707 { |
| 708 return 0; | |
| 709 } | |
| 710 | |
| 711 AVOutputFormat null_oformat = { | |
| 712 "null", | |
| 713 "null video format", | |
| 714 NULL, | |
| 715 NULL, | |
| 716 0, | |
| 717 #ifdef WORDS_BIGENDIAN | |
| 718 CODEC_ID_PCM_S16BE, | |
| 719 #else | |
| 720 CODEC_ID_PCM_S16LE, | |
| 721 #endif | |
| 722 CODEC_ID_RAWVIDEO, | |
| 723 raw_write_header, | |
| 724 null_write_packet, | |
| 725 raw_write_trailer, | |
| 726 .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE, | |
| 727 }; | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
728 #endif //CONFIG_MUXERS |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
729 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
730 #ifndef CONFIG_MUXERS |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
731 #define av_register_output_format(format) |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
732 #endif |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
733 #ifndef CONFIG_DEMUXERS |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
734 #define av_register_input_format(format) |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
735 #endif |
| 0 | 736 |
| 737 int raw_init(void) | |
| 738 { | |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
739 |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
740 av_register_input_format(&shorten_iformat); |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
741 |
| 0 | 742 av_register_input_format(&ac3_iformat); |
| 743 av_register_output_format(&ac3_oformat); | |
| 744 | |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
745 av_register_input_format(&dts_iformat); |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
746 |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
747 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
|
748 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
|
749 |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
750 av_register_input_format(&h263_iformat); |
| 0 | 751 av_register_output_format(&h263_oformat); |
| 885 | 752 |
| 0 | 753 av_register_input_format(&m4v_iformat); |
| 754 av_register_output_format(&m4v_oformat); | |
| 885 | 755 |
| 100 | 756 av_register_input_format(&h264_iformat); |
| 757 av_register_output_format(&h264_oformat); | |
| 0 | 758 |
| 759 av_register_input_format(&mpegvideo_iformat); | |
| 760 av_register_output_format(&mpeg1video_oformat); | |
| 761 | |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
762 av_register_output_format(&mpeg2video_oformat); |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
763 |
| 0 | 764 av_register_input_format(&mjpeg_iformat); |
| 765 av_register_output_format(&mjpeg_oformat); | |
| 885 | 766 |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
767 av_register_input_format(&ingenient_iformat); |
| 0 | 768 |
| 769 av_register_input_format(&pcm_s16le_iformat); | |
| 770 av_register_output_format(&pcm_s16le_oformat); | |
| 771 av_register_input_format(&pcm_s16be_iformat); | |
| 772 av_register_output_format(&pcm_s16be_oformat); | |
| 773 av_register_input_format(&pcm_u16le_iformat); | |
| 774 av_register_output_format(&pcm_u16le_oformat); | |
| 775 av_register_input_format(&pcm_u16be_iformat); | |
| 776 av_register_output_format(&pcm_u16be_oformat); | |
| 777 av_register_input_format(&pcm_s8_iformat); | |
| 778 av_register_output_format(&pcm_s8_oformat); | |
| 779 av_register_input_format(&pcm_u8_iformat); | |
| 780 av_register_output_format(&pcm_u8_oformat); | |
| 781 av_register_input_format(&pcm_mulaw_iformat); | |
| 782 av_register_output_format(&pcm_mulaw_oformat); | |
| 783 av_register_input_format(&pcm_alaw_iformat); | |
| 784 av_register_output_format(&pcm_alaw_oformat); | |
| 785 | |
| 786 av_register_input_format(&rawvideo_iformat); | |
| 787 av_register_output_format(&rawvideo_oformat); | |
| 788 | |
| 789 av_register_output_format(&null_oformat); | |
| 790 return 0; | |
| 791 } |
