Mercurial > libavformat.hg
annotate img2.c @ 4068:d8ef0a1e3f45 libavformat
Remove static variable and a printf using it. See "[PATCH] asf.c: move
packet_time_start=0 statement" thread on ML.
author | rbultje |
---|---|
date | Sat, 06 Dec 2008 20:28:38 +0000 |
parents | 4c641d9f02ea |
children | a2cc7cc40810 |
rev | line source |
---|---|
497 | 1 /* |
2 * Image format | |
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard. | |
4 * Copyright (c) 2004 Michael Niedermayer | |
5 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
6 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
7 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
497 | 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:
1291
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
497 | 12 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
497 | 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:
1291
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:
885
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
497 | 21 */ |
3286 | 22 |
23 #include "libavutil/avstring.h" | |
497 | 24 #include "avformat.h" |
3288 | 25 #include <strings.h> |
497 | 26 |
27 typedef struct { | |
28 int img_first; | |
29 int img_last; | |
30 int img_number; | |
31 int img_count; | |
32 int is_pipe; | |
33 char path[1024]; | |
34 } VideoData; | |
35 | |
36 typedef struct { | |
37 enum CodecID id; | |
38 const char *str; | |
39 } IdStrMap; | |
40 | |
41 static const IdStrMap img_tags[] = { | |
42 { CODEC_ID_MJPEG , "jpeg"}, | |
43 { CODEC_ID_MJPEG , "jpg"}, | |
44 { CODEC_ID_LJPEG , "ljpg"}, | |
581 | 45 { CODEC_ID_PNG , "png"}, |
3080 | 46 { CODEC_ID_PNG , "mng"}, |
583 | 47 { CODEC_ID_PPM , "ppm"}, |
4064 | 48 { CODEC_ID_PPM , "pnm"}, |
583 | 49 { CODEC_ID_PGM , "pgm"}, |
50 { CODEC_ID_PGMYUV , "pgmyuv"}, | |
51 { CODEC_ID_PBM , "pbm"}, | |
52 { CODEC_ID_PAM , "pam"}, | |
497 | 53 { CODEC_ID_MPEG1VIDEO, "mpg1-img"}, |
54 { CODEC_ID_MPEG2VIDEO, "mpg2-img"}, | |
55 { CODEC_ID_MPEG4 , "mpg4-img"}, | |
56 { CODEC_ID_FFV1 , "ffv1-img"}, | |
635 | 57 { CODEC_ID_RAWVIDEO , "y"}, |
875 | 58 { CODEC_ID_BMP , "bmp"}, |
1409 | 59 { CODEC_ID_GIF , "gif"}, |
1416 | 60 { CODEC_ID_TARGA , "tga"}, |
61 { CODEC_ID_TIFF , "tiff"}, | |
3404 | 62 { CODEC_ID_TIFF , "tif"}, |
1985 | 63 { CODEC_ID_SGI , "sgi"}, |
2074 | 64 { CODEC_ID_PTX , "ptx"}, |
2859 | 65 { CODEC_ID_PCX , "pcx"}, |
2867 | 66 { CODEC_ID_SUNRAST , "sun"}, |
67 { CODEC_ID_SUNRAST , "ras"}, | |
68 { CODEC_ID_SUNRAST , "rs"}, | |
69 { CODEC_ID_SUNRAST , "im1"}, | |
70 { CODEC_ID_SUNRAST , "im8"}, | |
71 { CODEC_ID_SUNRAST , "im24"}, | |
72 { CODEC_ID_SUNRAST , "sunras"}, | |
3289 | 73 { CODEC_ID_NONE , NULL} |
497 | 74 }; |
75 | |
3769 | 76 static const int sizes[][2] = { |
635 | 77 { 640, 480 }, |
78 { 720, 480 }, | |
79 { 720, 576 }, | |
80 { 352, 288 }, | |
81 { 352, 240 }, | |
82 { 160, 128 }, | |
83 { 512, 384 }, | |
84 { 640, 352 }, | |
85 { 640, 240 }, | |
86 }; | |
87 | |
88 static int infer_size(int *width_ptr, int *height_ptr, int size) | |
89 { | |
90 int i; | |
91 | |
4001 | 92 for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) { |
635 | 93 if ((sizes[i][0] * sizes[i][1]) == size) { |
94 *width_ptr = sizes[i][0]; | |
95 *height_ptr = sizes[i][1]; | |
96 return 0; | |
97 } | |
98 } | |
99 return -1; | |
100 } | |
497 | 101 static enum CodecID av_str2id(const IdStrMap *tags, const char *str) |
102 { | |
530 | 103 str= strrchr(str, '.'); |
104 if(!str) return CODEC_ID_NONE; | |
105 str++; | |
497 | 106 |
107 while (tags->id) { | |
3288 | 108 if (!strcasecmp(str, tags->str)) |
109 return tags->id; | |
497 | 110 |
111 tags++; | |
112 } | |
113 return CODEC_ID_NONE; | |
114 } | |
115 | |
116 /* return -1 if no image found */ | |
885 | 117 static int find_image_range(int *pfirst_index, int *plast_index, |
497 | 118 const char *path) |
119 { | |
120 char buf[1024]; | |
121 int range, last_index, range1, first_index; | |
122 | |
123 /* find the first image */ | |
124 for(first_index = 0; first_index < 5; first_index++) { | |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
125 if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){ |
885 | 126 *pfirst_index = |
498 | 127 *plast_index = 1; |
128 return 0; | |
129 } | |
497 | 130 if (url_exist(buf)) |
131 break; | |
132 } | |
133 if (first_index == 5) | |
134 goto fail; | |
885 | 135 |
497 | 136 /* find the last image */ |
137 last_index = first_index; | |
138 for(;;) { | |
139 range = 0; | |
140 for(;;) { | |
141 if (!range) | |
142 range1 = 1; | |
143 else | |
144 range1 = 2 * range; | |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
145 if (av_get_frame_filename(buf, sizeof(buf), path, |
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
146 last_index + range1) < 0) |
497 | 147 goto fail; |
148 if (!url_exist(buf)) | |
149 break; | |
150 range = range1; | |
151 /* just in case... */ | |
152 if (range >= (1 << 30)) | |
153 goto fail; | |
154 } | |
155 /* we are sure than image last_index + range exists */ | |
156 if (!range) | |
157 break; | |
158 last_index += range; | |
159 } | |
160 *pfirst_index = first_index; | |
161 *plast_index = last_index; | |
162 return 0; | |
163 fail: | |
164 return -1; | |
165 } | |
166 | |
167 | |
168 static int image_probe(AVProbeData *p) | |
169 { | |
1594
ffb64cb62cc9
Fix a crash when probing img2 format with a NULL filename.
aurel
parents:
1551
diff
changeset
|
170 if (p->filename && av_str2id(img_tags, p->filename)) { |
1551
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
171 if (av_filename_number_test(p->filename)) |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
172 return AVPROBE_SCORE_MAX; |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
173 else |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
174 return AVPROBE_SCORE_MAX/2; |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
175 } |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
176 return 0; |
497 | 177 } |
178 | |
583 | 179 enum CodecID av_guess_image2_codec(const char *filename){ |
180 return av_str2id(img_tags, filename); | |
181 } | |
182 | |
497 | 183 static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap) |
184 { | |
185 VideoData *s = s1->priv_data; | |
186 int first_index, last_index; | |
187 AVStream *st; | |
188 | |
189 s1->ctx_flags |= AVFMTCTX_NOHEADER; | |
190 | |
191 st = av_new_stream(s1, 0); | |
192 if (!st) { | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1594
diff
changeset
|
193 return AVERROR(ENOMEM); |
497 | 194 } |
195 | |
2189 | 196 av_strlcpy(s->path, s1->filename, sizeof(s->path)); |
497 | 197 s->img_number = 0; |
198 s->img_count = 0; | |
885 | 199 |
497 | 200 /* find format */ |
201 if (s1->iformat->flags & AVFMT_NOFILE) | |
202 s->is_pipe = 0; | |
574 | 203 else{ |
497 | 204 s->is_pipe = 1; |
2023 | 205 st->need_parsing = AVSTREAM_PARSE_FULL; |
574 | 206 } |
885 | 207 |
1003 | 208 if (!ap->time_base.num) { |
743 | 209 av_set_pts_info(st, 60, 1, 25); |
497 | 210 } else { |
743 | 211 av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den); |
497 | 212 } |
885 | 213 |
1003 | 214 if(ap->width && ap->height){ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
215 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:
764
diff
changeset
|
216 st->codec->height= ap->height; |
635 | 217 } |
885 | 218 |
497 | 219 if (!s->is_pipe) { |
220 if (find_image_range(&first_index, &last_index, s->path) < 0) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
221 return AVERROR(EIO); |
497 | 222 s->img_first = first_index; |
223 s->img_last = last_index; | |
224 s->img_number = first_index; | |
225 /* compute duration */ | |
226 st->start_time = 0; | |
743 | 227 st->duration = last_index - first_index + 1; |
497 | 228 } |
885 | 229 |
583 | 230 if(ap->video_codec_id){ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
231 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:
764
diff
changeset
|
232 st->codec->codec_id = ap->video_codec_id; |
583 | 233 }else if(ap->audio_codec_id){ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
234 st->codec->codec_type = CODEC_TYPE_AUDIO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
235 st->codec->codec_id = ap->audio_codec_id; |
583 | 236 }else{ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
237 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:
764
diff
changeset
|
238 st->codec->codec_id = av_str2id(img_tags, s->path); |
583 | 239 } |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
240 if(st->codec->codec_type == CODEC_TYPE_VIDEO && ap->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:
764
diff
changeset
|
241 st->codec->pix_fmt = ap->pix_fmt; |
497 | 242 |
243 return 0; | |
244 } | |
245 | |
246 static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) | |
247 { | |
248 VideoData *s = s1->priv_data; | |
249 char filename[1024]; | |
635 | 250 int i; |
251 int size[3]={0}, ret[3]={0}; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
252 ByteIOContext *f[3]; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
253 AVCodecContext *codec= s1->streams[0]->codec; |
497 | 254 |
255 if (!s->is_pipe) { | |
256 /* loop over input */ | |
1175
8b53c0f3e7ad
add loop_input to AVFormatContext, getting rid of old hack
mru
parents:
1169
diff
changeset
|
257 if (s1->loop_input && s->img_number > s->img_last) { |
497 | 258 s->img_number = s->img_first; |
590 | 259 } |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
260 if (av_get_frame_filename(filename, sizeof(filename), |
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
261 s->path, s->img_number)<0 && s->img_number > 1) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
262 return AVERROR(EIO); |
635 | 263 for(i=0; i<3; i++){ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
264 if (url_fopen(&f[i], filename, URL_RDONLY) < 0) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
265 return AVERROR(EIO); |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
743
diff
changeset
|
266 size[i]= url_fsize(f[i]); |
885 | 267 |
635 | 268 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
269 break; | |
270 filename[ strlen(filename) - 1 ]= 'U' + i; | |
271 } | |
885 | 272 |
635 | 273 if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width) |
274 infer_size(&codec->width, &codec->height, size[0]); | |
497 | 275 } else { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
276 f[0] = s1->pb; |
635 | 277 if (url_feof(f[0])) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
278 return AVERROR(EIO); |
635 | 279 size[0]= 4096; |
497 | 280 } |
281 | |
635 | 282 av_new_packet(pkt, size[0] + size[1] + size[2]); |
497 | 283 pkt->stream_index = 0; |
284 pkt->flags |= PKT_FLAG_KEY; | |
285 | |
635 | 286 pkt->size= 0; |
287 for(i=0; i<3; i++){ | |
288 if(size[i]){ | |
289 ret[i]= get_buffer(f[i], pkt->data + pkt->size, size[i]); | |
290 if (!s->is_pipe) | |
291 url_fclose(f[i]); | |
292 if(ret[i]>0) | |
293 pkt->size += ret[i]; | |
294 } | |
497 | 295 } |
296 | |
635 | 297 if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) { |
497 | 298 av_free_packet(pkt); |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
299 return AVERROR(EIO); /* signal EOF */ |
497 | 300 } else { |
301 s->img_count++; | |
302 s->img_number++; | |
303 return 0; | |
304 } | |
305 } | |
306 | |
3871
e6aeb2733e34
Replace generic CONFIG_MUXERS preprocessor conditionals by more specific
diego
parents:
3769
diff
changeset
|
307 #if defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER) |
497 | 308 /******************************************************/ |
309 /* image output */ | |
310 | |
311 static int img_write_header(AVFormatContext *s) | |
312 { | |
313 VideoData *img = s->priv_data; | |
314 | |
315 img->img_number = 1; | |
2189 | 316 av_strlcpy(img->path, s->filename, sizeof(img->path)); |
497 | 317 |
318 /* find format */ | |
319 if (s->oformat->flags & AVFMT_NOFILE) | |
320 img->is_pipe = 0; | |
321 else | |
322 img->is_pipe = 1; | |
885 | 323 |
497 | 324 return 0; |
325 } | |
326 | |
327 static int img_write_packet(AVFormatContext *s, AVPacket *pkt) | |
328 { | |
329 VideoData *img = s->priv_data; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
330 ByteIOContext *pb[3]; |
497 | 331 char filename[1024]; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
332 AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec; |
635 | 333 int i; |
497 | 334 |
335 if (!img->is_pipe) { | |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
336 if (av_get_frame_filename(filename, sizeof(filename), |
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
337 img->path, img->img_number) < 0 && img->img_number>1) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
338 return AVERROR(EIO); |
635 | 339 for(i=0; i<3; i++){ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
340 if (url_fopen(&pb[i], filename, URL_WRONLY) < 0) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
341 return AVERROR(EIO); |
885 | 342 |
635 | 343 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
344 break; | |
345 filename[ strlen(filename) - 1 ]= 'U' + i; | |
346 } | |
497 | 347 } else { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
348 pb[0] = s->pb; |
497 | 349 } |
885 | 350 |
635 | 351 if(codec->codec_id == CODEC_ID_RAWVIDEO){ |
731 | 352 int ysize = codec->width * codec->height; |
353 put_buffer(pb[0], pkt->data , ysize); | |
354 put_buffer(pb[1], pkt->data + ysize, (pkt->size - ysize)/2); | |
355 put_buffer(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2); | |
635 | 356 put_flush_packet(pb[1]); |
357 put_flush_packet(pb[2]); | |
358 url_fclose(pb[1]); | |
359 url_fclose(pb[2]); | |
360 }else{ | |
361 put_buffer(pb[0], pkt->data, pkt->size); | |
362 } | |
363 put_flush_packet(pb[0]); | |
497 | 364 if (!img->is_pipe) { |
635 | 365 url_fclose(pb[0]); |
497 | 366 } |
367 | |
368 img->img_number++; | |
369 return 0; | |
370 } | |
371 | |
3871
e6aeb2733e34
Replace generic CONFIG_MUXERS preprocessor conditionals by more specific
diego
parents:
3769
diff
changeset
|
372 #endif /* defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER) */ |
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
373 |
497 | 374 /* input */ |
1169 | 375 #ifdef CONFIG_IMAGE2_DEMUXER |
376 AVInputFormat image2_demuxer = { | |
497 | 377 "image2", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
378 NULL_IF_CONFIG_SMALL("image2 sequence"), |
497 | 379 sizeof(VideoData), |
380 image_probe, | |
381 img_read_header, | |
382 img_read_packet, | |
3431 | 383 NULL, |
497 | 384 NULL, |
385 NULL, | |
498 | 386 AVFMT_NOFILE, |
497 | 387 }; |
1169 | 388 #endif |
389 #ifdef CONFIG_IMAGE2PIPE_DEMUXER | |
390 AVInputFormat image2pipe_demuxer = { | |
497 | 391 "image2pipe", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
392 NULL_IF_CONFIG_SMALL("piped image2 sequence"), |
497 | 393 sizeof(VideoData), |
394 NULL, /* no probe */ | |
395 img_read_header, | |
396 img_read_packet, | |
397 }; | |
1169 | 398 #endif |
497 | 399 |
400 /* output */ | |
1169 | 401 #ifdef CONFIG_IMAGE2_MUXER |
402 AVOutputFormat image2_muxer = { | |
497 | 403 "image2", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
404 NULL_IF_CONFIG_SMALL("image2 sequence"), |
497 | 405 "", |
4047 | 406 "bmp,jpeg,jpg,ljpg,pam,pbm,pgm,pgmyuv,png,ppm,sgi,tif,tiff", |
497 | 407 sizeof(VideoData), |
408 CODEC_ID_NONE, | |
409 CODEC_ID_MJPEG, | |
410 img_write_header, | |
411 img_write_packet, | |
3140 | 412 NULL, |
3940
77f3d0224ee9
Prevent image2 from complaining about non monotone timestamps as
michael
parents:
3871
diff
changeset
|
413 .flags= AVFMT_NOTIMESTAMPS | AVFMT_NOFILE |
497 | 414 }; |
1169 | 415 #endif |
416 #ifdef CONFIG_IMAGE2PIPE_MUXER | |
417 AVOutputFormat image2pipe_muxer = { | |
497 | 418 "image2pipe", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
419 NULL_IF_CONFIG_SMALL("piped image2 sequence"), |
497 | 420 "", |
421 "", | |
422 sizeof(VideoData), | |
423 CODEC_ID_NONE, | |
424 CODEC_ID_MJPEG, | |
425 img_write_header, | |
426 img_write_packet, | |
3940
77f3d0224ee9
Prevent image2 from complaining about non monotone timestamps as
michael
parents:
3871
diff
changeset
|
427 .flags= AVFMT_NOTIMESTAMPS |
497 | 428 }; |
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
429 #endif |