]> git.sesse.net Git - ffmpeg/blob - libavformat/img2.c
Remove return statements following infinite loops without break
[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 Libav.
7  *
8  * Libav 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  * Libav 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 Libav; 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 #include <strings.h>
33
34 typedef struct {
35     const AVClass *class;  /**< Class for private options. */
36     int img_first;
37     int img_last;
38     int img_number;
39     int img_count;
40     int is_pipe;
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 } VideoData;
46
47 typedef struct {
48     enum CodecID id;
49     const char *str;
50 } IdStrMap;
51
52 static const IdStrMap img_tags[] = {
53     { CODEC_ID_MJPEG     , "jpeg"},
54     { CODEC_ID_MJPEG     , "jpg"},
55     { CODEC_ID_LJPEG     , "ljpg"},
56     { CODEC_ID_PNG       , "png"},
57     { CODEC_ID_PNG       , "mng"},
58     { CODEC_ID_PPM       , "ppm"},
59     { CODEC_ID_PPM       , "pnm"},
60     { CODEC_ID_PGM       , "pgm"},
61     { CODEC_ID_PGMYUV    , "pgmyuv"},
62     { CODEC_ID_PBM       , "pbm"},
63     { CODEC_ID_PAM       , "pam"},
64     { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
65     { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
66     { CODEC_ID_MPEG4     , "mpg4-img"},
67     { CODEC_ID_FFV1      , "ffv1-img"},
68     { CODEC_ID_RAWVIDEO  , "y"},
69     { CODEC_ID_BMP       , "bmp"},
70     { CODEC_ID_GIF       , "gif"},
71     { CODEC_ID_TARGA     , "tga"},
72     { CODEC_ID_TIFF      , "tiff"},
73     { CODEC_ID_TIFF      , "tif"},
74     { CODEC_ID_SGI       , "sgi"},
75     { CODEC_ID_PTX       , "ptx"},
76     { CODEC_ID_PCX       , "pcx"},
77     { CODEC_ID_SUNRAST   , "sun"},
78     { CODEC_ID_SUNRAST   , "ras"},
79     { CODEC_ID_SUNRAST   , "rs"},
80     { CODEC_ID_SUNRAST   , "im1"},
81     { CODEC_ID_SUNRAST   , "im8"},
82     { CODEC_ID_SUNRAST   , "im24"},
83     { CODEC_ID_SUNRAST   , "sunras"},
84     { CODEC_ID_JPEG2000  , "jp2"},
85     { CODEC_ID_JPEG2000  , "jpc"},
86     { CODEC_ID_DPX       , "dpx"},
87     { CODEC_ID_PICTOR    , "pic"},
88     { CODEC_ID_NONE      , NULL}
89 };
90
91 static const int sizes[][2] = {
92     { 640, 480 },
93     { 720, 480 },
94     { 720, 576 },
95     { 352, 288 },
96     { 352, 240 },
97     { 160, 128 },
98     { 512, 384 },
99     { 640, 352 },
100     { 640, 240 },
101 };
102
103 static int infer_size(int *width_ptr, int *height_ptr, int size)
104 {
105     int i;
106
107     for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
108         if ((sizes[i][0] * sizes[i][1]) == size) {
109             *width_ptr = sizes[i][0];
110             *height_ptr = sizes[i][1];
111             return 0;
112         }
113     }
114     return -1;
115 }
116 static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
117 {
118     str= strrchr(str, '.');
119     if(!str) return CODEC_ID_NONE;
120     str++;
121
122     while (tags->id) {
123         if (!strcasecmp(str, tags->str))
124             return tags->id;
125
126         tags++;
127     }
128     return CODEC_ID_NONE;
129 }
130
131 /* return -1 if no image found */
132 static int find_image_range(int *pfirst_index, int *plast_index,
133                             const char *path)
134 {
135     char buf[1024];
136     int range, last_index, range1, first_index;
137
138     /* find the first image */
139     for(first_index = 0; first_index < 5; first_index++) {
140         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
141             *pfirst_index =
142             *plast_index = 1;
143             if (avio_check(buf, AVIO_FLAG_READ) > 0)
144                 return 0;
145             return -1;
146         }
147         if (avio_check(buf, AVIO_FLAG_READ) > 0)
148             break;
149     }
150     if (first_index == 5)
151         goto fail;
152
153     /* find the last image */
154     last_index = first_index;
155     for(;;) {
156         range = 0;
157         for(;;) {
158             if (!range)
159                 range1 = 1;
160             else
161                 range1 = 2 * range;
162             if (av_get_frame_filename(buf, sizeof(buf), path,
163                                       last_index + range1) < 0)
164                 goto fail;
165             if (avio_check(buf, AVIO_FLAG_READ) <= 0)
166                 break;
167             range = range1;
168             /* just in case... */
169             if (range >= (1 << 30))
170                 goto fail;
171         }
172         /* we are sure than image last_index + range exists */
173         if (!range)
174             break;
175         last_index += range;
176     }
177     *pfirst_index = first_index;
178     *plast_index = last_index;
179     return 0;
180  fail:
181     return -1;
182 }
183
184
185 static int read_probe(AVProbeData *p)
186 {
187     if (p->filename && av_str2id(img_tags, p->filename)) {
188         if (av_filename_number_test(p->filename))
189             return AVPROBE_SCORE_MAX;
190         else
191             return AVPROBE_SCORE_MAX/2;
192     }
193     return 0;
194 }
195
196 enum CodecID ff_guess_image2_codec(const char *filename)
197 {
198     return av_str2id(img_tags, filename);
199 }
200
201 #if FF_API_GUESS_IMG2_CODEC
202 enum CodecID av_guess_image2_codec(const char *filename){
203     return av_str2id(img_tags, filename);
204 }
205 #endif
206
207 static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
208 {
209     VideoData *s = s1->priv_data;
210     int first_index, last_index, ret = 0;
211     int width = 0, height = 0;
212     AVStream *st;
213     enum PixelFormat pix_fmt = PIX_FMT_NONE;
214     AVRational framerate;
215
216     s1->ctx_flags |= AVFMTCTX_NOHEADER;
217
218     st = av_new_stream(s1, 0);
219     if (!st) {
220         return AVERROR(ENOMEM);
221     }
222
223     if (s->pixel_format && (pix_fmt = av_get_pix_fmt(s->pixel_format)) == PIX_FMT_NONE) {
224         av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n", s->pixel_format);
225         return AVERROR(EINVAL);
226     }
227     if (s->video_size && (ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
228         av_log(s, AV_LOG_ERROR, "Could not parse video size: %s.\n", s->video_size);
229         return ret;
230     }
231     if ((ret = av_parse_video_rate(&framerate, s->framerate)) < 0) {
232         av_log(s, AV_LOG_ERROR, "Could not parse framerate: %s.\n", s->framerate);
233         return ret;
234     }
235 #if FF_API_FORMAT_PARAMETERS
236     if (ap->pix_fmt != PIX_FMT_NONE)
237         pix_fmt = ap->pix_fmt;
238     if (ap->width > 0)
239         width = ap->width;
240     if (ap->height > 0)
241         height = ap->height;
242     if (ap->time_base.num)
243         framerate = (AVRational){ap->time_base.den, ap->time_base.num};
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     av_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         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
284         st->codec->codec_id = av_str2id(img_tags, s->path);
285     }
286     if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO && pix_fmt != PIX_FMT_NONE)
287         st->codec->pix_fmt = pix_fmt;
288
289     return 0;
290 }
291
292 static int read_packet(AVFormatContext *s1, AVPacket *pkt)
293 {
294     VideoData *s = s1->priv_data;
295     char filename[1024];
296     int i;
297     int size[3]={0}, ret[3]={0};
298     AVIOContext *f[3];
299     AVCodecContext *codec= s1->streams[0]->codec;
300
301     if (!s->is_pipe) {
302         /* loop over input */
303         if (s1->loop_input && s->img_number > s->img_last) {
304             s->img_number = s->img_first;
305         }
306         if (s->img_number > s->img_last)
307             return AVERROR_EOF;
308         if (av_get_frame_filename(filename, sizeof(filename),
309                                   s->path, s->img_number)<0 && s->img_number > 1)
310             return AVERROR(EIO);
311         for(i=0; i<3; i++){
312             if (avio_open(&f[i], filename, AVIO_FLAG_READ) < 0) {
313                 if(i==1)
314                     break;
315                 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename);
316                 return AVERROR(EIO);
317             }
318             size[i]= avio_size(f[i]);
319
320             if(codec->codec_id != CODEC_ID_RAWVIDEO)
321                 break;
322             filename[ strlen(filename) - 1 ]= 'U' + i;
323         }
324
325         if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
326             infer_size(&codec->width, &codec->height, size[0]);
327     } else {
328         f[0] = s1->pb;
329         if (f[0]->eof_reached)
330             return AVERROR(EIO);
331         size[0]= 4096;
332     }
333
334     av_new_packet(pkt, size[0] + size[1] + size[2]);
335     pkt->stream_index = 0;
336     pkt->flags |= AV_PKT_FLAG_KEY;
337
338     pkt->size= 0;
339     for(i=0; i<3; i++){
340         if(size[i]){
341             ret[i]= avio_read(f[i], pkt->data + pkt->size, size[i]);
342             if (!s->is_pipe)
343                 avio_close(f[i]);
344             if(ret[i]>0)
345                 pkt->size += ret[i];
346         }
347     }
348
349     if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
350         av_free_packet(pkt);
351         return AVERROR(EIO); /* signal EOF */
352     } else {
353         s->img_count++;
354         s->img_number++;
355         return 0;
356     }
357 }
358
359 #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER
360 /******************************************************/
361 /* image output */
362
363 static int write_header(AVFormatContext *s)
364 {
365     VideoData *img = s->priv_data;
366
367     img->img_number = 1;
368     av_strlcpy(img->path, s->filename, sizeof(img->path));
369
370     /* find format */
371     if (s->oformat->flags & AVFMT_NOFILE)
372         img->is_pipe = 0;
373     else
374         img->is_pipe = 1;
375
376     return 0;
377 }
378
379 static int write_packet(AVFormatContext *s, AVPacket *pkt)
380 {
381     VideoData *img = s->priv_data;
382     AVIOContext *pb[3];
383     char filename[1024];
384     AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
385     int i;
386
387     if (!img->is_pipe) {
388         if (av_get_frame_filename(filename, sizeof(filename),
389                                   img->path, img->img_number) < 0 && img->img_number>1) {
390             av_log(s, AV_LOG_ERROR,
391                    "Could not get frame filename number %d from pattern '%s'\n",
392                    img->img_number, img->path);
393             return AVERROR(EIO);
394         }
395         for(i=0; i<3; i++){
396             if (avio_open(&pb[i], filename, AVIO_FLAG_WRITE) < 0) {
397                 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
398                 return AVERROR(EIO);
399             }
400
401             if(codec->codec_id != CODEC_ID_RAWVIDEO)
402                 break;
403             filename[ strlen(filename) - 1 ]= 'U' + i;
404         }
405     } else {
406         pb[0] = s->pb;
407     }
408
409     if(codec->codec_id == CODEC_ID_RAWVIDEO){
410         int ysize = codec->width * codec->height;
411         avio_write(pb[0], pkt->data        , ysize);
412         avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
413         avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
414         avio_flush(pb[1]);
415         avio_flush(pb[2]);
416         avio_close(pb[1]);
417         avio_close(pb[2]);
418     }else{
419         if(av_str2id(img_tags, s->filename) == CODEC_ID_JPEG2000){
420             AVStream *st = s->streams[0];
421             if(st->codec->extradata_size > 8 &&
422                AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
423                 if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
424                     goto error;
425                 avio_wb32(pb[0], 12);
426                 ffio_wfourcc(pb[0], "jP  ");
427                 avio_wb32(pb[0], 0x0D0A870A); // signature
428                 avio_wb32(pb[0], 20);
429                 ffio_wfourcc(pb[0], "ftyp");
430                 ffio_wfourcc(pb[0], "jp2 ");
431                 avio_wb32(pb[0], 0);
432                 ffio_wfourcc(pb[0], "jp2 ");
433                 avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
434             }else if(pkt->size < 8 ||
435                      (!st->codec->extradata_size &&
436                       AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
437             error:
438                 av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream\n");
439                 return -1;
440             }
441         }
442         avio_write(pb[0], pkt->data, pkt->size);
443     }
444     avio_flush(pb[0]);
445     if (!img->is_pipe) {
446         avio_close(pb[0]);
447     }
448
449     img->img_number++;
450     return 0;
451 }
452
453 #endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */
454
455 #define OFFSET(x) offsetof(VideoData, x)
456 #define DEC AV_OPT_FLAG_DECODING_PARAM
457 static const AVOption options[] = {
458     { "pixel_format", "", OFFSET(pixel_format), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
459     { "video_size",   "", OFFSET(video_size),   FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
460     { "framerate",    "", OFFSET(framerate),    FF_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
461     { NULL },
462 };
463
464 static const AVClass img2_class = {
465     .class_name = "image2 demuxer",
466     .item_name  = av_default_item_name,
467     .option     = options,
468     .version    = LIBAVUTIL_VERSION_INT,
469 };
470
471 /* input */
472 #if CONFIG_IMAGE2_DEMUXER
473 AVInputFormat ff_image2_demuxer = {
474     .name           = "image2",
475     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
476     .priv_data_size = sizeof(VideoData),
477     .read_probe     = read_probe,
478     .read_header    = read_header,
479     .read_packet    = read_packet,
480     .flags          = AVFMT_NOFILE,
481     .priv_class     = &img2_class,
482 };
483 #endif
484 #if CONFIG_IMAGE2PIPE_DEMUXER
485 AVInputFormat ff_image2pipe_demuxer = {
486     .name           = "image2pipe",
487     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
488     .priv_data_size = sizeof(VideoData),
489     .read_header    = read_header,
490     .read_packet    = read_packet,
491     .priv_class     = &img2_class,
492 };
493 #endif
494
495 /* output */
496 #if CONFIG_IMAGE2_MUXER
497 AVOutputFormat ff_image2_muxer = {
498     .name           = "image2",
499     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
500     .extensions     = "bmp,dpx,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
501                       "ppm,sgi,tga,tif,tiff,jp2",
502     .priv_data_size = sizeof(VideoData),
503     .video_codec    = CODEC_ID_MJPEG,
504     .write_header   = write_header,
505     .write_packet   = write_packet,
506     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE
507 };
508 #endif
509 #if CONFIG_IMAGE2PIPE_MUXER
510 AVOutputFormat ff_image2pipe_muxer = {
511     .name           = "image2pipe",
512     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
513     .priv_data_size = sizeof(VideoData),
514     .video_codec    = CODEC_ID_MJPEG,
515     .write_header   = write_header,
516     .write_packet   = write_packet,
517     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
518 };
519 #endif