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