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