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