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