Mercurial > libavformat.hg
annotate img2.c @ 6486:fed4be333771 libavformat
Move AVOptions from libavcodec to libavutil
| author | michael |
|---|---|
| date | Sun, 26 Sep 2010 14:25:22 +0000 |
| parents | d7ec9ef45438 |
| children |
| rev | line source |
|---|---|
| 497 | 1 /* |
| 2 * Image format | |
|
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4247
diff
changeset
|
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard |
| 497 | 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 |
|
4208
af07c3bd3bfa
include intreadwrite.h, fix compilation, img2.c use AV_RL32
bcoudurier
parents:
4206
diff
changeset
|
23 #include "libavutil/intreadwrite.h" |
| 3286 | 24 #include "libavutil/avstring.h" |
| 497 | 25 #include "avformat.h" |
| 3288 | 26 #include <strings.h> |
| 497 | 27 |
| 28 typedef struct { | |
| 29 int img_first; | |
| 30 int img_last; | |
| 31 int img_number; | |
| 32 int img_count; | |
| 33 int is_pipe; | |
| 34 char path[1024]; | |
| 35 } VideoData; | |
| 36 | |
| 37 typedef struct { | |
| 38 enum CodecID id; | |
| 39 const char *str; | |
| 40 } IdStrMap; | |
| 41 | |
| 42 static const IdStrMap img_tags[] = { | |
| 43 { CODEC_ID_MJPEG , "jpeg"}, | |
| 44 { CODEC_ID_MJPEG , "jpg"}, | |
| 5052 | 45 { CODEC_ID_LJPEG , "ljpg"}, |
| 581 | 46 { CODEC_ID_PNG , "png"}, |
| 3080 | 47 { CODEC_ID_PNG , "mng"}, |
| 583 | 48 { CODEC_ID_PPM , "ppm"}, |
| 4064 | 49 { CODEC_ID_PPM , "pnm"}, |
| 583 | 50 { CODEC_ID_PGM , "pgm"}, |
| 51 { CODEC_ID_PGMYUV , "pgmyuv"}, | |
| 52 { CODEC_ID_PBM , "pbm"}, | |
| 53 { CODEC_ID_PAM , "pam"}, | |
| 497 | 54 { CODEC_ID_MPEG1VIDEO, "mpg1-img"}, |
| 55 { CODEC_ID_MPEG2VIDEO, "mpg2-img"}, | |
| 56 { CODEC_ID_MPEG4 , "mpg4-img"}, | |
| 57 { CODEC_ID_FFV1 , "ffv1-img"}, | |
| 635 | 58 { CODEC_ID_RAWVIDEO , "y"}, |
| 875 | 59 { CODEC_ID_BMP , "bmp"}, |
| 1409 | 60 { CODEC_ID_GIF , "gif"}, |
| 1416 | 61 { CODEC_ID_TARGA , "tga"}, |
| 62 { CODEC_ID_TIFF , "tiff"}, | |
| 3404 | 63 { CODEC_ID_TIFF , "tif"}, |
| 1985 | 64 { CODEC_ID_SGI , "sgi"}, |
| 2074 | 65 { CODEC_ID_PTX , "ptx"}, |
| 2859 | 66 { CODEC_ID_PCX , "pcx"}, |
| 2867 | 67 { CODEC_ID_SUNRAST , "sun"}, |
| 68 { CODEC_ID_SUNRAST , "ras"}, | |
| 69 { CODEC_ID_SUNRAST , "rs"}, | |
| 70 { CODEC_ID_SUNRAST , "im1"}, | |
| 71 { CODEC_ID_SUNRAST , "im8"}, | |
| 72 { CODEC_ID_SUNRAST , "im24"}, | |
| 73 { CODEC_ID_SUNRAST , "sunras"}, | |
| 4119 | 74 { CODEC_ID_JPEG2000 , "jp2"}, |
| 5022 | 75 { CODEC_ID_DPX , "dpx"}, |
| 6109 | 76 { CODEC_ID_PICTOR , "pic"}, |
| 3289 | 77 { CODEC_ID_NONE , NULL} |
| 497 | 78 }; |
| 79 | |
| 3769 | 80 static const int sizes[][2] = { |
| 635 | 81 { 640, 480 }, |
| 82 { 720, 480 }, | |
| 83 { 720, 576 }, | |
| 84 { 352, 288 }, | |
| 85 { 352, 240 }, | |
| 86 { 160, 128 }, | |
| 87 { 512, 384 }, | |
| 88 { 640, 352 }, | |
| 89 { 640, 240 }, | |
| 90 }; | |
| 91 | |
| 92 static int infer_size(int *width_ptr, int *height_ptr, int size) | |
| 93 { | |
| 94 int i; | |
| 95 | |
| 4001 | 96 for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) { |
| 635 | 97 if ((sizes[i][0] * sizes[i][1]) == size) { |
| 98 *width_ptr = sizes[i][0]; | |
| 99 *height_ptr = sizes[i][1]; | |
| 100 return 0; | |
| 101 } | |
| 102 } | |
| 103 return -1; | |
| 104 } | |
| 497 | 105 static enum CodecID av_str2id(const IdStrMap *tags, const char *str) |
| 106 { | |
| 530 | 107 str= strrchr(str, '.'); |
| 108 if(!str) return CODEC_ID_NONE; | |
| 109 str++; | |
| 497 | 110 |
| 111 while (tags->id) { | |
| 3288 | 112 if (!strcasecmp(str, tags->str)) |
| 113 return tags->id; | |
| 497 | 114 |
| 115 tags++; | |
| 116 } | |
| 117 return CODEC_ID_NONE; | |
| 118 } | |
| 119 | |
| 120 /* return -1 if no image found */ | |
| 885 | 121 static int find_image_range(int *pfirst_index, int *plast_index, |
| 497 | 122 const char *path) |
| 123 { | |
| 124 char buf[1024]; | |
| 125 int range, last_index, range1, first_index; | |
| 126 | |
| 127 /* find the first image */ | |
| 128 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
|
129 if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){ |
| 885 | 130 *pfirst_index = |
| 498 | 131 *plast_index = 1; |
|
5325
feffcbc89904
Fixes detection and error reporting of non-existing files in img2.c.
benoit
parents:
5118
diff
changeset
|
132 if(url_exist(buf)) |
|
feffcbc89904
Fixes detection and error reporting of non-existing files in img2.c.
benoit
parents:
5118
diff
changeset
|
133 return 0; |
|
feffcbc89904
Fixes detection and error reporting of non-existing files in img2.c.
benoit
parents:
5118
diff
changeset
|
134 return -1; |
| 498 | 135 } |
| 497 | 136 if (url_exist(buf)) |
| 137 break; | |
| 138 } | |
| 139 if (first_index == 5) | |
| 140 goto fail; | |
| 885 | 141 |
| 497 | 142 /* find the last image */ |
| 143 last_index = first_index; | |
| 144 for(;;) { | |
| 145 range = 0; | |
| 146 for(;;) { | |
| 147 if (!range) | |
| 148 range1 = 1; | |
| 149 else | |
| 150 range1 = 2 * range; | |
|
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
151 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
|
152 last_index + range1) < 0) |
| 497 | 153 goto fail; |
| 154 if (!url_exist(buf)) | |
| 155 break; | |
| 156 range = range1; | |
| 157 /* just in case... */ | |
| 158 if (range >= (1 << 30)) | |
| 159 goto fail; | |
| 160 } | |
| 161 /* we are sure than image last_index + range exists */ | |
| 162 if (!range) | |
| 163 break; | |
| 164 last_index += range; | |
| 165 } | |
| 166 *pfirst_index = first_index; | |
| 167 *plast_index = last_index; | |
| 168 return 0; | |
| 169 fail: | |
| 170 return -1; | |
| 171 } | |
| 172 | |
| 173 | |
| 174 static int image_probe(AVProbeData *p) | |
| 175 { | |
|
1594
ffb64cb62cc9
Fix a crash when probing img2 format with a NULL filename.
aurel
parents:
1551
diff
changeset
|
176 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
|
177 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
|
178 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
|
179 else |
|
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
180 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
|
181 } |
|
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
182 return 0; |
| 497 | 183 } |
| 184 | |
| 583 | 185 enum CodecID av_guess_image2_codec(const char *filename){ |
| 186 return av_str2id(img_tags, filename); | |
| 187 } | |
| 188 | |
| 497 | 189 static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap) |
| 190 { | |
| 191 VideoData *s = s1->priv_data; | |
| 192 int first_index, last_index; | |
| 193 AVStream *st; | |
| 194 | |
| 195 s1->ctx_flags |= AVFMTCTX_NOHEADER; | |
| 196 | |
| 197 st = av_new_stream(s1, 0); | |
| 198 if (!st) { | |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1594
diff
changeset
|
199 return AVERROR(ENOMEM); |
| 497 | 200 } |
| 201 | |
| 2189 | 202 av_strlcpy(s->path, s1->filename, sizeof(s->path)); |
| 497 | 203 s->img_number = 0; |
| 204 s->img_count = 0; | |
| 885 | 205 |
| 497 | 206 /* find format */ |
| 207 if (s1->iformat->flags & AVFMT_NOFILE) | |
| 208 s->is_pipe = 0; | |
| 574 | 209 else{ |
| 497 | 210 s->is_pipe = 1; |
| 2023 | 211 st->need_parsing = AVSTREAM_PARSE_FULL; |
| 574 | 212 } |
| 885 | 213 |
| 1003 | 214 if (!ap->time_base.num) { |
| 743 | 215 av_set_pts_info(st, 60, 1, 25); |
| 497 | 216 } else { |
| 743 | 217 av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den); |
| 497 | 218 } |
| 885 | 219 |
| 1003 | 220 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
|
221 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
|
222 st->codec->height= ap->height; |
| 635 | 223 } |
| 885 | 224 |
| 497 | 225 if (!s->is_pipe) { |
| 226 if (find_image_range(&first_index, &last_index, s->path) < 0) | |
|
5325
feffcbc89904
Fixes detection and error reporting of non-existing files in img2.c.
benoit
parents:
5118
diff
changeset
|
227 return AVERROR(ENOENT); |
| 497 | 228 s->img_first = first_index; |
| 229 s->img_last = last_index; | |
| 230 s->img_number = first_index; | |
| 231 /* compute duration */ | |
| 232 st->start_time = 0; | |
| 743 | 233 st->duration = last_index - first_index + 1; |
| 497 | 234 } |
| 885 | 235 |
|
5600
4266e4129b61
Avoid using deprecated AVFormatParameters::[audio|video]_codec_id field.
jai_menon
parents:
5406
diff
changeset
|
236 if(s1->video_codec_id){ |
|
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5867
diff
changeset
|
237 st->codec->codec_type = AVMEDIA_TYPE_VIDEO; |
|
5600
4266e4129b61
Avoid using deprecated AVFormatParameters::[audio|video]_codec_id field.
jai_menon
parents:
5406
diff
changeset
|
238 st->codec->codec_id = s1->video_codec_id; |
|
4266e4129b61
Avoid using deprecated AVFormatParameters::[audio|video]_codec_id field.
jai_menon
parents:
5406
diff
changeset
|
239 }else if(s1->audio_codec_id){ |
|
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5867
diff
changeset
|
240 st->codec->codec_type = AVMEDIA_TYPE_AUDIO; |
|
5600
4266e4129b61
Avoid using deprecated AVFormatParameters::[audio|video]_codec_id field.
jai_menon
parents:
5406
diff
changeset
|
241 st->codec->codec_id = s1->audio_codec_id; |
| 583 | 242 }else{ |
|
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5867
diff
changeset
|
243 st->codec->codec_type = AVMEDIA_TYPE_VIDEO; |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
244 st->codec->codec_id = av_str2id(img_tags, s->path); |
| 583 | 245 } |
|
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5867
diff
changeset
|
246 if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO && ap->pix_fmt != PIX_FMT_NONE) |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
247 st->codec->pix_fmt = ap->pix_fmt; |
| 497 | 248 |
| 249 return 0; | |
| 250 } | |
| 251 | |
| 252 static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) | |
| 253 { | |
| 254 VideoData *s = s1->priv_data; | |
| 255 char filename[1024]; | |
| 635 | 256 int i; |
| 257 int size[3]={0}, ret[3]={0}; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
258 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
|
259 AVCodecContext *codec= s1->streams[0]->codec; |
| 497 | 260 |
| 261 if (!s->is_pipe) { | |
| 262 /* loop over input */ | |
|
1175
8b53c0f3e7ad
add loop_input to AVFormatContext, getting rid of old hack
mru
parents:
1169
diff
changeset
|
263 if (s1->loop_input && s->img_number > s->img_last) { |
| 497 | 264 s->img_number = s->img_first; |
| 590 | 265 } |
| 5118 | 266 if (s->img_number > s->img_last) |
| 267 return AVERROR_EOF; | |
|
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
268 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
|
269 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
|
270 return AVERROR(EIO); |
| 635 | 271 for(i=0; i<3; i++){ |
|
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
272 if (url_fopen(&f[i], filename, URL_RDONLY) < 0) { |
|
5867
b5d74258cd23
Dont senselessly fail on rawvideo that isnt 3 files per frame.
michael
parents:
5653
diff
changeset
|
273 if(i==1) |
|
b5d74258cd23
Dont senselessly fail on rawvideo that isnt 3 files per frame.
michael
parents:
5653
diff
changeset
|
274 break; |
|
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
275 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename); |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
276 return AVERROR(EIO); |
|
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
277 } |
|
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
743
diff
changeset
|
278 size[i]= url_fsize(f[i]); |
| 885 | 279 |
| 635 | 280 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
| 281 break; | |
| 282 filename[ strlen(filename) - 1 ]= 'U' + i; | |
| 283 } | |
| 885 | 284 |
| 635 | 285 if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width) |
| 286 infer_size(&codec->width, &codec->height, size[0]); | |
| 497 | 287 } else { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
288 f[0] = s1->pb; |
| 635 | 289 if (url_feof(f[0])) |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
290 return AVERROR(EIO); |
| 635 | 291 size[0]= 4096; |
| 497 | 292 } |
| 293 | |
| 635 | 294 av_new_packet(pkt, size[0] + size[1] + size[2]); |
| 497 | 295 pkt->stream_index = 0; |
|
5913
11bb10c37225
Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.
cehoyos
parents:
5910
diff
changeset
|
296 pkt->flags |= AV_PKT_FLAG_KEY; |
| 497 | 297 |
| 635 | 298 pkt->size= 0; |
| 299 for(i=0; i<3; i++){ | |
| 300 if(size[i]){ | |
| 301 ret[i]= get_buffer(f[i], pkt->data + pkt->size, size[i]); | |
| 302 if (!s->is_pipe) | |
| 303 url_fclose(f[i]); | |
| 304 if(ret[i]>0) | |
| 305 pkt->size += ret[i]; | |
| 306 } | |
| 497 | 307 } |
| 308 | |
| 635 | 309 if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) { |
| 497 | 310 av_free_packet(pkt); |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
311 return AVERROR(EIO); /* signal EOF */ |
| 497 | 312 } else { |
| 313 s->img_count++; | |
| 314 s->img_number++; | |
| 315 return 0; | |
| 316 } | |
| 317 } | |
| 318 | |
| 4206 | 319 #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER |
| 497 | 320 /******************************************************/ |
| 321 /* image output */ | |
| 322 | |
| 323 static int img_write_header(AVFormatContext *s) | |
| 324 { | |
| 325 VideoData *img = s->priv_data; | |
| 326 | |
| 327 img->img_number = 1; | |
| 2189 | 328 av_strlcpy(img->path, s->filename, sizeof(img->path)); |
| 497 | 329 |
| 330 /* find format */ | |
| 331 if (s->oformat->flags & AVFMT_NOFILE) | |
| 332 img->is_pipe = 0; | |
| 333 else | |
| 334 img->is_pipe = 1; | |
| 885 | 335 |
| 497 | 336 return 0; |
| 337 } | |
| 338 | |
| 339 static int img_write_packet(AVFormatContext *s, AVPacket *pkt) | |
| 340 { | |
| 341 VideoData *img = s->priv_data; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
342 ByteIOContext *pb[3]; |
| 497 | 343 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
|
344 AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec; |
| 635 | 345 int i; |
| 497 | 346 |
| 347 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
|
348 if (av_get_frame_filename(filename, sizeof(filename), |
|
5406
cef1f2baca9c
print error message when image2 muxer fail to compute frame filename
bcoudurier
parents:
5325
diff
changeset
|
349 img->path, img->img_number) < 0 && img->img_number>1) { |
|
cef1f2baca9c
print error message when image2 muxer fail to compute frame filename
bcoudurier
parents:
5325
diff
changeset
|
350 av_log(s, AV_LOG_ERROR, "Could not get frame filename from pattern\n"); |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
351 return AVERROR(EIO); |
|
5406
cef1f2baca9c
print error message when image2 muxer fail to compute frame filename
bcoudurier
parents:
5325
diff
changeset
|
352 } |
| 635 | 353 for(i=0; i<3; i++){ |
|
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
354 if (url_fopen(&pb[i], filename, URL_WRONLY) < 0) { |
|
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
355 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename); |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
356 return AVERROR(EIO); |
|
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
357 } |
| 885 | 358 |
| 635 | 359 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
| 360 break; | |
| 361 filename[ strlen(filename) - 1 ]= 'U' + i; | |
| 362 } | |
| 497 | 363 } else { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
364 pb[0] = s->pb; |
| 497 | 365 } |
| 885 | 366 |
| 635 | 367 if(codec->codec_id == CODEC_ID_RAWVIDEO){ |
| 731 | 368 int ysize = codec->width * codec->height; |
| 369 put_buffer(pb[0], pkt->data , ysize); | |
| 370 put_buffer(pb[1], pkt->data + ysize, (pkt->size - ysize)/2); | |
| 371 put_buffer(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2); | |
| 635 | 372 put_flush_packet(pb[1]); |
| 373 put_flush_packet(pb[2]); | |
| 374 url_fclose(pb[1]); | |
| 375 url_fclose(pb[2]); | |
| 376 }else{ | |
| 4247 | 377 if(av_str2id(img_tags, s->filename) == CODEC_ID_JPEG2000){ |
| 378 AVStream *st = s->streams[0]; | |
| 379 if(st->codec->extradata_size > 8 && | |
| 380 AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){ | |
| 381 if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c')) | |
| 382 goto error; | |
| 383 put_be32(pb[0], 12); | |
| 384 put_tag (pb[0], "jP "); | |
| 385 put_be32(pb[0], 0x0D0A870A); // signature | |
| 386 put_be32(pb[0], 20); | |
| 387 put_tag (pb[0], "ftyp"); | |
| 388 put_tag (pb[0], "jp2 "); | |
| 389 put_be32(pb[0], 0); | |
| 390 put_tag (pb[0], "jp2 "); | |
| 391 put_buffer(pb[0], st->codec->extradata, st->codec->extradata_size); | |
| 392 }else if(pkt->size < 8 || | |
| 393 (!st->codec->extradata_size && | |
| 394 AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature | |
| 395 error: | |
| 396 av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream\n"); | |
| 397 return -1; | |
| 398 } | |
| 399 } | |
| 635 | 400 put_buffer(pb[0], pkt->data, pkt->size); |
| 401 } | |
| 402 put_flush_packet(pb[0]); | |
| 497 | 403 if (!img->is_pipe) { |
| 635 | 404 url_fclose(pb[0]); |
| 497 | 405 } |
| 406 | |
| 407 img->img_number++; | |
| 408 return 0; | |
| 409 } | |
| 410 | |
| 4206 | 411 #endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */ |
|
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
412 |
| 497 | 413 /* input */ |
| 4206 | 414 #if CONFIG_IMAGE2_DEMUXER |
| 1169 | 415 AVInputFormat image2_demuxer = { |
| 497 | 416 "image2", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
417 NULL_IF_CONFIG_SMALL("image2 sequence"), |
| 497 | 418 sizeof(VideoData), |
| 419 image_probe, | |
| 420 img_read_header, | |
| 421 img_read_packet, | |
| 3431 | 422 NULL, |
| 497 | 423 NULL, |
| 424 NULL, | |
| 498 | 425 AVFMT_NOFILE, |
| 497 | 426 }; |
| 1169 | 427 #endif |
| 4206 | 428 #if CONFIG_IMAGE2PIPE_DEMUXER |
| 1169 | 429 AVInputFormat image2pipe_demuxer = { |
| 497 | 430 "image2pipe", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
431 NULL_IF_CONFIG_SMALL("piped image2 sequence"), |
| 497 | 432 sizeof(VideoData), |
| 433 NULL, /* no probe */ | |
| 434 img_read_header, | |
| 435 img_read_packet, | |
| 436 }; | |
| 1169 | 437 #endif |
| 497 | 438 |
| 439 /* output */ | |
| 4206 | 440 #if CONFIG_IMAGE2_MUXER |
| 1169 | 441 AVOutputFormat image2_muxer = { |
| 497 | 442 "image2", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
443 NULL_IF_CONFIG_SMALL("image2 sequence"), |
| 497 | 444 "", |
| 6239 | 445 "bmp,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,ppm,sgi,tga,tif,tiff,jp2", |
| 497 | 446 sizeof(VideoData), |
| 447 CODEC_ID_NONE, | |
| 448 CODEC_ID_MJPEG, | |
| 449 img_write_header, | |
| 450 img_write_packet, | |
| 3140 | 451 NULL, |
|
5653
25eca7e2cf64
Add flag so muxers not needing width/height can signal this.
michael
parents:
5600
diff
changeset
|
452 .flags= AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE |
| 497 | 453 }; |
| 1169 | 454 #endif |
| 4206 | 455 #if CONFIG_IMAGE2PIPE_MUXER |
| 1169 | 456 AVOutputFormat image2pipe_muxer = { |
| 497 | 457 "image2pipe", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
458 NULL_IF_CONFIG_SMALL("piped image2 sequence"), |
| 497 | 459 "", |
| 460 "", | |
| 461 sizeof(VideoData), | |
| 462 CODEC_ID_NONE, | |
| 463 CODEC_ID_MJPEG, | |
| 464 img_write_header, | |
| 465 img_write_packet, | |
|
5653
25eca7e2cf64
Add flag so muxers not needing width/height can signal this.
michael
parents:
5600
diff
changeset
|
466 .flags= AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS |
| 497 | 467 }; |
|
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
468 #endif |
