Mercurial > libavformat.hg
annotate raw.c @ 3995:fcff303d5c8c libavformat
Assume mono if no other information for raw.
Should fix issue687
| author | michael |
|---|---|
| date | Sat, 18 Oct 2008 10:40:31 +0000 |
| parents | 549a09cf23fe |
| children | 677bcb3b65cd |
| 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 */ |
| 3286 | 22 |
| 23 #include "libavutil/crc.h" | |
| 24 #include "libavcodec/ac3_parser.h" | |
| 25 #include "libavcodec/bitstream.h" | |
| 26 #include "libavcodec/bytestream.h" | |
| 0 | 27 #include "avformat.h" |
|
2545
213268d7594e
move unrelated functions declarations out of allformats.h
aurel
parents:
2368
diff
changeset
|
28 #include "raw.h" |
| 0 | 29 |
| 30 /* simple formats */ | |
|
3728
83ddeeaae767
Replace generic CONFIG_MUXERS preprocessor condition around format-specific
diego
parents:
3727
diff
changeset
|
31 #ifdef CONFIG_FLAC_MUXER |
|
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
32 static int flac_write_header(struct AVFormatContext *s) |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
33 { |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
34 static const uint8_t header[8] = { |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
35 0x66, 0x4C, 0x61, 0x43, 0x80, 0x00, 0x00, 0x22 |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
36 }; |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
37 uint8_t *streaminfo = s->streams[0]->codec->extradata; |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
38 int len = s->streams[0]->codec->extradata_size; |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
39 if(streaminfo != NULL && len > 0) { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
40 put_buffer(s->pb, header, 8); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
41 put_buffer(s->pb, streaminfo, len); |
|
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
42 } |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
43 return 0; |
|
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
44 } |
| 3926 | 45 |
| 46 static int flac_write_trailer(struct AVFormatContext *s) | |
| 47 { | |
| 48 ByteIOContext *pb = s->pb; | |
| 49 uint8_t *streaminfo = s->streams[0]->codec->extradata; | |
| 50 int len = s->streams[0]->codec->extradata_size; | |
|
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3926
diff
changeset
|
51 int64_t file_size; |
| 3926 | 52 |
| 53 if (streaminfo && len > 0 && !url_is_streamed(s->pb)) { | |
| 54 file_size = url_ftell(pb); | |
| 55 url_fseek(pb, 8, SEEK_SET); | |
| 56 put_buffer(pb, streaminfo, len); | |
| 57 url_fseek(pb, file_size, SEEK_SET); | |
| 58 put_flush_packet(pb); | |
| 59 } | |
| 60 return 0; | |
| 61 } | |
|
3728
83ddeeaae767
Replace generic CONFIG_MUXERS preprocessor condition around format-specific
diego
parents:
3727
diff
changeset
|
62 #endif |
|
1078
0bc9422cc0ad
Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can be
banan
parents:
1070
diff
changeset
|
63 |
|
3728
83ddeeaae767
Replace generic CONFIG_MUXERS preprocessor condition around format-specific
diego
parents:
3727
diff
changeset
|
64 #ifdef CONFIG_ROQ_MUXER |
| 2076 | 65 static int roq_write_header(struct AVFormatContext *s) |
| 66 { | |
| 67 static const uint8_t header[] = { | |
| 68 0x84, 0x10, 0xFF, 0xFF, 0xFF, 0xFF, 0x1E, 0x00 | |
| 69 }; | |
| 70 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
71 put_buffer(s->pb, header, 8); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
72 put_flush_packet(s->pb); |
| 2076 | 73 |
| 74 return 0; | |
| 75 } | |
|
3728
83ddeeaae767
Replace generic CONFIG_MUXERS preprocessor condition around format-specific
diego
parents:
3727
diff
changeset
|
76 #endif |
| 2076 | 77 |
|
3728
83ddeeaae767
Replace generic CONFIG_MUXERS preprocessor condition around format-specific
diego
parents:
3727
diff
changeset
|
78 #ifdef CONFIG_NULL_MUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
79 static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
80 { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
81 return 0; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
82 } |
|
3728
83ddeeaae767
Replace generic CONFIG_MUXERS preprocessor condition around format-specific
diego
parents:
3727
diff
changeset
|
83 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
84 |
|
3728
83ddeeaae767
Replace generic CONFIG_MUXERS preprocessor condition around format-specific
diego
parents:
3727
diff
changeset
|
85 #ifdef CONFIG_MUXERS |
| 468 | 86 static int raw_write_packet(struct AVFormatContext *s, AVPacket *pkt) |
| 0 | 87 { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
88 put_buffer(s->pb, pkt->data, pkt->size); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
89 put_flush_packet(s->pb); |
| 0 | 90 return 0; |
| 91 } | |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
92 #endif |
| 0 | 93 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
94 #ifdef CONFIG_DEMUXERS |
| 0 | 95 /* raw input */ |
| 65 | 96 static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap) |
| 0 | 97 { |
| 98 AVStream *st; | |
| 99 int id; | |
| 100 | |
| 101 st = av_new_stream(s, 0); | |
| 102 if (!st) | |
|
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2231
diff
changeset
|
103 return AVERROR(ENOMEM); |
| 1003 | 104 |
| 0 | 105 id = s->iformat->value; |
| 106 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
|
107 st->codec->codec_type = CODEC_TYPE_VIDEO; |
| 0 | 108 } 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
|
109 st->codec->codec_type = CODEC_TYPE_AUDIO; |
| 0 | 110 } |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
111 st->codec->codec_id = id; |
| 0 | 112 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
113 switch(st->codec->codec_type) { |
| 0 | 114 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
|
115 st->codec->sample_rate = ap->sample_rate; |
| 3995 | 116 if(ap->channels) st->codec->channels = ap->channels; |
| 117 else st->codec->channels = 1; | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
118 av_set_pts_info(st, 64, 1, st->codec->sample_rate); |
| 0 | 119 break; |
| 120 case CODEC_TYPE_VIDEO: | |
|
2860
cf6976fdd05f
Do not force fps unless the user actually specified one.
michael
parents:
2771
diff
changeset
|
121 if(ap->time_base.num) |
|
cf6976fdd05f
Do not force fps unless the user actually specified one.
michael
parents:
2771
diff
changeset
|
122 av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den); |
|
cf6976fdd05f
Do not force fps unless the user actually specified one.
michael
parents:
2771
diff
changeset
|
123 else |
|
cf6976fdd05f
Do not force fps unless the user actually specified one.
michael
parents:
2771
diff
changeset
|
124 av_set_pts_info(st, 64, 1, 25); |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
125 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
|
126 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
|
127 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
|
128 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
|
129 st->codec->pix_fmt= PIX_FMT_YUV420P; |
| 0 | 130 break; |
| 131 default: | |
| 132 return -1; | |
| 133 } | |
| 134 return 0; | |
| 135 } | |
| 136 | |
| 137 #define RAW_PACKET_SIZE 1024 | |
| 138 | |
| 64 | 139 static int raw_read_packet(AVFormatContext *s, AVPacket *pkt) |
| 0 | 140 { |
| 2929 | 141 int ret, size, bps; |
| 28 | 142 // AVStream *st = s->streams[0]; |
| 885 | 143 |
| 0 | 144 size= RAW_PACKET_SIZE; |
| 145 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
146 ret= av_get_packet(s->pb, pkt, size); |
| 0 | 147 |
| 148 pkt->stream_index = 0; | |
| 149 if (ret <= 0) { | |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
150 return AVERROR(EIO); |
| 0 | 151 } |
| 152 /* note: we need to modify the packet size here to handle the last | |
| 153 packet */ | |
| 154 pkt->size = ret; | |
| 2929 | 155 |
| 156 bps= av_get_bits_per_sample(s->streams[0]->codec->codec_id); | |
| 157 assert(bps); // if false there IS a bug elsewhere (NOT in this function) | |
| 158 pkt->dts= | |
| 159 pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels); | |
| 160 | |
| 0 | 161 return ret; |
| 162 } | |
| 163 | |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
164 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
|
165 { |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
166 int ret, size; |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
167 |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
168 size = RAW_PACKET_SIZE; |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
169 |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
170 if (av_new_packet(pkt, size) < 0) |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
171 return AVERROR(EIO); |
| 885 | 172 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
173 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
|
174 pkt->stream_index = 0; |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
175 ret = get_partial_buffer(s->pb, pkt->data, size); |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
176 if (ret <= 0) { |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
177 av_free_packet(pkt); |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
178 return AVERROR(EIO); |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
179 } |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
180 pkt->size = ret; |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
181 return ret; |
|
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
182 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
183 #endif |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
184 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
185 #ifdef CONFIG_RAWVIDEO_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
186 static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt) |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
187 { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
188 int packet_size, ret, width, height; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
189 AVStream *st = s->streams[0]; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
190 |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
191 width = st->codec->width; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
192 height = st->codec->height; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
193 |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
194 packet_size = avpicture_get_size(st->codec->pix_fmt, width, height); |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
195 if (packet_size < 0) |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
196 return -1; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
197 |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
198 ret= av_get_packet(s->pb, pkt, packet_size); |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
199 pkt->pts= |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
200 pkt->dts= pkt->pos / packet_size; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
201 |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
202 pkt->stream_index = 0; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
203 if (ret != packet_size) { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
204 return AVERROR(EIO); |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
205 } else { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
206 return 0; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
207 } |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
208 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
209 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
210 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
211 #ifdef CONFIG_INGENIENT_DEMUXER |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
212 // 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
|
213 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
|
214 { |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
215 int ret, size, w, h, unk1, unk2; |
| 885 | 216 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
217 if (get_le32(s->pb) != MKTAG('M', 'J', 'P', 'G')) |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
218 return AVERROR(EIO); // FIXME |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
219 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
220 size = get_le32(s->pb); |
| 885 | 221 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
222 w = get_le16(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
223 h = get_le16(s->pb); |
| 885 | 224 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
225 url_fskip(s->pb, 8); // zero + size (padded?) |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
226 url_fskip(s->pb, 2); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
227 unk1 = get_le16(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
228 unk2 = get_le16(s->pb); |
| 3725 | 229 url_fskip(s->pb, 22); // ASCII timestamp |
| 885 | 230 |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
231 av_log(NULL, AV_LOG_DEBUG, "Ingenient packet: size=%d, width=%d, height=%d, unk1=%d unk2=%d\n", |
| 887 | 232 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
|
233 |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
234 if (av_new_packet(pkt, size) < 0) |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
235 return AVERROR(EIO); |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
236 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
237 pkt->pos = url_ftell(s->pb); |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
238 pkt->stream_index = 0; |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
239 ret = get_buffer(s->pb, pkt->data, size); |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
240 if (ret <= 0) { |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
241 av_free_packet(pkt); |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
242 return AVERROR(EIO); |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
243 } |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
244 pkt->size = ret; |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
245 return ret; |
|
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
246 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
247 #endif |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
248 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
249 #ifdef CONFIG_DEMUXERS |
| 885 | 250 int pcm_read_seek(AVFormatContext *s, |
| 558 | 251 int stream_index, int64_t timestamp, int flags) |
| 306 | 252 { |
| 253 AVStream *st; | |
| 3613 | 254 int block_align, byte_rate, ret; |
| 306 | 255 int64_t pos; |
| 256 | |
| 257 st = s->streams[0]; | |
|
1399
5a3003271ad8
simplify pcm read seek, use av_get_bits_per_sample
bcoudurier
parents:
1358
diff
changeset
|
258 |
|
5a3003271ad8
simplify pcm read seek, use av_get_bits_per_sample
bcoudurier
parents:
1358
diff
changeset
|
259 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
|
260 (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
|
261 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
|
262 block_align * st->codec->sample_rate; |
| 885 | 263 |
| 306 | 264 if (block_align <= 0 || byte_rate <= 0) |
| 265 return -1; | |
| 266 | |
| 267 /* compute the position by aligning it to block_align */ | |
| 885 | 268 pos = av_rescale_rnd(timestamp * byte_rate, |
| 269 st->time_base.num, | |
| 558 | 270 st->time_base.den * (int64_t)block_align, |
| 271 (flags & AVSEEK_FLAG_BACKWARD) ? AV_ROUND_DOWN : AV_ROUND_UP); | |
| 272 pos *= block_align; | |
| 306 | 273 |
| 274 /* recompute exact position */ | |
| 464 | 275 st->cur_dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num); |
| 3613 | 276 if ((ret = url_fseek(s->pb, pos + s->data_offset, SEEK_SET)) < 0) |
| 277 return ret; | |
| 306 | 278 return 0; |
| 279 } | |
| 280 | |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
281 static int audio_read_header(AVFormatContext *s, |
|
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
282 AVFormatParameters *ap) |
| 63 | 283 { |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
284 AVStream *st = av_new_stream(s, 0); |
|
686
e2687b784c3a
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
637
diff
changeset
|
285 if (!st) |
|
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2231
diff
changeset
|
286 return AVERROR(ENOMEM); |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
287 st->codec->codec_type = CODEC_TYPE_AUDIO; |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
288 st->codec->codec_id = s->iformat->value; |
| 2023 | 289 st->need_parsing = AVSTREAM_PARSE_FULL; |
| 931 | 290 /* the parameters will be extracted from the compressed bitstream */ |
| 291 return 0; | |
| 292 } | |
| 293 | |
| 3725 | 294 /* MPEG-1/H.263 input */ |
| 0 | 295 static int video_read_header(AVFormatContext *s, |
| 296 AVFormatParameters *ap) | |
| 297 { | |
| 298 AVStream *st; | |
| 299 | |
| 300 st = av_new_stream(s, 0); | |
| 301 if (!st) | |
|
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2231
diff
changeset
|
302 return AVERROR(ENOMEM); |
| 0 | 303 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
814
diff
changeset
|
304 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
|
305 st->codec->codec_id = s->iformat->value; |
| 2023 | 306 st->need_parsing = AVSTREAM_PARSE_FULL; |
| 306 | 307 |
| 3725 | 308 /* for MJPEG, specify frame rate */ |
| 309 /* for MPEG-4 specify it, too (most MPEG-4 streams do not have the fixed_vop_rate set ...)*/ | |
| 1003 | 310 if (ap->time_base.num) { |
| 745 | 311 av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den); |
| 885 | 312 } 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
|
313 st->codec->codec_id == CODEC_ID_MPEG4 || |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
314 st->codec->codec_id == CODEC_ID_DIRAC || |
|
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_id == CODEC_ID_H264) { |
| 745 | 316 av_set_pts_info(st, 64, 1, 25); |
| 0 | 317 } |
| 745 | 318 |
| 0 | 319 return 0; |
| 320 } | |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
321 #endif |
| 0 | 322 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
323 #ifdef CONFIG_MPEGVIDEO_DEMUXER |
| 887 | 324 #define SEQ_START_CODE 0x000001b3 |
| 325 #define GOP_START_CODE 0x000001b8 | |
| 326 #define PICTURE_START_CODE 0x00000100 | |
| 924 | 327 #define SLICE_START_CODE 0x00000101 |
| 328 #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
|
329 #define VIDEO_ID 0x000001e0 |
|
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
330 #define AUDIO_ID 0x000001c0 |
| 0 | 331 |
| 332 static int mpegvideo_probe(AVProbeData *p) | |
| 333 { | |
| 924 | 334 uint32_t code= -1; |
|
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
335 int pic=0, seq=0, slice=0, pspack=0, pes=0; |
| 924 | 336 int i; |
| 49 | 337 |
| 924 | 338 for(i=0; i<p->buf_size; i++){ |
| 339 code = (code<<8) + p->buf[i]; | |
| 340 if ((code & 0xffffff00) == 0x100) { | |
| 341 switch(code){ | |
| 342 case SEQ_START_CODE: seq++; break; | |
| 343 case PICTURE_START_CODE: pic++; break; | |
| 344 case SLICE_START_CODE: slice++; break; | |
| 345 case PACK_START_CODE: pspack++; break; | |
| 346 } | |
| 1965 | 347 if ((code & 0x1f0) == VIDEO_ID) pes++; |
| 348 else if((code & 0x1e0) == AUDIO_ID) pes++; | |
| 924 | 349 } |
| 0 | 350 } |
|
985
7f8b1a1ac020
can't have PES headers in MPEG video elementary streams so fail probe
mru
parents:
939
diff
changeset
|
351 if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !pes) |
| 924 | 352 return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg |
| 0 | 353 return 0; |
| 354 } | |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
355 #endif |
| 0 | 356 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
357 #ifdef CONFIG_M4V_DEMUXER |
|
1463
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
358 #define VISUAL_OBJECT_START_CODE 0x000001b5 |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
359 #define VOP_START_CODE 0x000001b6 |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
360 |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
361 static int mpeg4video_probe(AVProbeData *probe_packet) |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
362 { |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
363 uint32_t temp_buffer= -1; |
|
2071
228e5fd9a357
improve mpeg4-es detection by rejecting streams with reserved startcodes (fixes 11-i_need_your_love-daw.mp3 detected as mpeg4)
michael
parents:
2038
diff
changeset
|
364 int VO=0, VOL=0, VOP = 0, VISO = 0, res=0; |
|
1463
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
365 int i; |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
366 |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
367 for(i=0; i<probe_packet->buf_size; i++){ |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
368 temp_buffer = (temp_buffer<<8) + probe_packet->buf[i]; |
|
2231
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
369 if ((temp_buffer & 0xffffff00) != 0x100) |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
370 continue; |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
371 |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
372 if (temp_buffer == VOP_START_CODE) VOP++; |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
373 else if (temp_buffer == VISUAL_OBJECT_START_CODE) VISO++; |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
374 else if (temp_buffer < 0x120) VO++; |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
375 else if (temp_buffer < 0x130) VOL++; |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
376 else if ( !(0x1AF < temp_buffer && temp_buffer < 0x1B7) |
|
7ad682f38b9a
* Getting rid of the use of GCC language extensions
romansh
parents:
2224
diff
changeset
|
377 && !(0x1B9 < temp_buffer && temp_buffer < 0x1C4)) res++; |
|
1463
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
378 } |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
379 |
|
2071
228e5fd9a357
improve mpeg4-es detection by rejecting streams with reserved startcodes (fixes 11-i_need_your_love-daw.mp3 detected as mpeg4)
michael
parents:
2038
diff
changeset
|
380 if ( VOP >= VISO && VOP >= VOL && VO >= VOL && VOL > 0 && res==0) |
|
1463
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
381 return AVPROBE_SCORE_MAX/2; |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
382 return 0; |
|
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
383 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
384 #endif |
|
1463
acf4dbb1a7e6
mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)
michael
parents:
1415
diff
changeset
|
385 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
386 #ifdef CONFIG_H264_DEMUXER |
| 3570 | 387 static int h264_probe(AVProbeData *p) |
| 388 { | |
| 389 uint32_t code= -1; | |
| 3600 | 390 int sps=0, pps=0, idr=0, res=0, sli=0; |
| 3570 | 391 int i; |
| 392 | |
| 393 for(i=0; i<p->buf_size; i++){ | |
| 394 code = (code<<8) + p->buf[i]; | |
| 395 if ((code & 0xffffff00) == 0x100) { | |
| 396 int ref_idc= (code>>5)&3; | |
| 397 int type = code & 0x1F; | |
| 398 static const int8_t ref_zero[32]={ | |
| 399 2, 0, 0, 0, 0,-1, 1,-1, | |
| 400 -1, 1, 1, 1, 1,-1, 2, 2, | |
| 401 2, 2, 2, 0, 2, 2, 2, 2, | |
| 402 2, 2, 2, 2, 2, 2, 2, 2 | |
| 403 }; | |
| 404 | |
| 405 if(code & 0x80) //forbidden bit | |
| 406 return 0; | |
| 407 | |
| 408 if(ref_zero[type] == 1 && ref_idc) | |
| 409 return 0; | |
| 410 if(ref_zero[type] ==-1 && !ref_idc) | |
| 411 return 0; | |
| 412 if(ref_zero[type] == 2) | |
| 413 res++; | |
| 414 | |
| 415 switch(type){ | |
| 3600 | 416 case 1: sli++; break; |
| 3570 | 417 case 5: idr++; break; |
| 418 case 7: | |
| 419 if(p->buf[i+2]&0x0F) | |
| 420 return 0; | |
| 421 sps++; | |
| 422 break; | |
| 423 case 8: pps++; break; | |
| 424 } | |
| 425 } | |
| 426 } | |
| 3600 | 427 if(sps && pps && (idr||sli>3) && res<(sps+pps+idr)) |
| 3570 | 428 return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg |
| 429 return 0; | |
| 430 } | |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
431 #endif |
| 3570 | 432 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
433 #ifdef CONFIG_H263_DEMUXER |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
434 static int h263_probe(AVProbeData *p) |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
435 { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
436 int code; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
437 const uint8_t *d; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
438 |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
439 d = p->buf; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
440 code = (d[0] << 14) | (d[1] << 6) | (d[2] >> 2); |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
441 if (code == 0x20) { |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
442 return 50; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
443 } |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
444 return 0; |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
445 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
446 #endif |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
447 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
448 #ifdef CONFIG_H261_DEMUXER |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
449 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
|
450 { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
451 int code; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
452 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
|
453 |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
454 d = p->buf; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
455 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
|
456 if (code == 0x10) { |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
457 return 50; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
458 } |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
459 return 0; |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
460 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
461 #endif |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
462 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
463 #ifdef CONFIG_DTS_DEMUXER |
| 3274 | 464 #define DCA_MARKER_14B_BE 0x1FFFE800 |
| 465 #define DCA_MARKER_14B_LE 0xFF1F00E8 | |
| 466 #define DCA_MARKER_RAW_BE 0x7FFE8001 | |
| 467 #define DCA_MARKER_RAW_LE 0xFE7F0180 | |
| 468 static int dts_probe(AVProbeData *p) | |
| 469 { | |
| 470 const uint8_t *buf, *bufp; | |
| 471 uint32_t state = -1; | |
| 472 | |
| 473 buf = p->buf; | |
| 474 | |
| 475 for(; buf < (p->buf+p->buf_size)-2; buf+=2) { | |
| 476 bufp = buf; | |
| 477 state = (state << 16) | bytestream_get_be16(&bufp); | |
| 478 | |
| 3725 | 479 /* regular bitstream */ |
| 3274 | 480 if (state == DCA_MARKER_RAW_BE || state == DCA_MARKER_RAW_LE) |
| 481 return AVPROBE_SCORE_MAX/2+1; | |
| 482 | |
| 3725 | 483 /* 14 bits big-endian bitstream */ |
| 3274 | 484 if (state == DCA_MARKER_14B_BE) |
| 485 if ((bytestream_get_be16(&bufp) & 0xFFF0) == 0x07F0) | |
| 486 return AVPROBE_SCORE_MAX/2+1; | |
| 487 | |
| 3725 | 488 /* 14 bits little-endian bitstream */ |
| 3274 | 489 if (state == DCA_MARKER_14B_LE) |
| 490 if ((bytestream_get_be16(&bufp) & 0xF0FF) == 0xF007) | |
| 491 return AVPROBE_SCORE_MAX/2+1; | |
| 492 } | |
| 493 | |
| 494 return 0; | |
| 495 } | |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
496 #endif |
| 3274 | 497 |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
498 #ifdef CONFIG_DIRAC_DEMUXER |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
499 static int dirac_probe(AVProbeData *p) |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
500 { |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
501 if (AV_RL32(p->buf) == MKTAG('B', 'B', 'C', 'D')) |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
502 return AVPROBE_SCORE_MAX; |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
503 else |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
504 return 0; |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
505 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
506 #endif |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
507 |
|
3866
f55b5e474321
change back to using CONFIG_*_DEMUXER for ac3_eac3_probe(), but use it
jbr
parents:
3864
diff
changeset
|
508 #if defined(CONFIG_AC3_DEMUXER) || defined(CONFIG_EAC3_DEMUXER) |
|
3864
b31edc09d556
simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.
jbr
parents:
3863
diff
changeset
|
509 static int ac3_eac3_probe(AVProbeData *p, enum CodecID expected_codec_id) |
| 1768 | 510 { |
| 2224 | 511 int max_frames, first_frames = 0, frames; |
| 1931 | 512 uint8_t *buf, *buf2, *end; |
| 513 AC3HeaderInfo hdr; | |
|
3238
db733a434b2c
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
3237
diff
changeset
|
514 GetBitContext gbc; |
|
3864
b31edc09d556
simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.
jbr
parents:
3863
diff
changeset
|
515 enum CodecID codec_id = CODEC_ID_AC3; |
| 1768 | 516 |
| 1931 | 517 max_frames = 0; |
| 518 buf = p->buf; | |
|
2304
763527841a80
additional tweaks to AC3 probe function. give a higher score to a single frame
jbr
parents:
2303
diff
changeset
|
519 end = buf + p->buf_size; |
| 1931 | 520 |
| 521 for(; buf < end; buf++) { | |
| 522 buf2 = buf; | |
| 523 | |
| 524 for(frames = 0; buf2 < end; frames++) { | |
|
3238
db733a434b2c
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
3237
diff
changeset
|
525 init_get_bits(&gbc, buf2, 54); |
|
db733a434b2c
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
3237
diff
changeset
|
526 if(ff_ac3_parse_header(&gbc, &hdr) < 0) |
| 1931 | 527 break; |
|
3237
4fa7ec10b57e
Compute AC3 frame CRC for stronger raw AC3 format probing.
andoma
parents:
3235
diff
changeset
|
528 if(buf2 + hdr.frame_size > end || |
|
4fa7ec10b57e
Compute AC3 frame CRC for stronger raw AC3 format probing.
andoma
parents:
3235
diff
changeset
|
529 av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, hdr.frame_size - 2)) |
|
4fa7ec10b57e
Compute AC3 frame CRC for stronger raw AC3 format probing.
andoma
parents:
3235
diff
changeset
|
530 break; |
| 3862 | 531 if (hdr.bitstream_id > 10) |
|
3864
b31edc09d556
simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.
jbr
parents:
3863
diff
changeset
|
532 codec_id = CODEC_ID_EAC3; |
| 1931 | 533 buf2 += hdr.frame_size; |
| 534 } | |
| 535 max_frames = FFMAX(max_frames, frames); | |
| 536 if(buf == p->buf) | |
| 537 first_frames = frames; | |
| 1768 | 538 } |
|
3864
b31edc09d556
simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.
jbr
parents:
3863
diff
changeset
|
539 if(codec_id != expected_codec_id) return 0; |
| 1931 | 540 if (first_frames>=3) return AVPROBE_SCORE_MAX * 3 / 4; |
|
2313
7f6e22803038
10l to me. Revert recent changes to ac3_probe() which made misdetection as AC3 too probable.
jbr
parents:
2305
diff
changeset
|
541 else if(max_frames>=3) return AVPROBE_SCORE_MAX / 2; |
| 1931 | 542 else if(max_frames>=1) return 1; |
| 543 else return 0; | |
| 1768 | 544 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
545 #endif |
| 1768 | 546 |
| 3862 | 547 #ifdef CONFIG_AC3_DEMUXER |
| 548 static int ac3_probe(AVProbeData *p) | |
| 549 { | |
|
3864
b31edc09d556
simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.
jbr
parents:
3863
diff
changeset
|
550 return ac3_eac3_probe(p, CODEC_ID_AC3); |
| 3862 | 551 } |
| 552 #endif | |
| 553 | |
| 554 #ifdef CONFIG_EAC3_DEMUXER | |
| 555 static int eac3_probe(AVProbeData *p) | |
| 556 { | |
|
3864
b31edc09d556
simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.
jbr
parents:
3863
diff
changeset
|
557 return ac3_eac3_probe(p, CODEC_ID_EAC3); |
| 3862 | 558 } |
| 559 #endif | |
| 560 | |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
561 #ifdef CONFIG_FLAC_DEMUXER |
| 2365 | 562 static int flac_probe(AVProbeData *p) |
| 563 { | |
| 564 if(memcmp(p->buf, "fLaC", 4)) return 0; | |
| 2368 | 565 else return AVPROBE_SCORE_MAX / 2; |
| 2365 | 566 } |
|
3730
ee001685e4e5
Surround format-specific functions with matching preprocessor conditionals.
diego
parents:
3729
diff
changeset
|
567 #endif |
| 2365 | 568 |
|
3545
2949f7da8931
Add a note to remind people to add new raw formats to the Makefile.
diego
parents:
3543
diff
changeset
|
569 |
|
2949f7da8931
Add a note to remind people to add new raw formats to the Makefile.
diego
parents:
3543
diff
changeset
|
570 /* Note: Do not forget to add new entries to the Makefile as well. */ |
|
2949f7da8931
Add a note to remind people to add new raw formats to the Makefile.
diego
parents:
3543
diff
changeset
|
571 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
572 #ifdef CONFIG_AAC_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
573 AVInputFormat aac_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
574 "aac", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
575 NULL_IF_CONFIG_SMALL("ADTS AAC"), |
| 3405 | 576 0, |
| 577 NULL, | |
| 578 audio_read_header, | |
| 579 raw_read_partial_packet, | |
| 580 .flags= AVFMT_GENERIC_INDEX, | |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
581 .extensions = "aac", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
582 .value = CODEC_ID_AAC, |
|
1070
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
583 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
584 #endif |
|
1070
26d75e74c7b7
Add support for raw flac decoding based on the .flac suffix of input files.
banan
parents:
1003
diff
changeset
|
585 |
|
2022
4f62a7d9381a
Make the declaration of AVInputFormat ac3_demuxer conditional
diego
parents:
2021
diff
changeset
|
586 #ifdef CONFIG_AC3_DEMUXER |
| 1167 | 587 AVInputFormat ac3_demuxer = { |
| 0 | 588 "ac3", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
589 NULL_IF_CONFIG_SMALL("raw AC-3"), |
| 0 | 590 0, |
| 1768 | 591 ac3_probe, |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
592 audio_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
593 raw_read_partial_packet, |
| 1756 | 594 .flags= AVFMT_GENERIC_INDEX, |
| 0 | 595 .extensions = "ac3", |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
596 .value = CODEC_ID_AC3, |
| 0 | 597 }; |
|
2022
4f62a7d9381a
Make the declaration of AVInputFormat ac3_demuxer conditional
diego
parents:
2021
diff
changeset
|
598 #endif |
| 0 | 599 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
600 #ifdef CONFIG_AC3_MUXER |
| 1167 | 601 AVOutputFormat ac3_muxer = { |
| 0 | 602 "ac3", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
603 NULL_IF_CONFIG_SMALL("raw AC-3"), |
| 885 | 604 "audio/x-ac3", |
| 0 | 605 "ac3", |
| 606 0, | |
| 607 CODEC_ID_AC3, | |
| 3289 | 608 CODEC_ID_NONE, |
| 2305 | 609 NULL, |
| 0 | 610 raw_write_packet, |
|
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
|
611 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 612 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
613 #endif |
| 0 | 614 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
615 #ifdef CONFIG_DIRAC_DEMUXER |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
616 AVInputFormat dirac_demuxer = { |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
617 "dirac", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
618 NULL_IF_CONFIG_SMALL("raw Dirac"), |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
619 0, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
620 dirac_probe, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
621 video_read_header, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
622 raw_read_partial_packet, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
623 .flags= AVFMT_GENERIC_INDEX, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
624 .value = CODEC_ID_DIRAC, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
625 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
626 #endif |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
627 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
628 #ifdef CONFIG_DIRAC_MUXER |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
629 AVOutputFormat dirac_muxer = { |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
630 "dirac", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
631 NULL_IF_CONFIG_SMALL("raw Dirac"), |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
632 NULL, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
633 "drc", |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
634 0, |
| 3289 | 635 CODEC_ID_NONE, |
|
3272
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
636 CODEC_ID_DIRAC, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
637 NULL, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
638 raw_write_packet, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
639 .flags= AVFMT_NOTIMESTAMPS, |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
640 }; |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
641 #endif |
|
07038dc492ab
Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,
lu_zero
parents:
3269
diff
changeset
|
642 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
643 #ifdef CONFIG_DTS_DEMUXER |
| 1167 | 644 AVInputFormat dts_demuxer = { |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
645 "dts", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
646 NULL_IF_CONFIG_SMALL("raw DTS"), |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
647 0, |
| 3274 | 648 dts_probe, |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
649 audio_read_header, |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
650 raw_read_partial_packet, |
| 1756 | 651 .flags= AVFMT_GENERIC_INDEX, |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
652 .extensions = "dts", |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
653 .value = CODEC_ID_DTS, |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
654 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
655 #endif |
|
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
483
diff
changeset
|
656 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
657 #ifdef CONFIG_DTS_MUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
658 AVOutputFormat dts_muxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
659 "dts", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
660 NULL_IF_CONFIG_SMALL("raw DTS"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
661 "audio/x-dca", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
662 "dts", |
| 931 | 663 0, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
664 CODEC_ID_DTS, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
665 CODEC_ID_NONE, |
| 931 | 666 NULL, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
667 raw_write_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
668 .flags= AVFMT_NOTIMESTAMPS, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
669 }; |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
670 #endif |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
671 |
| 3862 | 672 #ifdef CONFIG_EAC3_DEMUXER |
| 673 AVInputFormat eac3_demuxer = { | |
| 674 "eac3", | |
| 675 NULL_IF_CONFIG_SMALL("raw E-AC-3"), | |
| 676 0, | |
| 677 eac3_probe, | |
| 678 audio_read_header, | |
| 679 raw_read_partial_packet, | |
| 680 .flags= AVFMT_GENERIC_INDEX, | |
| 681 .extensions = "eac3", | |
| 682 .value = CODEC_ID_EAC3, | |
| 683 }; | |
| 684 #endif | |
| 685 | |
| 686 #ifdef CONFIG_EAC3_MUXER | |
| 687 AVOutputFormat eac3_muxer = { | |
| 688 "eac3", | |
| 689 NULL_IF_CONFIG_SMALL("raw E-AC-3"), | |
| 690 "audio/x-eac3", | |
| 691 "eac3", | |
| 692 0, | |
| 693 CODEC_ID_EAC3, | |
| 694 CODEC_ID_NONE, | |
| 695 NULL, | |
| 696 raw_write_packet, | |
| 697 .flags= AVFMT_NOTIMESTAMPS, | |
| 698 }; | |
| 699 #endif | |
| 700 | |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
701 #ifdef CONFIG_FLAC_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
702 AVInputFormat flac_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
703 "flac", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
704 NULL_IF_CONFIG_SMALL("raw FLAC"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
705 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
706 flac_probe, |
|
3268
319c36da904b
set demuxers .value and use common audio_read_header function
bcoudurier
parents:
3238
diff
changeset
|
707 audio_read_header, |
| 931 | 708 raw_read_partial_packet, |
| 1756 | 709 .flags= AVFMT_GENERIC_INDEX, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
710 .extensions = "flac", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
711 .value = CODEC_ID_FLAC, |
| 931 | 712 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
713 #endif |
| 931 | 714 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
715 #ifdef CONFIG_FLAC_MUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
716 AVOutputFormat flac_muxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
717 "flac", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
718 NULL_IF_CONFIG_SMALL("raw FLAC"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
719 "audio/x-flac", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
720 "flac", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
721 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
722 CODEC_ID_FLAC, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
723 CODEC_ID_NONE, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
724 flac_write_header, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
725 raw_write_packet, |
| 3926 | 726 flac_write_trailer, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
727 .flags= AVFMT_NOTIMESTAMPS, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
728 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
729 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
730 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
731 #ifdef CONFIG_GSM_DEMUXER |
|
3269
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
732 AVInputFormat gsm_demuxer = { |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
733 "gsm", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
734 NULL_IF_CONFIG_SMALL("GSM"), |
|
3269
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
735 0, |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
736 NULL, |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
737 audio_read_header, |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
738 raw_read_partial_packet, |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
739 .flags= AVFMT_GENERIC_INDEX, |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
740 .extensions = "gsm", |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
741 .value = CODEC_ID_GSM, |
|
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
742 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
743 #endif |
|
3269
55d4f01c9728
raw GSM demuxer (does not work yet as parser is missing)
michael
parents:
3268
diff
changeset
|
744 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
745 #ifdef CONFIG_H261_DEMUXER |
| 1167 | 746 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
|
747 "h261", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
748 NULL_IF_CONFIG_SMALL("raw H.261"), |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
749 0, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
750 h261_probe, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
751 video_read_header, |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
752 raw_read_partial_packet, |
| 1756 | 753 .flags= AVFMT_GENERIC_INDEX, |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
754 .extensions = "h261", |
|
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
755 .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
|
756 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
757 #endif |
|
473
e0a66a870b7f
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
468
diff
changeset
|
758 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
759 #ifdef CONFIG_H261_MUXER |
| 1167 | 760 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
|
761 "h261", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
762 NULL_IF_CONFIG_SMALL("raw H.261"), |
|
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
763 "video/x-h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
764 "h261", |
|
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
765 0, |
| 3289 | 766 CODEC_ID_NONE, |
|
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
767 CODEC_ID_H261, |
| 2305 | 768 NULL, |
|
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
769 raw_write_packet, |
|
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
|
770 .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
|
771 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
772 #endif |
|
576
f701ba509d0c
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
567
diff
changeset
|
773 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
774 #ifdef CONFIG_H263_DEMUXER |
| 1167 | 775 AVInputFormat h263_demuxer = { |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
776 "h263", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
777 NULL_IF_CONFIG_SMALL("raw H.263"), |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
778 0, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
779 h263_probe, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
780 video_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
781 raw_read_partial_packet, |
| 1756 | 782 .flags= AVFMT_GENERIC_INDEX, |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
783 // .extensions = "h263", //FIXME remove after writing mpeg4_probe |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
784 .value = CODEC_ID_H263, |
|
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
785 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
786 #endif |
|
135
56590088f801
truncated h263 decoding support / H263-ES "demuxer"
michaelni
parents:
128
diff
changeset
|
787 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
788 #ifdef CONFIG_H263_MUXER |
| 1167 | 789 AVOutputFormat h263_muxer = { |
| 0 | 790 "h263", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
791 NULL_IF_CONFIG_SMALL("raw H.263"), |
| 0 | 792 "video/x-h263", |
| 793 "h263", | |
| 794 0, | |
| 3289 | 795 CODEC_ID_NONE, |
| 0 | 796 CODEC_ID_H263, |
| 2305 | 797 NULL, |
| 0 | 798 raw_write_packet, |
|
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
|
799 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 800 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
801 #endif |
| 0 | 802 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
803 #ifdef CONFIG_H264_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
804 AVInputFormat h264_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
805 "h264", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
806 NULL_IF_CONFIG_SMALL("raw H.264 video format"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
807 0, |
| 3570 | 808 h264_probe, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
809 video_read_header, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
810 raw_read_partial_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
811 .flags= AVFMT_GENERIC_INDEX, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
812 .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
813 .value = CODEC_ID_H264, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
814 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
815 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
816 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
817 #ifdef CONFIG_H264_MUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
818 AVOutputFormat h264_muxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
819 "h264", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
820 NULL_IF_CONFIG_SMALL("raw H.264 video format"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
821 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
822 "h264", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
823 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
824 CODEC_ID_NONE, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
825 CODEC_ID_H264, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
826 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
827 raw_write_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
828 .flags= AVFMT_NOTIMESTAMPS, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
829 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
830 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
831 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
832 #ifdef CONFIG_INGENIENT_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
833 AVInputFormat ingenient_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
834 "ingenient", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
835 NULL_IF_CONFIG_SMALL("Ingenient MJPEG"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
836 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
837 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
838 video_read_header, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
839 ingenient_read_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
840 .flags= AVFMT_GENERIC_INDEX, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
841 .extensions = "cgi", // FIXME |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
842 .value = CODEC_ID_MJPEG, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
843 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
844 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
845 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
846 #ifdef CONFIG_M4V_DEMUXER |
| 1167 | 847 AVInputFormat m4v_demuxer = { |
| 0 | 848 "m4v", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
849 NULL_IF_CONFIG_SMALL("raw MPEG-4 video format"), |
| 0 | 850 0, |
| 3725 | 851 mpeg4video_probe, /** probing for MPEG-4 data */ |
| 0 | 852 video_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
853 raw_read_partial_packet, |
| 1756 | 854 .flags= AVFMT_GENERIC_INDEX, |
| 0 | 855 .extensions = "m4v", //FIXME remove after writing mpeg4_probe |
| 856 .value = CODEC_ID_MPEG4, | |
| 857 }; | |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
858 #endif |
| 0 | 859 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
860 #ifdef CONFIG_M4V_MUXER |
| 1167 | 861 AVOutputFormat m4v_muxer = { |
| 0 | 862 "m4v", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
863 NULL_IF_CONFIG_SMALL("raw MPEG-4 video format"), |
| 0 | 864 NULL, |
| 865 "m4v", | |
| 866 0, | |
| 867 CODEC_ID_NONE, | |
| 868 CODEC_ID_MPEG4, | |
| 2305 | 869 NULL, |
| 0 | 870 raw_write_packet, |
|
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
|
871 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 872 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
873 #endif |
| 0 | 874 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
875 #ifdef CONFIG_MJPEG_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
876 AVInputFormat mjpeg_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
877 "mjpeg", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
878 NULL_IF_CONFIG_SMALL("MJPEG video"), |
| 100 | 879 0, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
880 NULL, |
| 100 | 881 video_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
882 raw_read_partial_packet, |
| 1756 | 883 .flags= AVFMT_GENERIC_INDEX, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
884 .extensions = "mjpg,mjpeg", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
885 .value = CODEC_ID_MJPEG, |
| 100 | 886 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
887 #endif |
| 100 | 888 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
889 #ifdef CONFIG_MJPEG_MUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
890 AVOutputFormat mjpeg_muxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
891 "mjpeg", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
892 NULL_IF_CONFIG_SMALL("MJPEG video"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
893 "video/x-mjpeg", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
894 "mjpg,mjpeg", |
| 100 | 895 0, |
| 896 CODEC_ID_NONE, | |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
897 CODEC_ID_MJPEG, |
| 2305 | 898 NULL, |
| 100 | 899 raw_write_packet, |
|
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
|
900 .flags= AVFMT_NOTIMESTAMPS, |
| 100 | 901 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
902 #endif |
| 100 | 903 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
904 #ifdef CONFIG_MLP_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
905 AVInputFormat mlp_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
906 "mlp", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
907 NULL_IF_CONFIG_SMALL("raw MLP"), |
| 0 | 908 0, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
909 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
910 audio_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
911 raw_read_partial_packet, |
| 1756 | 912 .flags= AVFMT_GENERIC_INDEX, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
913 .extensions = "mlp", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
914 .value = CODEC_ID_MLP, |
| 0 | 915 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
916 #endif |
| 0 | 917 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
918 #ifdef CONFIG_MPEG1VIDEO_MUXER |
| 1167 | 919 AVOutputFormat mpeg1video_muxer = { |
| 0 | 920 "mpeg1video", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
921 NULL_IF_CONFIG_SMALL("MPEG video"), |
| 0 | 922 "video/x-mpeg", |
| 814 | 923 "mpg,mpeg,m1v", |
| 0 | 924 0, |
| 3289 | 925 CODEC_ID_NONE, |
| 0 | 926 CODEC_ID_MPEG1VIDEO, |
| 2305 | 927 NULL, |
| 0 | 928 raw_write_packet, |
|
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
|
929 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 930 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
931 #endif |
| 0 | 932 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
933 #ifdef CONFIG_MPEG2VIDEO_MUXER |
| 1167 | 934 AVOutputFormat mpeg2video_muxer = { |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
935 "mpeg2video", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
936 NULL_IF_CONFIG_SMALL("MPEG-2 video"), |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
937 NULL, |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
938 "m2v", |
|
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
939 0, |
| 3289 | 940 CODEC_ID_NONE, |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
941 CODEC_ID_MPEG2VIDEO, |
| 2305 | 942 NULL, |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
943 raw_write_packet, |
|
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
|
944 .flags= AVFMT_NOTIMESTAMPS, |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
945 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
946 #endif |
|
637
76e36d97a27a
Patch for creating m2v files by (Fabrizio Gennari <fabrizio.ge tiscali it)
michael
parents:
576
diff
changeset
|
947 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
948 #ifdef CONFIG_MPEGVIDEO_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
949 AVInputFormat mpegvideo_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
950 "mpegvideo", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
951 NULL_IF_CONFIG_SMALL("MPEG video"), |
| 0 | 952 0, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
953 mpegvideo_probe, |
| 0 | 954 video_read_header, |
|
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
306
diff
changeset
|
955 raw_read_partial_packet, |
| 1756 | 956 .flags= AVFMT_GENERIC_INDEX, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
957 .value = CODEC_ID_MPEG1VIDEO, |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
958 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
959 #endif |
|
868
c6b1dde68f3a
Ingenient MJPEG support, more at http://www.artificis.hu/files/texts/ingenient.txt
alex
parents:
858
diff
changeset
|
960 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
961 #ifdef CONFIG_NULL_MUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
962 AVOutputFormat null_muxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
963 "null", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
964 NULL_IF_CONFIG_SMALL("null video format"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
965 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
966 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
967 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
968 #ifdef WORDS_BIGENDIAN |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
969 CODEC_ID_PCM_S16BE, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
970 #else |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
971 CODEC_ID_PCM_S16LE, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
972 #endif |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
973 CODEC_ID_RAWVIDEO, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
974 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
975 null_write_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
976 .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE | AVFMT_NOTIMESTAMPS, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
977 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
978 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
979 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
980 #ifdef CONFIG_RAWVIDEO_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
981 AVInputFormat rawvideo_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
982 "rawvideo", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
983 NULL_IF_CONFIG_SMALL("raw video format"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
984 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
985 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
986 raw_read_header, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
987 rawvideo_read_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
988 .flags= AVFMT_GENERIC_INDEX, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
989 .extensions = "yuv,cif,qcif,rgb", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
990 .value = CODEC_ID_RAWVIDEO, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
991 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
992 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
993 |
|
3727
9a307cfd59a3
Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormat
diego
parents:
3726
diff
changeset
|
994 #ifdef CONFIG_RAWVIDEO_MUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
995 AVOutputFormat rawvideo_muxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
996 "rawvideo", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
997 NULL_IF_CONFIG_SMALL("raw video format"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
998 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
999 "yuv,rgb", |
| 0 | 1000 0, |
| 3289 | 1001 CODEC_ID_NONE, |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1002 CODEC_ID_RAWVIDEO, |
| 2305 | 1003 NULL, |
| 0 | 1004 raw_write_packet, |
|
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
|
1005 .flags= AVFMT_NOTIMESTAMPS, |
| 0 | 1006 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
1007 #endif |
| 0 | 1008 |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1009 #ifdef CONFIG_ROQ_MUXER |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1010 AVOutputFormat roq_muxer = |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1011 { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1012 "RoQ", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1013 NULL_IF_CONFIG_SMALL("id RoQ format"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1014 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1015 "roq", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1016 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1017 CODEC_ID_ROQ_DPCM, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1018 CODEC_ID_ROQ, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1019 roq_write_header, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1020 raw_write_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1021 }; |
|
3726
514470f7afed
cosmetics: Remove redundant #endif comments that are very close to the #ifdef
diego
parents:
3725
diff
changeset
|
1022 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1023 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
1024 #ifdef CONFIG_SHORTEN_DEMUXER |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1025 AVInputFormat shorten_demuxer = { |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1026 "shn", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1027 NULL_IF_CONFIG_SMALL("raw Shorten"), |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1028 0, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1029 NULL, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1030 audio_read_header, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1031 raw_read_partial_packet, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1032 .flags= AVFMT_GENERIC_INDEX, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1033 .extensions = "shn", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1034 .value = CODEC_ID_SHORTEN, |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1035 }; |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
1036 #endif |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1037 |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
1038 #ifdef CONFIG_VC1_DEMUXER |
| 1773 | 1039 AVInputFormat vc1_demuxer = { |
| 1040 "vc1", | |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
1041 NULL_IF_CONFIG_SMALL("raw VC-1"), |
| 1773 | 1042 0, |
| 1043 NULL /* vc1_probe */, | |
| 1044 video_read_header, | |
| 1045 raw_read_partial_packet, | |
| 1046 .extensions = "vc1", | |
| 1047 .value = CODEC_ID_VC1, | |
| 1048 }; | |
|
3729
ed875181c3fa
Surround AVInputFormat declarations with format-specific #ifdefs.
diego
parents:
3728
diff
changeset
|
1049 #endif |
| 1773 | 1050 |
| 3725 | 1051 /* PCM formats */ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1052 |
| 306 | 1053 #define PCMINPUTDEF(name, long_name, ext, codec) \ |
| 1167 | 1054 AVInputFormat pcm_ ## name ## _demuxer = {\ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1055 #name,\ |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
1056 NULL_IF_CONFIG_SMALL(long_name),\ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1057 0,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1058 NULL,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1059 raw_read_header,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1060 raw_read_packet,\ |
| 3484 | 1061 NULL,\ |
| 306 | 1062 pcm_read_seek,\ |
| 1756 | 1063 .flags= AVFMT_GENERIC_INDEX,\ |
|
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1064 .extensions = ext,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1065 .value = codec,\ |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1066 }; |
|
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
1067 |
|
1121
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1068 #define PCMOUTPUTDEF(name, long_name, ext, codec) \ |
| 1167 | 1069 AVOutputFormat pcm_ ## name ## _muxer = {\ |
| 0 | 1070 #name,\ |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3405
diff
changeset
|
1071 NULL_IF_CONFIG_SMALL(long_name),\ |
| 0 | 1072 NULL,\ |
| 1073 ext,\ | |
| 1074 0,\ | |
| 1075 codec,\ | |
| 3289 | 1076 CODEC_ID_NONE,\ |
| 2305 | 1077 NULL,\ |
| 0 | 1078 raw_write_packet,\ |
|
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
|
1079 .flags= AVFMT_NOTIMESTAMPS,\ |
| 0 | 1080 }; |
|
1121
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1081 |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1082 |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1083 #if !defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1084 #define PCMDEF(name, long_name, ext, codec) \ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1085 PCMINPUTDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1086 #elif defined(CONFIG_MUXERS) && !defined(CONFIG_DEMUXERS) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1087 #define PCMDEF(name, long_name, ext, codec) \ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1088 PCMOUTPUTDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1089 #elif defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1090 #define PCMDEF(name, long_name, ext, codec) \ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1091 PCMINPUTDEF(name, long_name, ext, codec)\ |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1092 PCMOUTPUTDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1093 #else |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1094 #define PCMDEF(name, long_name, ext, codec) |
|
787a70a8b867
Fix compilation with all combinations of --disable-(de)muxers.
diego
parents:
1078
diff
changeset
|
1095 #endif |
| 0 | 1096 |
| 1097 #ifdef WORDS_BIGENDIAN | |
| 1098 #define BE_DEF(s) s | |
| 1099 #define LE_DEF(s) NULL | |
| 1100 #else | |
| 1101 #define BE_DEF(s) NULL | |
| 1102 #define LE_DEF(s) s | |
| 1103 #endif | |
| 1104 | |
|
3757
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1105 PCMDEF(f64be, "PCM 64 bit floating-point big-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1106 NULL, CODEC_ID_PCM_F64BE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1107 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1108 PCMDEF(f64le, "PCM 64 bit floating-point little-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1109 NULL, CODEC_ID_PCM_F64LE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1110 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1111 PCMDEF(f32be, "PCM 32 bit floating-point big-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1112 NULL, CODEC_ID_PCM_F32BE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1113 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1114 PCMDEF(f32le, "PCM 32 bit floating-point little-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1115 NULL, CODEC_ID_PCM_F32LE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1116 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1117 PCMDEF(s32be, "PCM signed 32 bit big-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1118 NULL, CODEC_ID_PCM_S32BE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1119 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1120 PCMDEF(s32le, "PCM signed 32 bit little-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1121 NULL, CODEC_ID_PCM_S32LE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1122 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1123 PCMDEF(s24be, "PCM signed 24 bit big-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1124 NULL, CODEC_ID_PCM_S24BE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1125 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1126 PCMDEF(s24le, "PCM signed 24 bit little-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1127 NULL, CODEC_ID_PCM_S24LE) |
| 0 | 1128 |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1129 PCMDEF(s16be, "PCM signed 16 bit big-endian format", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1130 BE_DEF("sw"), CODEC_ID_PCM_S16BE) |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1131 |
| 3543 | 1132 PCMDEF(s16le, "PCM signed 16 bit little-endian format", |
| 0 | 1133 LE_DEF("sw"), CODEC_ID_PCM_S16LE) |
| 1134 | |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1135 PCMDEF(s8, "PCM signed 8 bit format", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1136 "sb", CODEC_ID_PCM_S8) |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1137 |
|
3757
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1138 PCMDEF(u32be, "PCM unsigned 32 bit big-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1139 NULL, CODEC_ID_PCM_U32BE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1140 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1141 PCMDEF(u32le, "PCM unsigned 32 bit little-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1142 NULL, CODEC_ID_PCM_U32LE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1143 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1144 PCMDEF(u24be, "PCM unsigned 24 bit big-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1145 NULL, CODEC_ID_PCM_U24BE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1146 |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1147 PCMDEF(u24le, "PCM unsigned 24 bit little-endian format", |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1148 NULL, CODEC_ID_PCM_U24LE) |
|
7ab85dd1ef03
Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.
pross
parents:
3730
diff
changeset
|
1149 |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1150 PCMDEF(u16be, "PCM unsigned 16 bit big-endian format", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1151 BE_DEF("uw"), CODEC_ID_PCM_U16BE) |
| 0 | 1152 |
| 3543 | 1153 PCMDEF(u16le, "PCM unsigned 16 bit little-endian format", |
| 0 | 1154 LE_DEF("uw"), CODEC_ID_PCM_U16LE) |
| 1155 | |
| 3543 | 1156 PCMDEF(u8, "PCM unsigned 8 bit format", |
| 0 | 1157 "ub", CODEC_ID_PCM_U8) |
| 1158 | |
| 3543 | 1159 PCMDEF(alaw, "PCM A-law format", |
| 0 | 1160 "al", CODEC_ID_PCM_ALAW) |
| 1161 | |
|
3546
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1162 PCMDEF(mulaw, "PCM mu-law format", |
|
45c3d2b2b2fb
Alphabetically order AVInputFormat/AVOutputFormat declarations.
diego
parents:
3545
diff
changeset
|
1163 "ul", CODEC_ID_PCM_MULAW) |
