Mercurial > libavformat.hg
annotate raw.c @ 1962:f28d346de931 libavformat
break if atom size is more than size left in container atom, fix shooter.mov
author | bcoudurier |
---|---|
date | Thu, 29 Mar 2007 10:37:07 +0000 |
parents | 69c6eb14fdfc |
children | f73b9a471583 |
rev | line source |
---|---|
885 | 1 /* |
1415
3b00fb8ef8e4
replace coder/decoder file description in libavformat by muxer/demuxer
aurel
parents:
1399
diff
changeset
|
2 * RAW muxer and demuxer |
0 | 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 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
6 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
7 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
0 | 9 * modify it under the terms of the GNU Lesser General Public |
10 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
0 | 12 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
0 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Lesser General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Lesser General Public | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1245
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 21 */ |
22 #include "avformat.h" | |
1931 | 23 #include "ac3.h" |
0 | 24 |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
25 #ifdef CONFIG_MUXERS |
0 | 26 /* simple formats */ |
64 | 27 static int raw_write_header(struct AVFormatContext *s) |
0 | 28 { |
29 return 0; | |
30 } | |
31 | |
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
32 static int flac_write_header(struct AVFormatContext *s) |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
33 { |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
34 static const uint8_t header[8] = { |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
35 0x66, 0x4C, 0x61, 0x43, 0x80, 0x00, 0x00, 0x22 |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
36 }; |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
37 uint8_t *streaminfo = s->streams[0]->codec->extradata; |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
38 int len = s->streams[0]->codec->extradata_size; |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
39 if(streaminfo != NULL && len > 0) { |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
40 put_buffer(&s->pb, header, 8); |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
41 put_buffer(&s->pb, streaminfo, len); |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
42 } |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
43 return 0; |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
44 } |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
45 |
468 | 46 static int raw_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
0 | 47 { |
468 | 48 put_buffer(&s->pb, pkt->data, pkt->size); |
0 | 49 put_flush_packet(&s->pb); |
50 return 0; | |
51 } | |
52 | |
64 | 53 static int raw_write_trailer(struct AVFormatContext *s) |
0 | 54 { |
55 return 0; | |
56 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
57 #endif //CONFIG_MUXERS |
0 | 58 |
59 /* raw input */ | |
65 | 60 static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap) |
0 | 61 { |
62 AVStream *st; | |
63 int id; | |
64 | |
65 st = av_new_stream(s, 0); | |
66 if (!st) | |
67 return AVERROR_NOMEM; | |
1003 | 68 |
0 | 69 id = s->iformat->value; |
70 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
|
71 st->codec->codec_type = CODEC_TYPE_VIDEO; |
0 | 72 } 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
|
73 st->codec->codec_type = CODEC_TYPE_AUDIO; |
0 | 74 } |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
75 st->codec->codec_id = id; |
0 | 76 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
77 switch(st->codec->codec_type) { |
0 | 78 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
|
79 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
|
80 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
|
81 av_set_pts_info(st, 64, 1, st->codec->sample_rate); |
0 | 82 break; |
83 case CODEC_TYPE_VIDEO: | |
743 | 84 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
|
85 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
|
86 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
|
87 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
|
88 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
|
89 st->codec->pix_fmt= PIX_FMT_YUV420P; |
0 | 90 break; |
91 default: | |
92 return -1; | |
93 } | |
94 return 0; | |
95 } | |
96 | |
97 #define RAW_PACKET_SIZE 1024 | |
98 | |
64 | 99 static int raw_read_packet(AVFormatContext *s, AVPacket *pkt) |
0 | 100 { |
101 int ret, size; | |
28 | 102 // AVStream *st = s->streams[0]; |
885 | 103 |
0 | 104 size= RAW_PACKET_SIZE; |
105 | |
775 | 106 ret= av_get_packet(&s->pb, pkt, size); |
0 | 107 |
108 pkt->stream_index = 0; | |
109 if (ret <= 0) { | |
482 | 110 return AVERROR_IO; |
0 | 111 } |
112 /* note: we need to modify the packet size here to handle the last | |
113 packet */ | |
114 pkt->size = ret; | |
115 return ret; | |
116 } | |
117 | |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
118 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
|
119 { |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
120 int ret, size; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
121 |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
122 size = RAW_PACKET_SIZE; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
123 |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
124 if (av_new_packet(pkt, size) < 0) |
482 | 125 return AVERROR_IO; |
885 | 126 |
775 | 127 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
|
128 pkt->stream_index = 0; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
129 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
|
130 if (ret <= 0) { |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
131 av_free_packet(pkt); |
482 | 132 return AVERROR_IO; |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
133 } |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
134 pkt->size = ret; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
135 return ret; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
136 } |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
137 |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
138 // 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
|
139 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
|
140 { |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
141 int ret, size, w, h, unk1, unk2; |
885 | 142 |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
143 if (get_le32(&s->pb) != MKTAG('M', 'J', 'P', 'G')) |
887 | 144 return AVERROR_IO; // FIXME |
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 size = get_le32(&s->pb); |
885 | 147 |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
148 w = get_le16(&s->pb); |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
149 h = get_le16(&s->pb); |
885 | 150 |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
151 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
|
152 url_fskip(&s->pb, 2); |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
153 unk1 = get_le16(&s->pb); |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
154 unk2 = get_le16(&s->pb); |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
155 url_fskip(&s->pb, 22); // ascii timestamp |
885 | 156 |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
157 av_log(NULL, AV_LOG_DEBUG, "Ingenient packet: size=%d, width=%d, height=%d, unk1=%d unk2=%d\n", |
887 | 158 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
|
159 |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
160 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
|
161 return AVERROR_IO; |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
162 |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
163 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
|
164 pkt->stream_index = 0; |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
165 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
|
166 if (ret <= 0) { |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
167 av_free_packet(pkt); |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
168 return AVERROR_IO; |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
169 } |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
170 pkt->size = ret; |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
171 return ret; |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
172 } |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
173 |
64 | 174 static int raw_read_close(AVFormatContext *s) |
0 | 175 { |
176 return 0; | |
177 } | |
178 | |
885 | 179 int pcm_read_seek(AVFormatContext *s, |
558 | 180 int stream_index, int64_t timestamp, int flags) |
306 | 181 { |
182 AVStream *st; | |
183 int block_align, byte_rate; | |
184 int64_t pos; | |
185 | |
186 st = s->streams[0]; | |
1399
5a3003271ad8
simplify pcm read seek, use av_get_bits_per_sample
bcoudurier
parents:
1358
diff
changeset
|
187 |
5a3003271ad8
simplify pcm read seek, use av_get_bits_per_sample
bcoudurier
parents:
1358
diff
changeset
|
188 block_align = st->codec->block_align ? st->codec->block_align : |
5a3003271ad8
simplify pcm read seek, use av_get_bits_per_sample
bcoudurier
parents:
1358
diff
changeset
|
189 (av_get_bits_per_sample(st->codec->codec_id) * st->codec->channels) >> 3; |
5a3003271ad8
simplify pcm read seek, use av_get_bits_per_sample
bcoudurier
parents:
1358
diff
changeset
|
190 byte_rate = st->codec->bit_rate ? st->codec->bit_rate >> 3 : |
5a3003271ad8
simplify pcm read seek, use av_get_bits_per_sample
bcoudurier
parents:
1358
diff
changeset
|
191 block_align * st->codec->sample_rate; |
885 | 192 |
306 | 193 if (block_align <= 0 || byte_rate <= 0) |
194 return -1; | |
195 | |
196 /* compute the position by aligning it to block_align */ | |
885 | 197 pos = av_rescale_rnd(timestamp * byte_rate, |
198 st->time_base.num, | |
558 | 199 st->time_base.den * (int64_t)block_align, |
200 (flags & AVSEEK_FLAG_BACKWARD) ? AV_ROUND_DOWN : AV_ROUND_UP); | |
201 pos *= block_align; | |
306 | 202 |
203 /* recompute exact position */ | |
464 | 204 st->cur_dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num); |
306 | 205 url_fseek(&s->pb, pos + s->data_offset, SEEK_SET); |
206 return 0; | |
207 } | |
208 | |
63 | 209 /* ac3 read */ |
210 static int ac3_read_header(AVFormatContext *s, | |
211 AVFormatParameters *ap) | |
212 { | |
213 AVStream *st; | |
214 | |
215 st = av_new_stream(s, 0); | |
216 if (!st) | |
217 return AVERROR_NOMEM; | |
218 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
219 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
|
220 st->codec->codec_id = CODEC_ID_AC3; |
306 | 221 st->need_parsing = 1; |
63 | 222 /* the parameters will be extracted from the compressed bitstream */ |
223 return 0; | |
224 } | |
225 | |
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
226 static int shorten_read_header(AVFormatContext *s, |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
227 AVFormatParameters *ap) |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
228 { |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
229 AVStream *st; |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
230 |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
231 st = av_new_stream(s, 0); |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
232 if (!st) |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
233 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
|
234 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
|
235 st->codec->codec_id = CODEC_ID_SHORTEN; |
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
236 st->need_parsing = 1; |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
237 /* the parameters will be extracted from the compressed bitstream */ |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
238 return 0; |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
239 } |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
240 |
1070
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
241 /* flac read */ |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
242 static int flac_read_header(AVFormatContext *s, |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
243 AVFormatParameters *ap) |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
244 { |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
245 AVStream *st; |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
246 |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
247 st = av_new_stream(s, 0); |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
248 if (!st) |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
249 return AVERROR_NOMEM; |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
250 st->codec->codec_type = CODEC_TYPE_AUDIO; |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
251 st->codec->codec_id = CODEC_ID_FLAC; |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
252 st->need_parsing = 1; |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
253 /* the parameters will be extracted from the compressed bitstream */ |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
254 return 0; |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
255 } |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
256 |
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
257 /* dts read */ |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
258 static int dts_read_header(AVFormatContext *s, |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
259 AVFormatParameters *ap) |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
260 { |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
261 AVStream *st; |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
262 |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
263 st = av_new_stream(s, 0); |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
264 if (!st) |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
265 return AVERROR_NOMEM; |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
266 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
267 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
|
268 st->codec->codec_id = CODEC_ID_DTS; |
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
269 st->need_parsing = 1; |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
270 /* 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
|
271 return 0; |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
272 } |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
273 |
931 | 274 /* aac read */ |
275 static int aac_read_header(AVFormatContext *s, | |
276 AVFormatParameters *ap) | |
277 { | |
278 AVStream *st; | |
279 | |
280 st = av_new_stream(s, 0); | |
281 if (!st) | |
282 return AVERROR_NOMEM; | |
283 | |
284 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
285 st->codec->codec_id = CODEC_ID_AAC; | |
286 st->need_parsing = 1; | |
287 /* the parameters will be extracted from the compressed bitstream */ | |
288 return 0; | |
289 } | |
290 | |
0 | 291 /* mpeg1/h263 input */ |
292 static int video_read_header(AVFormatContext *s, | |
293 AVFormatParameters *ap) | |
294 { | |
295 AVStream *st; | |
296 | |
297 st = av_new_stream(s, 0); | |
298 if (!st) | |
299 return AVERROR_NOMEM; | |
300 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
301 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
|
302 st->codec->codec_id = s->iformat->value; |
306 | 303 st->need_parsing = 1; |
304 | |
0 | 305 /* for mjpeg, specify frame rate */ |
306 /* for mpeg4 specify it too (most mpeg4 streams dont have the fixed_vop_rate set ...)*/ | |
1003 | 307 if (ap->time_base.num) { |
745 | 308 av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den); |
885 | 309 } 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
|
310 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
|
311 st->codec->codec_id == CODEC_ID_H264) { |
745 | 312 av_set_pts_info(st, 64, 1, 25); |
0 | 313 } |
745 | 314 |
0 | 315 return 0; |
316 } | |
317 | |
887 | 318 #define SEQ_START_CODE 0x000001b3 |
319 #define GOP_START_CODE 0x000001b8 | |
320 #define PICTURE_START_CODE 0x00000100 | |
924 | 321 #define SLICE_START_CODE 0x00000101 |
322 #define PACK_START_CODE 0x000001ba | |
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
323 #define VIDEO_ID 0x000001e0 |
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
324 #define AUDIO_ID 0x000001c0 |
0 | 325 |
326 static int mpegvideo_probe(AVProbeData *p) | |
327 { | |
924 | 328 uint32_t code= -1; |
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
329 int pic=0, seq=0, slice=0, pspack=0, pes=0; |
924 | 330 int i; |
49 | 331 |
924 | 332 for(i=0; i<p->buf_size; i++){ |
333 code = (code<<8) + p->buf[i]; | |
334 if ((code & 0xffffff00) == 0x100) { | |
335 switch(code){ | |
336 case SEQ_START_CODE: seq++; break; | |
337 case PICTURE_START_CODE: pic++; break; | |
338 case SLICE_START_CODE: slice++; break; | |
339 case PACK_START_CODE: pspack++; break; | |
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
340 case VIDEO_ID: |
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
341 case AUDIO_ID: pes++; break; |
924 | 342 } |
343 } | |
0 | 344 } |
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
345 if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !pes) |
924 | 346 return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg |
0 | 347 return 0; |
348 } | |
349 | |
1463
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
350 #define VIDEO_OBJECT_START_CODE 0x00000100 |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
351 #define VIDEO_OBJECT_LAYER_START_CODE 0x00000120 |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
352 #define VISUAL_OBJECT_START_CODE 0x000001b5 |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
353 #define VOP_START_CODE 0x000001b6 |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
354 |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
355 static int mpeg4video_probe(AVProbeData *probe_packet) |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
356 { |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
357 uint32_t temp_buffer= -1; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
358 int VO=0, VOL=0, VOP = 0, VISO = 0; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
359 int i; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
360 |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
361 for(i=0; i<probe_packet->buf_size; i++){ |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
362 temp_buffer = (temp_buffer<<8) + probe_packet->buf[i]; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
363 if ((temp_buffer & 0xffffff00) == 0x100) { |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
364 switch(temp_buffer){ |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
365 case VOP_START_CODE: VOP++; break; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
366 case VISUAL_OBJECT_START_CODE: VISO++; break; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
367 } |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
368 switch(temp_buffer & 0xfffffff0){ |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
369 case VIDEO_OBJECT_START_CODE: VO++; break; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
370 case VIDEO_OBJECT_LAYER_START_CODE: VOL++; break; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
371 } |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
372 } |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
373 } |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
374 |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
375 if ( VOP >= VISO && VOP >= VOL && VO >= VOL && VOL > 0) |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
376 return AVPROBE_SCORE_MAX/2; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
377 return 0; |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
378 } |
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
379 |
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
380 static int h263_probe(AVProbeData *p) |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
381 { |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
382 int code; |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
383 const uint8_t *d; |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
384 |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
385 if (p->buf_size < 6) |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
386 return 0; |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
387 d = p->buf; |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
388 code = (d[0] << 14) | (d[1] << 6) | (d[2] >> 2); |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
389 if (code == 0x20) { |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
390 return 50; |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
391 } |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
392 return 0; |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
393 } |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
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 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
|
396 { |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
397 int code; |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
398 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
|
399 |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
400 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
|
401 return 0; |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
402 d = p->buf; |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
403 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
|
404 if (code == 0x10) { |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
405 return 50; |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
406 } |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
407 return 0; |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
408 } |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
409 |
1768 | 410 static int ac3_probe(AVProbeData *p) |
411 { | |
1931 | 412 int max_frames, first_frames, frames; |
413 uint8_t *buf, *buf2, *end; | |
414 AC3HeaderInfo hdr; | |
1768 | 415 |
1931 | 416 if(p->buf_size < 7) |
1768 | 417 return 0; |
418 | |
1931 | 419 max_frames = 0; |
420 buf = p->buf; | |
421 end = buf + FFMIN(4096, p->buf_size - 7); | |
422 | |
423 for(; buf < end; buf++) { | |
424 buf2 = buf; | |
425 | |
426 for(frames = 0; buf2 < end; frames++) { | |
427 if(ff_ac3_parse_header(buf2, &hdr) < 0) | |
428 break; | |
429 buf2 += hdr.frame_size; | |
430 } | |
431 max_frames = FFMAX(max_frames, frames); | |
432 if(buf == p->buf) | |
433 first_frames = frames; | |
1768 | 434 } |
1931 | 435 if (first_frames>=3) return AVPROBE_SCORE_MAX * 3 / 4; |
436 else if(max_frames>=3) return AVPROBE_SCORE_MAX / 2; | |
437 else if(max_frames>=1) return 1; | |
438 else return 0; | |
1768 | 439 } |
440 | |
1167 | 441 AVInputFormat shorten_demuxer = { |
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
442 "shn", |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
443 "raw shorten", |
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
444 0, |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
445 NULL, |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
446 shorten_read_header, |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
447 raw_read_partial_packet, |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
448 raw_read_close, |
1756 | 449 .flags= AVFMT_GENERIC_INDEX, |
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
450 .extensions = "shn", |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
451 }; |
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
452 |
1167 | 453 AVInputFormat flac_demuxer = { |
1070
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
454 "flac", |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
455 "raw flac", |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
456 0, |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
457 NULL, |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
458 flac_read_header, |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
459 raw_read_partial_packet, |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
460 raw_read_close, |
1756 | 461 .flags= AVFMT_GENERIC_INDEX, |
1070
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
462 .extensions = "flac", |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
463 }; |
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
464 |
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
465 #ifdef CONFIG_MUXERS |
1167 | 466 AVOutputFormat flac_muxer = { |
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
467 "flac", |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
468 "raw flac", |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
469 "audio/x-flac", |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
470 "flac", |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
471 0, |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
472 CODEC_ID_FLAC, |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
473 0, |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
474 flac_write_header, |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
475 raw_write_packet, |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
476 raw_write_trailer, |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
477 .flags= AVFMT_NOTIMESTAMPS, |
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
478 }; |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
479 #endif //CONFIG_MUXERS |
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
480 |
1167 | 481 AVInputFormat ac3_demuxer = { |
0 | 482 "ac3", |
483 "raw ac3", | |
484 0, | |
1768 | 485 ac3_probe, |
63 | 486 ac3_read_header, |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
487 raw_read_partial_packet, |
0 | 488 raw_read_close, |
1756 | 489 .flags= AVFMT_GENERIC_INDEX, |
0 | 490 .extensions = "ac3", |
491 }; | |
492 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
493 #ifdef CONFIG_MUXERS |
1167 | 494 AVOutputFormat ac3_muxer = { |
0 | 495 "ac3", |
496 "raw ac3", | |
885 | 497 "audio/x-ac3", |
0 | 498 "ac3", |
499 0, | |
500 CODEC_ID_AC3, | |
501 0, | |
502 raw_write_header, | |
503 raw_write_packet, | |
504 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
505 .flags= AVFMT_NOTIMESTAMPS, |
0 | 506 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
507 #endif //CONFIG_MUXERS |
0 | 508 |
1167 | 509 AVInputFormat dts_demuxer = { |
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
510 "dts", |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
511 "raw dts", |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
512 0, |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
513 NULL, |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
514 dts_read_header, |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
515 raw_read_partial_packet, |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
516 raw_read_close, |
1756 | 517 .flags= AVFMT_GENERIC_INDEX, |
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
518 .extensions = "dts", |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
519 }; |
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
520 |
1167 | 521 AVInputFormat aac_demuxer = { |
931 | 522 "aac", |
523 "ADTS AAC", | |
524 0, | |
525 NULL, | |
526 aac_read_header, | |
527 raw_read_partial_packet, | |
528 raw_read_close, | |
1756 | 529 .flags= AVFMT_GENERIC_INDEX, |
931 | 530 .extensions = "aac", |
531 }; | |
532 | |
1167 | 533 AVInputFormat h261_demuxer = { |
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
534 "h261", |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
535 "raw h261", |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
536 0, |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
537 h261_probe, |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
538 video_read_header, |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
539 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
|
540 raw_read_close, |
1756 | 541 .flags= AVFMT_GENERIC_INDEX, |
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
542 .extensions = "h261", |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
543 .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
|
544 }; |
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
545 |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
546 #ifdef CONFIG_MUXERS |
1167 | 547 AVOutputFormat h261_muxer = { |
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
548 "h261", |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
549 "raw h261", |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
550 "video/x-h261", |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
551 "h261", |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
552 0, |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
553 0, |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
554 CODEC_ID_H261, |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
555 raw_write_header, |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
556 raw_write_packet, |
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
557 raw_write_trailer, |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
558 .flags= AVFMT_NOTIMESTAMPS, |
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
559 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
560 #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
|
561 |
1167 | 562 AVInputFormat h263_demuxer = { |
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
563 "h263", |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
564 "raw h263", |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
565 0, |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
566 h263_probe, |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
567 video_read_header, |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
568 raw_read_partial_packet, |
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
569 raw_read_close, |
1756 | 570 .flags= AVFMT_GENERIC_INDEX, |
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
571 // .extensions = "h263", //FIXME remove after writing mpeg4_probe |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
572 .value = CODEC_ID_H263, |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
573 }; |
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
574 |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
575 #ifdef CONFIG_MUXERS |
1167 | 576 AVOutputFormat h263_muxer = { |
0 | 577 "h263", |
578 "raw h263", | |
579 "video/x-h263", | |
580 "h263", | |
581 0, | |
582 0, | |
583 CODEC_ID_H263, | |
584 raw_write_header, | |
585 raw_write_packet, | |
586 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
587 .flags= AVFMT_NOTIMESTAMPS, |
0 | 588 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
589 #endif //CONFIG_MUXERS |
0 | 590 |
1167 | 591 AVInputFormat m4v_demuxer = { |
0 | 592 "m4v", |
593 "raw MPEG4 video format", | |
594 0, | |
1463
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
595 mpeg4video_probe, /** probing for mpeg4 data */ |
0 | 596 video_read_header, |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
597 raw_read_partial_packet, |
0 | 598 raw_read_close, |
1756 | 599 .flags= AVFMT_GENERIC_INDEX, |
0 | 600 .extensions = "m4v", //FIXME remove after writing mpeg4_probe |
601 .value = CODEC_ID_MPEG4, | |
602 }; | |
603 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
604 #ifdef CONFIG_MUXERS |
1167 | 605 AVOutputFormat m4v_muxer = { |
0 | 606 "m4v", |
607 "raw MPEG4 video format", | |
608 NULL, | |
609 "m4v", | |
610 0, | |
611 CODEC_ID_NONE, | |
612 CODEC_ID_MPEG4, | |
613 raw_write_header, | |
614 raw_write_packet, | |
615 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
616 .flags= AVFMT_NOTIMESTAMPS, |
0 | 617 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
618 #endif //CONFIG_MUXERS |
0 | 619 |
1167 | 620 AVInputFormat h264_demuxer = { |
100 | 621 "h264", |
622 "raw H264 video format", | |
623 0, | |
624 NULL /*mpegvideo_probe*/, | |
625 video_read_header, | |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
626 raw_read_partial_packet, |
100 | 627 raw_read_close, |
1756 | 628 .flags= AVFMT_GENERIC_INDEX, |
808 | 629 .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe |
100 | 630 .value = CODEC_ID_H264, |
631 }; | |
632 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
633 #ifdef CONFIG_MUXERS |
1167 | 634 AVOutputFormat h264_muxer = { |
100 | 635 "h264", |
636 "raw H264 video format", | |
637 NULL, | |
638 "h264", | |
639 0, | |
640 CODEC_ID_NONE, | |
641 CODEC_ID_H264, | |
642 raw_write_header, | |
643 raw_write_packet, | |
644 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
645 .flags= AVFMT_NOTIMESTAMPS, |
100 | 646 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
647 #endif //CONFIG_MUXERS |
100 | 648 |
1167 | 649 AVInputFormat mpegvideo_demuxer = { |
0 | 650 "mpegvideo", |
651 "MPEG video", | |
652 0, | |
653 mpegvideo_probe, | |
654 video_read_header, | |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
655 raw_read_partial_packet, |
0 | 656 raw_read_close, |
1756 | 657 .flags= AVFMT_GENERIC_INDEX, |
0 | 658 .value = CODEC_ID_MPEG1VIDEO, |
659 }; | |
660 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
661 #ifdef CONFIG_MUXERS |
1167 | 662 AVOutputFormat mpeg1video_muxer = { |
0 | 663 "mpeg1video", |
664 "MPEG video", | |
665 "video/x-mpeg", | |
814 | 666 "mpg,mpeg,m1v", |
0 | 667 0, |
668 0, | |
669 CODEC_ID_MPEG1VIDEO, | |
670 raw_write_header, | |
671 raw_write_packet, | |
672 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
673 .flags= AVFMT_NOTIMESTAMPS, |
0 | 674 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
675 #endif //CONFIG_MUXERS |
0 | 676 |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
677 #ifdef CONFIG_MUXERS |
1167 | 678 AVOutputFormat mpeg2video_muxer = { |
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
679 "mpeg2video", |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
680 "MPEG2 video", |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
681 NULL, |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
682 "m2v", |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
683 0, |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
684 0, |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
685 CODEC_ID_MPEG2VIDEO, |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
686 raw_write_header, |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
687 raw_write_packet, |
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
688 raw_write_trailer, |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
689 .flags= AVFMT_NOTIMESTAMPS, |
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
690 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
691 #endif //CONFIG_MUXERS |
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
692 |
1167 | 693 AVInputFormat mjpeg_demuxer = { |
0 | 694 "mjpeg", |
695 "MJPEG video", | |
696 0, | |
697 NULL, | |
698 video_read_header, | |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
699 raw_read_partial_packet, |
0 | 700 raw_read_close, |
1756 | 701 .flags= AVFMT_GENERIC_INDEX, |
0 | 702 .extensions = "mjpg,mjpeg", |
703 .value = CODEC_ID_MJPEG, | |
704 }; | |
705 | |
1167 | 706 AVInputFormat ingenient_demuxer = { |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
707 "ingenient", |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
708 "Ingenient MJPEG", |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
709 0, |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
710 NULL, |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
711 video_read_header, |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
712 ingenient_read_packet, |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
713 raw_read_close, |
1756 | 714 .flags= AVFMT_GENERIC_INDEX, |
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
715 .extensions = "cgi", // FIXME |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
716 .value = CODEC_ID_MJPEG, |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
717 }; |
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
718 |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
719 #ifdef CONFIG_MUXERS |
1167 | 720 AVOutputFormat mjpeg_muxer = { |
0 | 721 "mjpeg", |
722 "MJPEG video", | |
723 "video/x-mjpeg", | |
724 "mjpg,mjpeg", | |
725 0, | |
726 0, | |
727 CODEC_ID_MJPEG, | |
728 raw_write_header, | |
729 raw_write_packet, | |
730 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
731 .flags= AVFMT_NOTIMESTAMPS, |
0 | 732 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
733 #endif //CONFIG_MUXERS |
0 | 734 |
1773 | 735 AVInputFormat vc1_demuxer = { |
736 "vc1", | |
737 "raw vc1", | |
738 0, | |
739 NULL /* vc1_probe */, | |
740 video_read_header, | |
741 raw_read_partial_packet, | |
742 raw_read_close, | |
743 .extensions = "vc1", | |
744 .value = CODEC_ID_VC1, | |
745 }; | |
746 | |
0 | 747 /* pcm formats */ |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
748 |
306 | 749 #define PCMINPUTDEF(name, long_name, ext, codec) \ |
1167 | 750 AVInputFormat pcm_ ## name ## _demuxer = {\ |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
751 #name,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
752 long_name,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
753 0,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
754 NULL,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
755 raw_read_header,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
756 raw_read_packet,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
757 raw_read_close,\ |
306 | 758 pcm_read_seek,\ |
1756 | 759 .flags= AVFMT_GENERIC_INDEX,\ |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
760 .extensions = ext,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
761 .value = codec,\ |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
762 }; |
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
763 |
1121
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
764 #define PCMOUTPUTDEF(name, long_name, ext, codec) \ |
1167 | 765 AVOutputFormat pcm_ ## name ## _muxer = {\ |
0 | 766 #name,\ |
767 long_name,\ | |
768 NULL,\ | |
769 ext,\ | |
770 0,\ | |
771 codec,\ | |
772 0,\ | |
773 raw_write_header,\ | |
774 raw_write_packet,\ | |
775 raw_write_trailer,\ | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
776 .flags= AVFMT_NOTIMESTAMPS,\ |
0 | 777 }; |
1121
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
778 |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
779 |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
780 #if !defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
781 #define PCMDEF(name, long_name, ext, codec) \ |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
782 PCMINPUTDEF(name, long_name, ext, codec) |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
783 #elif defined(CONFIG_MUXERS) && !defined(CONFIG_DEMUXERS) |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
784 #define PCMDEF(name, long_name, ext, codec) \ |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
785 PCMOUTPUTDEF(name, long_name, ext, codec) |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
786 #elif defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
787 #define PCMDEF(name, long_name, ext, codec) \ |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
788 PCMINPUTDEF(name, long_name, ext, codec)\ |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
789 PCMOUTPUTDEF(name, long_name, ext, codec) |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
790 #else |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
791 #define PCMDEF(name, long_name, ext, codec) |
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
792 #endif |
0 | 793 |
794 #ifdef WORDS_BIGENDIAN | |
795 #define BE_DEF(s) s | |
796 #define LE_DEF(s) NULL | |
797 #else | |
798 #define BE_DEF(s) NULL | |
799 #define LE_DEF(s) s | |
800 #endif | |
801 | |
802 | |
885 | 803 PCMDEF(s16le, "pcm signed 16 bit little endian format", |
0 | 804 LE_DEF("sw"), CODEC_ID_PCM_S16LE) |
805 | |
885 | 806 PCMDEF(s16be, "pcm signed 16 bit big endian format", |
0 | 807 BE_DEF("sw"), CODEC_ID_PCM_S16BE) |
808 | |
885 | 809 PCMDEF(u16le, "pcm unsigned 16 bit little endian format", |
0 | 810 LE_DEF("uw"), CODEC_ID_PCM_U16LE) |
811 | |
885 | 812 PCMDEF(u16be, "pcm unsigned 16 bit big endian format", |
0 | 813 BE_DEF("uw"), CODEC_ID_PCM_U16BE) |
814 | |
885 | 815 PCMDEF(s8, "pcm signed 8 bit format", |
0 | 816 "sb", CODEC_ID_PCM_S8) |
817 | |
885 | 818 PCMDEF(u8, "pcm unsigned 8 bit format", |
0 | 819 "ub", CODEC_ID_PCM_U8) |
820 | |
885 | 821 PCMDEF(mulaw, "pcm mu law format", |
0 | 822 "ul", CODEC_ID_PCM_MULAW) |
823 | |
885 | 824 PCMDEF(alaw, "pcm A law format", |
0 | 825 "al", CODEC_ID_PCM_ALAW) |
826 | |
64 | 827 static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt) |
0 | 828 { |
829 int packet_size, ret, width, height; | |
830 AVStream *st = s->streams[0]; | |
831 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
832 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
|
833 height = st->codec->height; |
0 | 834 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
835 packet_size = avpicture_get_size(st->codec->pix_fmt, width, height); |
128 | 836 if (packet_size < 0) |
537 | 837 return -1; |
0 | 838 |
775 | 839 ret= av_get_packet(&s->pb, pkt, packet_size); |
0 | 840 |
841 pkt->stream_index = 0; | |
775 | 842 if (ret != packet_size) { |
482 | 843 return AVERROR_IO; |
0 | 844 } else { |
845 return 0; | |
846 } | |
847 } | |
848 | |
1167 | 849 AVInputFormat rawvideo_demuxer = { |
0 | 850 "rawvideo", |
851 "raw video format", | |
852 0, | |
853 NULL, | |
854 raw_read_header, | |
855 rawvideo_read_packet, | |
856 raw_read_close, | |
1756 | 857 .flags= AVFMT_GENERIC_INDEX, |
749
1a19a6add674
default to YUV420P if none specified for rawvideo input
michael
parents:
745
diff
changeset
|
858 .extensions = "yuv,cif,qcif", |
0 | 859 .value = CODEC_ID_RAWVIDEO, |
860 }; | |
861 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
862 #ifdef CONFIG_MUXERS |
1167 | 863 AVOutputFormat rawvideo_muxer = { |
0 | 864 "rawvideo", |
865 "raw video format", | |
866 NULL, | |
867 "yuv", | |
868 0, | |
869 CODEC_ID_NONE, | |
870 CODEC_ID_RAWVIDEO, | |
871 raw_write_header, | |
872 raw_write_packet, | |
873 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
874 .flags= AVFMT_NOTIMESTAMPS, |
0 | 875 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
876 #endif //CONFIG_MUXERS |
0 | 877 |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
878 #ifdef CONFIG_MUXERS |
468 | 879 static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
0 | 880 { |
881 return 0; | |
882 } | |
883 | |
1167 | 884 AVOutputFormat null_muxer = { |
0 | 885 "null", |
886 "null video format", | |
887 NULL, | |
888 NULL, | |
889 0, | |
890 #ifdef WORDS_BIGENDIAN | |
891 CODEC_ID_PCM_S16BE, | |
892 #else | |
893 CODEC_ID_PCM_S16LE, | |
894 #endif | |
895 CODEC_ID_RAWVIDEO, | |
896 raw_write_header, | |
897 null_write_packet, | |
898 raw_write_trailer, | |
1245
e59b75051ded
dont be too picky about timestampsbeing wrong if the destination container is without timestamps and raw of the raw video / raw audio sort
michael
parents:
1169
diff
changeset
|
899 .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE | AVFMT_NOTIMESTAMPS, |
0 | 900 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
901 #endif //CONFIG_MUXERS |