Mercurial > libavformat.hg
annotate raw.c @ 1358:0899bfe4105c libavformat
Change license headers to say 'FFmpeg' instead of 'this program/this library'
and fix GPL/LGPL version mismatches.
| author | diego |
|---|---|
| date | Sat, 07 Oct 2006 15:30:46 +0000 |
| parents | e59b75051ded |
| children | 5a3003271ad8 |
| rev | line source |
|---|---|
| 885 | 1 /* |
| 0 | 2 * RAW encoder and decoder |
| 3 * Copyright (c) 2001 Fabrice Bellard. | |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
4 * Copyright (c) 2005 Alex Beregszaszi |
| 0 | 5 * |
|
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]; | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
186 switch(st->codec->codec_id) { |
| 306 | 187 case CODEC_ID_PCM_S16LE: |
| 188 case CODEC_ID_PCM_S16BE: | |
| 189 case CODEC_ID_PCM_U16LE: | |
| 190 case CODEC_ID_PCM_U16BE: | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
191 block_align = 2 * st->codec->channels; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
192 byte_rate = block_align * st->codec->sample_rate; |
| 306 | 193 break; |
| 194 case CODEC_ID_PCM_S8: | |
| 195 case CODEC_ID_PCM_U8: | |
| 196 case CODEC_ID_PCM_MULAW: | |
| 197 case CODEC_ID_PCM_ALAW: | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
198 block_align = st->codec->channels; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
199 byte_rate = block_align * st->codec->sample_rate; |
| 306 | 200 break; |
| 201 default: | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
202 block_align = st->codec->block_align; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
203 byte_rate = st->codec->bit_rate / 8; |
| 306 | 204 break; |
| 205 } | |
| 885 | 206 |
| 306 | 207 if (block_align <= 0 || byte_rate <= 0) |
| 208 return -1; | |
| 209 | |
| 210 /* compute the position by aligning it to block_align */ | |
| 885 | 211 pos = av_rescale_rnd(timestamp * byte_rate, |
| 212 st->time_base.num, | |
| 558 | 213 st->time_base.den * (int64_t)block_align, |
| 214 (flags & AVSEEK_FLAG_BACKWARD) ? AV_ROUND_DOWN : AV_ROUND_UP); | |
| 215 pos *= block_align; | |
| 306 | 216 |
| 217 /* recompute exact position */ | |
| 464 | 218 st->cur_dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num); |
| 306 | 219 url_fseek(&s->pb, pos + s->data_offset, SEEK_SET); |
| 220 return 0; | |
| 221 } | |
| 222 | |
| 63 | 223 /* ac3 read */ |
| 224 static int ac3_read_header(AVFormatContext *s, | |
| 225 AVFormatParameters *ap) | |
| 226 { | |
| 227 AVStream *st; | |
| 228 | |
| 229 st = av_new_stream(s, 0); | |
| 230 if (!st) | |
| 231 return AVERROR_NOMEM; | |
| 232 | |
|
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_AC3; |
| 306 | 235 st->need_parsing = 1; |
| 63 | 236 /* the parameters will be extracted from the compressed bitstream */ |
| 237 return 0; | |
| 238 } | |
| 239 | |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
240 static int shorten_read_header(AVFormatContext *s, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
241 AVFormatParameters *ap) |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
242 { |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
243 AVStream *st; |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
244 |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
245 st = av_new_stream(s, 0); |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
246 if (!st) |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
247 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
|
248 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
|
249 st->codec->codec_id = CODEC_ID_SHORTEN; |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
250 st->need_parsing = 1; |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
251 /* the parameters will be extracted from the compressed bitstream */ |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
252 return 0; |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
253 } |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
254 |
|
1070
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
255 /* flac read */ |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
256 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
|
257 AVFormatParameters *ap) |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
258 { |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
259 AVStream *st; |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
260 |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
261 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
|
262 if (!st) |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
263 return AVERROR_NOMEM; |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
264 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
|
265 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
|
266 st->need_parsing = 1; |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
267 /* 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
|
268 return 0; |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
269 } |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
270 |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
271 /* dts read */ |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
272 static int dts_read_header(AVFormatContext *s, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
273 AVFormatParameters *ap) |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
274 { |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
275 AVStream *st; |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
276 |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
277 st = av_new_stream(s, 0); |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
278 if (!st) |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
279 return AVERROR_NOMEM; |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
280 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
281 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
|
282 st->codec->codec_id = CODEC_ID_DTS; |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
283 st->need_parsing = 1; |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
284 /* 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
|
285 return 0; |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
286 } |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
287 |
| 931 | 288 /* aac read */ |
| 289 static int aac_read_header(AVFormatContext *s, | |
| 290 AVFormatParameters *ap) | |
| 291 { | |
| 292 AVStream *st; | |
| 293 | |
| 294 st = av_new_stream(s, 0); | |
| 295 if (!st) | |
| 296 return AVERROR_NOMEM; | |
| 297 | |
| 298 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
| 299 st->codec->codec_id = CODEC_ID_AAC; | |
| 300 st->need_parsing = 1; | |
| 301 /* the parameters will be extracted from the compressed bitstream */ | |
| 302 return 0; | |
| 303 } | |
| 304 | |
| 0 | 305 /* mpeg1/h263 input */ |
| 306 static int video_read_header(AVFormatContext *s, | |
| 307 AVFormatParameters *ap) | |
| 308 { | |
| 309 AVStream *st; | |
| 310 | |
| 311 st = av_new_stream(s, 0); | |
| 312 if (!st) | |
| 313 return AVERROR_NOMEM; | |
| 314 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
315 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
|
316 st->codec->codec_id = s->iformat->value; |
| 306 | 317 st->need_parsing = 1; |
| 318 | |
| 0 | 319 /* for mjpeg, specify frame rate */ |
| 320 /* for mpeg4 specify it too (most mpeg4 streams dont have the fixed_vop_rate set ...)*/ | |
| 1003 | 321 if (ap->time_base.num) { |
| 745 | 322 av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den); |
| 885 | 323 } 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
|
324 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
|
325 st->codec->codec_id == CODEC_ID_H264) { |
| 745 | 326 av_set_pts_info(st, 64, 1, 25); |
| 0 | 327 } |
| 745 | 328 |
| 0 | 329 return 0; |
| 330 } | |
| 331 | |
| 887 | 332 #define SEQ_START_CODE 0x000001b3 |
| 333 #define GOP_START_CODE 0x000001b8 | |
| 334 #define PICTURE_START_CODE 0x00000100 | |
| 924 | 335 #define SLICE_START_CODE 0x00000101 |
| 336 #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
|
337 #define VIDEO_ID 0x000001e0 |
|
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
338 #define AUDIO_ID 0x000001c0 |
| 0 | 339 |
| 340 static int mpegvideo_probe(AVProbeData *p) | |
| 341 { | |
| 924 | 342 uint32_t code= -1; |
|
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
343 int pic=0, seq=0, slice=0, pspack=0, pes=0; |
| 924 | 344 int i; |
| 49 | 345 |
| 924 | 346 for(i=0; i<p->buf_size; i++){ |
| 347 code = (code<<8) + p->buf[i]; | |
| 348 if ((code & 0xffffff00) == 0x100) { | |
| 349 switch(code){ | |
| 350 case SEQ_START_CODE: seq++; break; | |
| 351 case PICTURE_START_CODE: pic++; break; | |
| 352 case SLICE_START_CODE: slice++; break; | |
| 353 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
|
354 case VIDEO_ID: |
|
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
355 case AUDIO_ID: pes++; break; |
| 924 | 356 } |
| 357 } | |
| 0 | 358 } |
|
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
359 if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !pes) |
| 924 | 360 return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg |
| 0 | 361 return 0; |
| 362 } | |
| 363 | |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
364 static int h263_probe(AVProbeData *p) |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
365 { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
366 int code; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
367 const uint8_t *d; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
368 |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
369 if (p->buf_size < 6) |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
370 return 0; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
371 d = p->buf; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
372 code = (d[0] << 14) | (d[1] << 6) | (d[2] >> 2); |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
373 if (code == 0x20) { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
374 return 50; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
375 } |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
376 return 0; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
377 } |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
378 |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
379 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
|
380 { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
381 int code; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
382 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
|
383 |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
384 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
|
385 return 0; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
386 d = p->buf; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
387 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
|
388 if (code == 0x10) { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
389 return 50; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
390 } |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
391 return 0; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
392 } |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
393 |
| 1167 | 394 AVInputFormat shorten_demuxer = { |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
395 "shn", |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
396 "raw shorten", |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
397 0, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
398 NULL, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
399 shorten_read_header, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
400 raw_read_partial_packet, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
401 raw_read_close, |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
402 .extensions = "shn", |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
403 }; |
|
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
404 |
| 1167 | 405 AVInputFormat flac_demuxer = { |
|
1070
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
406 "flac", |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
407 "raw flac", |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
408 0, |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
409 NULL, |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
410 flac_read_header, |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
411 raw_read_partial_packet, |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
412 raw_read_close, |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
413 .extensions = "flac", |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
414 }; |
|
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
415 |
|
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
416 #ifdef CONFIG_MUXERS |
| 1167 | 417 AVOutputFormat flac_muxer = { |
|
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
418 "flac", |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
419 "raw flac", |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
420 "audio/x-flac", |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
421 "flac", |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
422 0, |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
423 CODEC_ID_FLAC, |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
424 0, |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
425 flac_write_header, |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
426 raw_write_packet, |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
427 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
|
428 .flags= AVFMT_NOTIMESTAMPS, |
|
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
429 }; |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
430 #endif //CONFIG_MUXERS |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
431 |
| 1167 | 432 AVInputFormat ac3_demuxer = { |
| 0 | 433 "ac3", |
| 434 "raw ac3", | |
| 435 0, | |
| 436 NULL, | |
| 63 | 437 ac3_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
438 raw_read_partial_packet, |
| 0 | 439 raw_read_close, |
| 440 .extensions = "ac3", | |
| 441 }; | |
| 442 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
443 #ifdef CONFIG_MUXERS |
| 1167 | 444 AVOutputFormat ac3_muxer = { |
| 0 | 445 "ac3", |
| 446 "raw ac3", | |
| 885 | 447 "audio/x-ac3", |
| 0 | 448 "ac3", |
| 449 0, | |
| 450 CODEC_ID_AC3, | |
| 451 0, | |
| 452 raw_write_header, | |
| 453 raw_write_packet, | |
| 454 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
|
455 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 456 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
457 #endif //CONFIG_MUXERS |
| 0 | 458 |
| 1167 | 459 AVInputFormat dts_demuxer = { |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
460 "dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
461 "raw dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
462 0, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
463 NULL, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
464 dts_read_header, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
465 raw_read_partial_packet, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
466 raw_read_close, |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
467 .extensions = "dts", |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
468 }; |
|
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
469 |
| 1167 | 470 AVInputFormat aac_demuxer = { |
| 931 | 471 "aac", |
| 472 "ADTS AAC", | |
| 473 0, | |
| 474 NULL, | |
| 475 aac_read_header, | |
| 476 raw_read_partial_packet, | |
| 477 raw_read_close, | |
| 478 .extensions = "aac", | |
| 479 }; | |
| 480 | |
| 1167 | 481 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
|
482 "h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
483 "raw h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
484 0, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
485 h261_probe, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
486 video_read_header, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
487 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
|
488 raw_read_close, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
489 .extensions = "h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
490 .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
|
491 }; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
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 h261_muxer = { |
|
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
495 "h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
496 "raw h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
497 "video/x-h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
498 "h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
499 0, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
500 0, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
501 CODEC_ID_H261, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
502 raw_write_header, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
503 raw_write_packet, |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
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, |
|
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
506 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
507 #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
|
508 |
| 1167 | 509 AVInputFormat h263_demuxer = { |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
510 "h263", |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
511 "raw h263", |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
512 0, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
513 h263_probe, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
514 video_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
515 raw_read_partial_packet, |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
516 raw_read_close, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
517 // .extensions = "h263", //FIXME remove after writing mpeg4_probe |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
518 .value = CODEC_ID_H263, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
519 }; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
520 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
521 #ifdef CONFIG_MUXERS |
| 1167 | 522 AVOutputFormat h263_muxer = { |
| 0 | 523 "h263", |
| 524 "raw h263", | |
| 525 "video/x-h263", | |
| 526 "h263", | |
| 527 0, | |
| 528 0, | |
| 529 CODEC_ID_H263, | |
| 530 raw_write_header, | |
| 531 raw_write_packet, | |
| 532 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
|
533 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 534 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
535 #endif //CONFIG_MUXERS |
| 0 | 536 |
| 1167 | 537 AVInputFormat m4v_demuxer = { |
| 0 | 538 "m4v", |
| 539 "raw MPEG4 video format", | |
| 540 0, | |
| 541 NULL /*mpegvideo_probe*/, | |
| 542 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
543 raw_read_partial_packet, |
| 0 | 544 raw_read_close, |
| 545 .extensions = "m4v", //FIXME remove after writing mpeg4_probe | |
| 546 .value = CODEC_ID_MPEG4, | |
| 547 }; | |
| 548 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
549 #ifdef CONFIG_MUXERS |
| 1167 | 550 AVOutputFormat m4v_muxer = { |
| 0 | 551 "m4v", |
| 552 "raw MPEG4 video format", | |
| 553 NULL, | |
| 554 "m4v", | |
| 555 0, | |
| 556 CODEC_ID_NONE, | |
| 557 CODEC_ID_MPEG4, | |
| 558 raw_write_header, | |
| 559 raw_write_packet, | |
| 560 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
|
561 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 562 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
563 #endif //CONFIG_MUXERS |
| 0 | 564 |
| 1167 | 565 AVInputFormat h264_demuxer = { |
| 100 | 566 "h264", |
| 567 "raw H264 video format", | |
| 568 0, | |
| 569 NULL /*mpegvideo_probe*/, | |
| 570 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
571 raw_read_partial_packet, |
| 100 | 572 raw_read_close, |
| 808 | 573 .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe |
| 100 | 574 .value = CODEC_ID_H264, |
| 575 }; | |
| 576 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
577 #ifdef CONFIG_MUXERS |
| 1167 | 578 AVOutputFormat h264_muxer = { |
| 100 | 579 "h264", |
| 580 "raw H264 video format", | |
| 581 NULL, | |
| 582 "h264", | |
| 583 0, | |
| 584 CODEC_ID_NONE, | |
| 585 CODEC_ID_H264, | |
| 586 raw_write_header, | |
| 587 raw_write_packet, | |
| 588 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
|
589 .flags= AVFMT_NOTIMESTAMPS, |
| 100 | 590 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
591 #endif //CONFIG_MUXERS |
| 100 | 592 |
| 1167 | 593 AVInputFormat mpegvideo_demuxer = { |
| 0 | 594 "mpegvideo", |
| 595 "MPEG video", | |
| 596 0, | |
| 597 mpegvideo_probe, | |
| 598 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
599 raw_read_partial_packet, |
| 0 | 600 raw_read_close, |
| 601 .value = CODEC_ID_MPEG1VIDEO, | |
| 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 mpeg1video_muxer = { |
| 0 | 606 "mpeg1video", |
| 607 "MPEG video", | |
| 608 "video/x-mpeg", | |
| 814 | 609 "mpg,mpeg,m1v", |
| 0 | 610 0, |
| 611 0, | |
| 612 CODEC_ID_MPEG1VIDEO, | |
| 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 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
620 #ifdef CONFIG_MUXERS |
| 1167 | 621 AVOutputFormat mpeg2video_muxer = { |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
622 "mpeg2video", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
623 "MPEG2 video", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
624 NULL, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
625 "m2v", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
626 0, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
627 0, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
628 CODEC_ID_MPEG2VIDEO, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
629 raw_write_header, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
630 raw_write_packet, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
631 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
|
632 .flags= AVFMT_NOTIMESTAMPS, |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
633 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
634 #endif //CONFIG_MUXERS |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
635 |
| 1167 | 636 AVInputFormat mjpeg_demuxer = { |
| 0 | 637 "mjpeg", |
| 638 "MJPEG video", | |
| 639 0, | |
| 640 NULL, | |
| 641 video_read_header, | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
642 raw_read_partial_packet, |
| 0 | 643 raw_read_close, |
| 644 .extensions = "mjpg,mjpeg", | |
| 645 .value = CODEC_ID_MJPEG, | |
| 646 }; | |
| 647 | |
| 1167 | 648 AVInputFormat ingenient_demuxer = { |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
649 "ingenient", |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
650 "Ingenient MJPEG", |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
651 0, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
652 NULL, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
653 video_read_header, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
654 ingenient_read_packet, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
655 raw_read_close, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
656 .extensions = "cgi", // FIXME |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
657 .value = CODEC_ID_MJPEG, |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
658 }; |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
659 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
660 #ifdef CONFIG_MUXERS |
| 1167 | 661 AVOutputFormat mjpeg_muxer = { |
| 0 | 662 "mjpeg", |
| 663 "MJPEG video", | |
| 664 "video/x-mjpeg", | |
| 665 "mjpg,mjpeg", | |
| 666 0, | |
| 667 0, | |
| 668 CODEC_ID_MJPEG, | |
| 669 raw_write_header, | |
| 670 raw_write_packet, | |
| 671 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
|
672 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 673 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
674 #endif //CONFIG_MUXERS |
| 0 | 675 |
| 676 /* pcm formats */ | |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
677 |
| 306 | 678 #define PCMINPUTDEF(name, long_name, ext, codec) \ |
| 1167 | 679 AVInputFormat pcm_ ## name ## _demuxer = {\ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
680 #name,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
681 long_name,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
682 0,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
683 NULL,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
684 raw_read_header,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
685 raw_read_packet,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
686 raw_read_close,\ |
| 306 | 687 pcm_read_seek,\ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
688 .extensions = ext,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
689 .value = codec,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
690 }; |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
691 |
|
1121
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
692 #define PCMOUTPUTDEF(name, long_name, ext, codec) \ |
| 1167 | 693 AVOutputFormat pcm_ ## name ## _muxer = {\ |
| 0 | 694 #name,\ |
| 695 long_name,\ | |
| 696 NULL,\ | |
| 697 ext,\ | |
| 698 0,\ | |
| 699 codec,\ | |
| 700 0,\ | |
| 701 raw_write_header,\ | |
| 702 raw_write_packet,\ | |
| 703 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
|
704 .flags= AVFMT_NOTIMESTAMPS,\ |
| 0 | 705 }; |
|
1121
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
706 |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
707 |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
708 #if !defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
709 #define PCMDEF(name, long_name, ext, codec) \ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
710 PCMINPUTDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
711 #elif defined(CONFIG_MUXERS) && !defined(CONFIG_DEMUXERS) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
712 #define PCMDEF(name, long_name, ext, codec) \ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
713 PCMOUTPUTDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
714 #elif defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
715 #define PCMDEF(name, long_name, ext, codec) \ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
716 PCMINPUTDEF(name, long_name, ext, codec)\ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
717 PCMOUTPUTDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
718 #else |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
719 #define PCMDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
720 #endif |
| 0 | 721 |
| 722 #ifdef WORDS_BIGENDIAN | |
| 723 #define BE_DEF(s) s | |
| 724 #define LE_DEF(s) NULL | |
| 725 #else | |
| 726 #define BE_DEF(s) NULL | |
| 727 #define LE_DEF(s) s | |
| 728 #endif | |
| 729 | |
| 730 | |
| 885 | 731 PCMDEF(s16le, "pcm signed 16 bit little endian format", |
| 0 | 732 LE_DEF("sw"), CODEC_ID_PCM_S16LE) |
| 733 | |
| 885 | 734 PCMDEF(s16be, "pcm signed 16 bit big endian format", |
| 0 | 735 BE_DEF("sw"), CODEC_ID_PCM_S16BE) |
| 736 | |
| 885 | 737 PCMDEF(u16le, "pcm unsigned 16 bit little endian format", |
| 0 | 738 LE_DEF("uw"), CODEC_ID_PCM_U16LE) |
| 739 | |
| 885 | 740 PCMDEF(u16be, "pcm unsigned 16 bit big endian format", |
| 0 | 741 BE_DEF("uw"), CODEC_ID_PCM_U16BE) |
| 742 | |
| 885 | 743 PCMDEF(s8, "pcm signed 8 bit format", |
| 0 | 744 "sb", CODEC_ID_PCM_S8) |
| 745 | |
| 885 | 746 PCMDEF(u8, "pcm unsigned 8 bit format", |
| 0 | 747 "ub", CODEC_ID_PCM_U8) |
| 748 | |
| 885 | 749 PCMDEF(mulaw, "pcm mu law format", |
| 0 | 750 "ul", CODEC_ID_PCM_MULAW) |
| 751 | |
| 885 | 752 PCMDEF(alaw, "pcm A law format", |
| 0 | 753 "al", CODEC_ID_PCM_ALAW) |
| 754 | |
| 64 | 755 static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt) |
| 0 | 756 { |
| 757 int packet_size, ret, width, height; | |
| 758 AVStream *st = s->streams[0]; | |
| 759 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
760 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
|
761 height = st->codec->height; |
| 0 | 762 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
763 packet_size = avpicture_get_size(st->codec->pix_fmt, width, height); |
| 128 | 764 if (packet_size < 0) |
| 537 | 765 return -1; |
| 0 | 766 |
| 775 | 767 ret= av_get_packet(&s->pb, pkt, packet_size); |
| 0 | 768 |
| 769 pkt->stream_index = 0; | |
| 775 | 770 if (ret != packet_size) { |
| 482 | 771 return AVERROR_IO; |
| 0 | 772 } else { |
| 773 return 0; | |
| 774 } | |
| 775 } | |
| 776 | |
| 1167 | 777 AVInputFormat rawvideo_demuxer = { |
| 0 | 778 "rawvideo", |
| 779 "raw video format", | |
| 780 0, | |
| 781 NULL, | |
| 782 raw_read_header, | |
| 783 rawvideo_read_packet, | |
| 784 raw_read_close, | |
|
749
1a19a6add674
default to YUV420P if none specified for rawvideo input
michael
parents:
745
diff
changeset
|
785 .extensions = "yuv,cif,qcif", |
| 0 | 786 .value = CODEC_ID_RAWVIDEO, |
| 787 }; | |
| 788 | |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
789 #ifdef CONFIG_MUXERS |
| 1167 | 790 AVOutputFormat rawvideo_muxer = { |
| 0 | 791 "rawvideo", |
| 792 "raw video format", | |
| 793 NULL, | |
| 794 "yuv", | |
| 795 0, | |
| 796 CODEC_ID_NONE, | |
| 797 CODEC_ID_RAWVIDEO, | |
| 798 raw_write_header, | |
| 799 raw_write_packet, | |
| 800 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
|
801 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 802 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
803 #endif //CONFIG_MUXERS |
| 0 | 804 |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
805 #ifdef CONFIG_MUXERS |
| 468 | 806 static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
| 0 | 807 { |
| 808 return 0; | |
| 809 } | |
| 810 | |
| 1167 | 811 AVOutputFormat null_muxer = { |
| 0 | 812 "null", |
| 813 "null video format", | |
| 814 NULL, | |
| 815 NULL, | |
| 816 0, | |
| 817 #ifdef WORDS_BIGENDIAN | |
| 818 CODEC_ID_PCM_S16BE, | |
| 819 #else | |
| 820 CODEC_ID_PCM_S16LE, | |
| 821 #endif | |
| 822 CODEC_ID_RAWVIDEO, | |
| 823 raw_write_header, | |
| 824 null_write_packet, | |
| 825 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
|
826 .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE | AVFMT_NOTIMESTAMPS, |
| 0 | 827 }; |
|
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
828 #endif //CONFIG_MUXERS |
