]> git.sesse.net Git - ffmpeg/blob - libavformat/img2.c
smackerdemuxer: check some values before instead of just after malloc()
[ffmpeg] / libavformat / img2.c
1 /*
2  * Image format
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2004 Michael Niedermayer
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
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
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/avstring.h"
25 #include "libavutil/log.h"
26 #include "libavutil/opt.h"
27 #include "libavutil/pixdesc.h"
28 #include "libavutil/parseutils.h"
29 #include "avformat.h"
30 #include "avio_internal.h"
31 #include "internal.h"
32
33 typedef struct {
34     const AVClass *class;  /**< Class for private options. */
35     int img_first;
36     int img_last;
37     int img_number;
38     int img_count;
39     int is_pipe;
40     int split_planes;  /**< use independent file for each Y, U, V plane */
41     char path[1024];
42     char *pixel_format;     /**< Set by a private option. */
43     char *video_size;       /**< Set by a private option. */
44     char *framerate;        /**< Set by a private option. */
45     int loop;
46     int updatefirst;
47 } VideoData;
48
49 typedef struct {
50     enum CodecID id;
51     const char *str;
52 } IdStrMap;
53
54 static const IdStrMap img_tags[] = {
55     { CODEC_ID_MJPEG     , "jpeg"},
56     { CODEC_ID_MJPEG     , "jpg"},
57     { CODEC_ID_LJPEG     , "ljpg"},
58     { CODEC_ID_JPEGLS    , "jls"},
59     { CODEC_ID_PNG       , "png"},
60     { CODEC_ID_PNG       , "mng"},
61     { CODEC_ID_PPM       , "ppm"},
62     { CODEC_ID_PPM       , "pnm"},
63     { CODEC_ID_PGM       , "pgm"},
64     { CODEC_ID_PGMYUV    , "pgmyuv"},
65     { CODEC_ID_PBM       , "pbm"},
66     { CODEC_ID_PAM       , "pam"},
67     { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
68     { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
69     { CODEC_ID_MPEG4     , "mpg4-img"},
70     { CODEC_ID_FFV1      , "ffv1-img"},
71     { CODEC_ID_RAWVIDEO  , "y"},
72     { CODEC_ID_RAWVIDEO  , "raw"},
73     { CODEC_ID_BMP       , "bmp"},
74     { CODEC_ID_GIF       , "gif"},
75     { CODEC_ID_TARGA     , "tga"},
76     { CODEC_ID_TIFF      , "tiff"},
77     { CODEC_ID_TIFF      , "tif"},
78     { CODEC_ID_SGI       , "sgi"},
79     { CODEC_ID_PTX       , "ptx"},
80     { CODEC_ID_PCX       , "pcx"},
81     { CODEC_ID_SUNRAST   , "sun"},
82     { CODEC_ID_SUNRAST   , "ras"},
83     { CODEC_ID_SUNRAST   , "rs"},
84     { CODEC_ID_SUNRAST   , "im1"},
85     { CODEC_ID_SUNRAST   , "im8"},
86     { CODEC_ID_SUNRAST   , "im24"},
87     { CODEC_ID_SUNRAST   , "sunras"},
88     { CODEC_ID_JPEG2000  , "j2k"},
89     { CODEC_ID_JPEG2000  , "jp2"},
90     { CODEC_ID_JPEG2000  , "jpc"},
91     { CODEC_ID_DPX       , "dpx"},
92     { CODEC_ID_PICTOR    , "pic"},
93     { CODEC_ID_NONE      , NULL}
94 };
95
96 static const int sizes[][2] = {
97     { 640, 480 },
98     { 720, 480 },
99     { 720, 576 },
100     { 352, 288 },
101     { 352, 240 },
102     { 160, 128 },
103     { 512, 384 },
104     { 640, 352 },
105     { 640, 240 },
106 };
107
108 static int infer_size(int *width_ptr, int *height_ptr, int size)
109 {
110     int i;
111
112     for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
113         if ((sizes[i][0] * sizes[i][1]) == size) {
114             *width_ptr = sizes[i][0];
115             *height_ptr = sizes[i][1];
116             return 0;
117         }
118     }
119     return -1;
120 }
121 static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
122 {
123     str= strrchr(str, '.');
124     if(!str) return CODEC_ID_NONE;
125     str++;
126
127     while (tags->id) {
128         if (!av_strcasecmp(str, tags->str))
129             return tags->id;
130
131         tags++;
132     }
133     return CODEC_ID_NONE;
134 }
135
136 /* return -1 if no image found */
137 static int find_image_range(int *pfirst_index, int *plast_index,
138                             const char *path)
139 {
140     char buf[1024];
141     int range, last_index, range1, first_index;
142
143     /* find the first image */
144     for(first_index = 0; first_index < 5; first_index++) {
145         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
146             *pfirst_index =
147             *plast_index = 1;
148             if (avio_check(buf, AVIO_FLAG_READ) > 0)
149                 return 0;
150             return -1;
151         }
152         if (avio_check(buf, AVIO_FLAG_READ) > 0)
153             break;
154     }
155     if (first_index == 5)
156         goto fail;
157
158     /* find the last image */
159     last_index = first_index;
160     for(;;) {
161         range = 0;
162         for(;;) {
163             if (!range)
164                 range1 = 1;
165             else
166                 range1 = 2 * range;
167             if (av_get_frame_filename(buf, sizeof(buf), path,
168                                       last_index + range1) < 0)
169                 goto fail;
170             if (avio_check(buf, AVIO_FLAG_READ) <= 0)
171                 break;
172             range = range1;
173             /* just in case... */
174             if (range >= (1 << 30))
175                 goto fail;
176         }
177         /* we are sure than image last_index + range exists */
178         if (!range)
179             break;
180         last_index += range;
181     }
182     *pfirst_index = first_index;
183     *plast_index = last_index;
184     return 0;
185  fail:
186     return -1;
187 }
188
189
190 static int read_probe(AVProbeData *p)
191 {
192     if (p->filename && av_str2id(img_tags, p->filename)) {
193         if (av_filename_number_test(p->filename))
194             return AVPROBE_SCORE_MAX;
195         else
196             return AVPROBE_SCORE_MAX/2;
197     }
198     return 0;
199 }
200
201 enum CodecID ff_guess_image2_codec(const char *filename)
202 {
203     return av_str2id(img_tags, filename);
204 }
205
206 #if FF_API_GUESS_IMG2_CODEC
207 enum CodecID av_guess_image2_codec(const char *filename){
208     return av_str2id(img_tags, filename);
209 }
210 #endif
211
212 static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
213 {
214     VideoData *s = s1->priv_data;
215     int first_index, last_index, ret = 0;
216     int width = 0, height = 0;
217     AVStream *st;
218     enum PixelFormat pix_fmt = PIX_FMT_NONE;
219     AVRational framerate;
220
221     s1->ctx_flags |= AVFMTCTX_NOHEADER;
222
223     st = avformat_new_stream(s1, NULL);
224     if (!st) {
225         return AVERROR(ENOMEM);
226     }
227
228     if (s->pixel_format && (pix_fmt = av_get_pix_fmt(s->pixel_format)) == PIX_FMT_NONE) {
229         av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n", s->pixel_format);
230         return AVERROR(EINVAL);
231     }
232     if (s->video_size && (ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
233         av_log(s, AV_LOG_ERROR, "Could not parse video size: %s.\n", s->video_size);
234         return ret;
235     }
236     if ((ret = av_parse_video_rate(&framerate, s->framerate)) < 0) {
237         av_log(s, AV_LOG_ERROR, "Could not parse framerate: %s.\n", s->framerate);
238         return ret;
239     }
240
241 #if FF_API_LOOP_INPUT
242     if (s1->loop_input)
243         s->loop = s1->loop_input;
244 #endif
245
246     av_strlcpy(s->path, s1->filename, sizeof(s->path));
247     s->img_number = 0;
248     s->img_count = 0;
249
250     /* find format */
251     if (s1->iformat->flags & AVFMT_NOFILE)
252         s->is_pipe = 0;
253     else{
254         s->is_pipe = 1;
255         st->need_parsing = AVSTREAM_PARSE_FULL;
256     }
257
258     avpriv_set_pts_info(st, 60, framerate.den, framerate.num);
259
260     if (width && height) {
261         st->codec->width  = width;
262         st->codec->height = height;
263     }
264
265     if (!s->is_pipe) {
266         if (find_image_range(&first_index, &last_index, s->path) < 0)
267             return AVERROR(ENOENT);
268         s->img_first = first_index;
269         s->img_last = last_index;
270         s->img_number = first_index;
271         /* compute duration */
272         st->start_time = 0;
273         st->duration = last_index - first_index + 1;
274     }
275
276     if(s1->video_codec_id){
277         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
278         st->codec->codec_id = s1->video_codec_id;
279     }else if(s1->audio_codec_id){
280         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
281         st->codec->codec_id = s1->audio_codec_id;
282     }else{
283         const char *str= strrchr(s->path, '.');
284         s->split_planes = str && !av_strcasecmp(str + 1, "y");
285         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
286         st->codec->codec_id = av_str2id(img_tags, s->path);
287         if (st->codec->codec_id == CODEC_ID_LJPEG)
288             st->codec->codec_id = CODEC_ID_MJPEG;
289     }
290     if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO && pix_fmt != PIX_FMT_NONE)
291         st->codec->pix_fmt = pix_fmt;
292
293     return 0;
294 }
295
296 static int read_packet(AVFormatContext *s1, AVPacket *pkt)
297 {
298     VideoData *s = s1->priv_data;
299     char filename[1024];
300     int i;
301     int size[3]={0}, ret[3]={0};
302     AVIOContext *f[3];
303     AVCodecContext *codec= s1->streams[0]->codec;
304
305     if (!s->is_pipe) {
306         /* loop over input */
307         if (s->loop && s->img_number > s->img_last) {
308             s->img_number = s->img_first;
309         }
310         if (s->img_number > s->img_last)
311             return AVERROR_EOF;
312         if (av_get_frame_filename(filename, sizeof(filename),
313                                   s->path, s->img_number)<0 && s->img_number > 1)
314             return AVERROR(EIO);
315         for(i=0; i<3; i++){
316             if (avio_open2(&f[i], filename, AVIO_FLAG_READ,
317                            &s1->interrupt_callback, NULL) < 0) {
318                 if(i==1)
319                     break;
320                 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename);
321                 return AVERROR(EIO);
322             }
323             size[i]= avio_size(f[i]);
324
325             if(!s->split_planes)
326                 break;
327             filename[ strlen(filename) - 1 ]= 'U' + i;
328         }
329
330         if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
331             infer_size(&codec->width, &codec->height, size[0]);
332     } else {
333         f[0] = s1->pb;
334         if (url_feof(f[0]))
335             return AVERROR(EIO);
336         size[0]= 4096;
337     }
338
339     av_new_packet(pkt, size[0] + size[1] + size[2]);
340     pkt->stream_index = 0;
341     pkt->flags |= AV_PKT_FLAG_KEY;
342
343     pkt->size= 0;
344     for(i=0; i<3; i++){
345         if(size[i]){
346             ret[i]= avio_read(f[i], pkt->data + pkt->size, size[i]);
347             if (!s->is_pipe)
348                 avio_close(f[i]);
349             if(ret[i]>0)
350                 pkt->size += ret[i];
351         }
352     }
353
354     if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
355         av_free_packet(pkt);
356         return AVERROR(EIO); /* signal EOF */
357     } else {
358         s->img_count++;
359         s->img_number++;
360         return 0;
361     }
362 }
363
364 #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER
365 /******************************************************/
366 /* image output */
367
368 static int write_header(AVFormatContext *s)
369 {
370     VideoData *img = s->priv_data;
371     const char *str;
372
373     img->img_number = 1;
374     av_strlcpy(img->path, s->filename, sizeof(img->path));
375
376     /* find format */
377     if (s->oformat->flags & AVFMT_NOFILE)
378         img->is_pipe = 0;
379     else
380         img->is_pipe = 1;
381
382     str = strrchr(img->path, '.');
383     img->split_planes = str && !av_strcasecmp(str + 1, "y");
384     return 0;
385 }
386
387 static int write_packet(AVFormatContext *s, AVPacket *pkt)
388 {
389     VideoData *img = s->priv_data;
390     AVIOContext *pb[3];
391     char filename[1024];
392     AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
393     int i;
394
395     if (!img->is_pipe) {
396         if (av_get_frame_filename(filename, sizeof(filename),
397                                   img->path, img->img_number) < 0 && img->img_number>1 && !img->updatefirst) {
398             av_log(s, AV_LOG_ERROR,
399                    "Could not get frame filename number %d from pattern '%s'\n",
400                    img->img_number, img->path);
401             return AVERROR(EINVAL);
402         }
403         for(i=0; i<3; i++){
404             if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
405                            &s->interrupt_callback, NULL) < 0) {
406                 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
407                 return AVERROR(EIO);
408             }
409
410             if(!img->split_planes)
411                 break;
412             filename[ strlen(filename) - 1 ]= 'U' + i;
413         }
414     } else {
415         pb[0] = s->pb;
416     }
417
418     if(img->split_planes){
419         int ysize = codec->width * codec->height;
420         avio_write(pb[0], pkt->data        , ysize);
421         avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
422         avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
423         avio_flush(pb[1]);
424         avio_flush(pb[2]);
425         avio_close(pb[1]);
426         avio_close(pb[2]);
427     }else{
428         if(av_str2id(img_tags, s->filename) == CODEC_ID_JPEG2000){
429             AVStream *st = s->streams[0];
430             if(st->codec->extradata_size > 8 &&
431                AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
432                 if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
433                     goto error;
434                 avio_wb32(pb[0], 12);
435                 ffio_wfourcc(pb[0], "jP  ");
436                 avio_wb32(pb[0], 0x0D0A870A); // signature
437                 avio_wb32(pb[0], 20);
438                 ffio_wfourcc(pb[0], "ftyp");
439                 ffio_wfourcc(pb[0], "jp2 ");
440                 avio_wb32(pb[0], 0);
441                 ffio_wfourcc(pb[0], "jp2 ");
442                 avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
443             }else if(pkt->size >= 8 && AV_RB32(pkt->data) == 0xFF4FFF51){
444                 //jpeg2000 codestream
445             }else if(pkt->size < 8 ||
446                      (!st->codec->extradata_size &&
447                       AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
448             error:
449                 av_log(s, AV_LOG_ERROR, "malformed JPEG 2000 codestream %X\n", AV_RB32(pkt->data));
450                 return -1;
451             }
452         }
453         avio_write(pb[0], pkt->data, pkt->size);
454     }
455     avio_flush(pb[0]);
456     if (!img->is_pipe) {
457         avio_close(pb[0]);
458     }
459
460     img->img_number++;
461     return 0;
462 }
463
464 #endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */
465
466 #define OFFSET(x) offsetof(VideoData, x)
467 #define DEC AV_OPT_FLAG_DECODING_PARAM
468 #define ENC AV_OPT_FLAG_ENCODING_PARAM
469 static const AVOption options[] = {
470     { "pixel_format", "", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
471     { "video_size",   "", OFFSET(video_size),   AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
472     { "framerate",    "", OFFSET(framerate),    AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
473     { "loop",         "", OFFSET(loop),         AV_OPT_TYPE_INT,    {.dbl = 0},    0, 1, DEC },
474     { NULL },
475 };
476
477 static const AVOption muxoptions[] = {
478     { "updatefirst",  "", OFFSET(updatefirst),  AV_OPT_TYPE_INT,    {.dbl = 0},    0, 1, ENC },
479     { NULL },
480 };
481
482 /* input */
483 #if CONFIG_IMAGE2_DEMUXER
484 static const AVClass img2_class = {
485     .class_name = "image2 demuxer",
486     .item_name  = av_default_item_name,
487     .option     = options,
488     .version    = LIBAVUTIL_VERSION_INT,
489 };
490 AVInputFormat ff_image2_demuxer = {
491     .name           = "image2",
492     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
493     .priv_data_size = sizeof(VideoData),
494     .read_probe     = read_probe,
495     .read_header    = read_header,
496     .read_packet    = read_packet,
497     .flags          = AVFMT_NOFILE,
498     .priv_class     = &img2_class,
499 };
500 #endif
501 #if CONFIG_IMAGE2PIPE_DEMUXER
502 static const AVClass img2pipe_class = {
503     .class_name = "image2pipe demuxer",
504     .item_name  = av_default_item_name,
505     .option     = options,
506     .version    = LIBAVUTIL_VERSION_INT,
507 };
508 AVInputFormat ff_image2pipe_demuxer = {
509     .name           = "image2pipe",
510     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
511     .priv_data_size = sizeof(VideoData),
512     .read_header    = read_header,
513     .read_packet    = read_packet,
514     .priv_class     = &img2pipe_class,
515 };
516 #endif
517
518 /* output */
519 #if CONFIG_IMAGE2_MUXER
520 static const AVClass img2mux_class = {
521     .class_name = "image2 muxer",
522     .item_name  = av_default_item_name,
523     .option     = muxoptions,
524     .version    = LIBAVUTIL_VERSION_INT,
525 };
526 AVOutputFormat ff_image2_muxer = {
527     .name           = "image2",
528     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
529     .extensions     = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
530                       "ppm,sgi,tga,tif,tiff,jp2",
531     .priv_data_size = sizeof(VideoData),
532     .video_codec    = CODEC_ID_MJPEG,
533     .write_header   = write_header,
534     .write_packet   = write_packet,
535     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
536     .priv_class     = &img2mux_class,
537 };
538 #endif
539 #if CONFIG_IMAGE2PIPE_MUXER
540 AVOutputFormat ff_image2pipe_muxer = {
541     .name           = "image2pipe",
542     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
543     .priv_data_size = sizeof(VideoData),
544     .video_codec    = CODEC_ID_MJPEG,
545     .write_header   = write_header,
546     .write_packet   = write_packet,
547     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
548 };
549 #endif