]> git.sesse.net Git - ffmpeg/blob - libavformat/img2.c
ARM: NEON optimised simple_idct
[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/avstring.h"
24 #include "avformat.h"
25 #include <strings.h>
26
27 typedef struct {
28     int img_first;
29     int img_last;
30     int img_number;
31     int img_count;
32     int is_pipe;
33     char path[1024];
34 } VideoData;
35
36 typedef struct {
37     enum CodecID id;
38     const char *str;
39 } IdStrMap;
40
41 static const IdStrMap img_tags[] = {
42     { CODEC_ID_MJPEG     , "jpeg"},
43     { CODEC_ID_MJPEG     , "jpg"},
44     { CODEC_ID_LJPEG     , "ljpg"},
45     { CODEC_ID_PNG       , "png"},
46     { CODEC_ID_PNG       , "mng"},
47     { CODEC_ID_PPM       , "ppm"},
48     { CODEC_ID_PPM       , "pnm"},
49     { CODEC_ID_PGM       , "pgm"},
50     { CODEC_ID_PGMYUV    , "pgmyuv"},
51     { CODEC_ID_PBM       , "pbm"},
52     { CODEC_ID_PAM       , "pam"},
53     { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
54     { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
55     { CODEC_ID_MPEG4     , "mpg4-img"},
56     { CODEC_ID_FFV1      , "ffv1-img"},
57     { CODEC_ID_RAWVIDEO  , "y"},
58     { CODEC_ID_BMP       , "bmp"},
59     { CODEC_ID_GIF       , "gif"},
60     { CODEC_ID_TARGA     , "tga"},
61     { CODEC_ID_TIFF      , "tiff"},
62     { CODEC_ID_TIFF      , "tif"},
63     { CODEC_ID_SGI       , "sgi"},
64     { CODEC_ID_PTX       , "ptx"},
65     { CODEC_ID_PCX       , "pcx"},
66     { CODEC_ID_SUNRAST   , "sun"},
67     { CODEC_ID_SUNRAST   , "ras"},
68     { CODEC_ID_SUNRAST   , "rs"},
69     { CODEC_ID_SUNRAST   , "im1"},
70     { CODEC_ID_SUNRAST   , "im8"},
71     { CODEC_ID_SUNRAST   , "im24"},
72     { CODEC_ID_SUNRAST   , "sunras"},
73     { CODEC_ID_NONE      , NULL}
74 };
75
76 static const int sizes[][2] = {
77     { 640, 480 },
78     { 720, 480 },
79     { 720, 576 },
80     { 352, 288 },
81     { 352, 240 },
82     { 160, 128 },
83     { 512, 384 },
84     { 640, 352 },
85     { 640, 240 },
86 };
87
88 static int infer_size(int *width_ptr, int *height_ptr, int size)
89 {
90     int i;
91
92     for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
93         if ((sizes[i][0] * sizes[i][1]) == size) {
94             *width_ptr = sizes[i][0];
95             *height_ptr = sizes[i][1];
96             return 0;
97         }
98     }
99     return -1;
100 }
101 static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
102 {
103     str= strrchr(str, '.');
104     if(!str) return CODEC_ID_NONE;
105     str++;
106
107     while (tags->id) {
108         if (!strcasecmp(str, tags->str))
109             return tags->id;
110
111         tags++;
112     }
113     return CODEC_ID_NONE;
114 }
115
116 /* return -1 if no image found */
117 static int find_image_range(int *pfirst_index, int *plast_index,
118                             const char *path)
119 {
120     char buf[1024];
121     int range, last_index, range1, first_index;
122
123     /* find the first image */
124     for(first_index = 0; first_index < 5; first_index++) {
125         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
126             *pfirst_index =
127             *plast_index = 1;
128             return 0;
129         }
130         if (url_exist(buf))
131             break;
132     }
133     if (first_index == 5)
134         goto fail;
135
136     /* find the last image */
137     last_index = first_index;
138     for(;;) {
139         range = 0;
140         for(;;) {
141             if (!range)
142                 range1 = 1;
143             else
144                 range1 = 2 * range;
145             if (av_get_frame_filename(buf, sizeof(buf), path,
146                                       last_index + range1) < 0)
147                 goto fail;
148             if (!url_exist(buf))
149                 break;
150             range = range1;
151             /* just in case... */
152             if (range >= (1 << 30))
153                 goto fail;
154         }
155         /* we are sure than image last_index + range exists */
156         if (!range)
157             break;
158         last_index += range;
159     }
160     *pfirst_index = first_index;
161     *plast_index = last_index;
162     return 0;
163  fail:
164     return -1;
165 }
166
167
168 static int image_probe(AVProbeData *p)
169 {
170     if (p->filename && av_str2id(img_tags, p->filename)) {
171         if (av_filename_number_test(p->filename))
172             return AVPROBE_SCORE_MAX;
173         else
174             return AVPROBE_SCORE_MAX/2;
175     }
176     return 0;
177 }
178
179 enum CodecID av_guess_image2_codec(const char *filename){
180     return av_str2id(img_tags, filename);
181 }
182
183 static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap)
184 {
185     VideoData *s = s1->priv_data;
186     int first_index, last_index;
187     AVStream *st;
188
189     s1->ctx_flags |= AVFMTCTX_NOHEADER;
190
191     st = av_new_stream(s1, 0);
192     if (!st) {
193         return AVERROR(ENOMEM);
194     }
195
196     av_strlcpy(s->path, s1->filename, sizeof(s->path));
197     s->img_number = 0;
198     s->img_count = 0;
199
200     /* find format */
201     if (s1->iformat->flags & AVFMT_NOFILE)
202         s->is_pipe = 0;
203     else{
204         s->is_pipe = 1;
205         st->need_parsing = AVSTREAM_PARSE_FULL;
206     }
207
208     if (!ap->time_base.num) {
209         av_set_pts_info(st, 60, 1, 25);
210     } else {
211         av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
212     }
213
214     if(ap->width && ap->height){
215         st->codec->width = ap->width;
216         st->codec->height= ap->height;
217     }
218
219     if (!s->is_pipe) {
220         if (find_image_range(&first_index, &last_index, s->path) < 0)
221             return AVERROR(EIO);
222         s->img_first = first_index;
223         s->img_last = last_index;
224         s->img_number = first_index;
225         /* compute duration */
226         st->start_time = 0;
227         st->duration = last_index - first_index + 1;
228     }
229
230     if(ap->video_codec_id){
231         st->codec->codec_type = CODEC_TYPE_VIDEO;
232         st->codec->codec_id = ap->video_codec_id;
233     }else if(ap->audio_codec_id){
234         st->codec->codec_type = CODEC_TYPE_AUDIO;
235         st->codec->codec_id = ap->audio_codec_id;
236     }else{
237         st->codec->codec_type = CODEC_TYPE_VIDEO;
238         st->codec->codec_id = av_str2id(img_tags, s->path);
239     }
240     if(st->codec->codec_type == CODEC_TYPE_VIDEO && ap->pix_fmt != PIX_FMT_NONE)
241         st->codec->pix_fmt = ap->pix_fmt;
242
243     return 0;
244 }
245
246 static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
247 {
248     VideoData *s = s1->priv_data;
249     char filename[1024];
250     int i;
251     int size[3]={0}, ret[3]={0};
252     ByteIOContext *f[3];
253     AVCodecContext *codec= s1->streams[0]->codec;
254
255     if (!s->is_pipe) {
256         /* loop over input */
257         if (s1->loop_input && s->img_number > s->img_last) {
258             s->img_number = s->img_first;
259         }
260         if (av_get_frame_filename(filename, sizeof(filename),
261                                   s->path, s->img_number)<0 && s->img_number > 1)
262             return AVERROR(EIO);
263         for(i=0; i<3; i++){
264             if (url_fopen(&f[i], filename, URL_RDONLY) < 0)
265                 return AVERROR(EIO);
266             size[i]= url_fsize(f[i]);
267
268             if(codec->codec_id != CODEC_ID_RAWVIDEO)
269                 break;
270             filename[ strlen(filename) - 1 ]= 'U' + i;
271         }
272
273         if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
274             infer_size(&codec->width, &codec->height, size[0]);
275     } else {
276         f[0] = s1->pb;
277         if (url_feof(f[0]))
278             return AVERROR(EIO);
279         size[0]= 4096;
280     }
281
282     av_new_packet(pkt, size[0] + size[1] + size[2]);
283     pkt->stream_index = 0;
284     pkt->flags |= PKT_FLAG_KEY;
285
286     pkt->size= 0;
287     for(i=0; i<3; i++){
288         if(size[i]){
289             ret[i]= get_buffer(f[i], pkt->data + pkt->size, size[i]);
290             if (!s->is_pipe)
291                 url_fclose(f[i]);
292             if(ret[i]>0)
293                 pkt->size += ret[i];
294         }
295     }
296
297     if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
298         av_free_packet(pkt);
299         return AVERROR(EIO); /* signal EOF */
300     } else {
301         s->img_count++;
302         s->img_number++;
303         return 0;
304     }
305 }
306
307 #if defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER)
308 /******************************************************/
309 /* image output */
310
311 static int img_write_header(AVFormatContext *s)
312 {
313     VideoData *img = s->priv_data;
314
315     img->img_number = 1;
316     av_strlcpy(img->path, s->filename, sizeof(img->path));
317
318     /* find format */
319     if (s->oformat->flags & AVFMT_NOFILE)
320         img->is_pipe = 0;
321     else
322         img->is_pipe = 1;
323
324     return 0;
325 }
326
327 static int img_write_packet(AVFormatContext *s, AVPacket *pkt)
328 {
329     VideoData *img = s->priv_data;
330     ByteIOContext *pb[3];
331     char filename[1024];
332     AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
333     int i;
334
335     if (!img->is_pipe) {
336         if (av_get_frame_filename(filename, sizeof(filename),
337                                   img->path, img->img_number) < 0 && img->img_number>1)
338             return AVERROR(EIO);
339         for(i=0; i<3; i++){
340             if (url_fopen(&pb[i], filename, URL_WRONLY) < 0)
341                 return AVERROR(EIO);
342
343             if(codec->codec_id != CODEC_ID_RAWVIDEO)
344                 break;
345             filename[ strlen(filename) - 1 ]= 'U' + i;
346         }
347     } else {
348         pb[0] = s->pb;
349     }
350
351     if(codec->codec_id == CODEC_ID_RAWVIDEO){
352         int ysize = codec->width * codec->height;
353         put_buffer(pb[0], pkt->data        , ysize);
354         put_buffer(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
355         put_buffer(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
356         put_flush_packet(pb[1]);
357         put_flush_packet(pb[2]);
358         url_fclose(pb[1]);
359         url_fclose(pb[2]);
360     }else{
361         put_buffer(pb[0], pkt->data, pkt->size);
362     }
363     put_flush_packet(pb[0]);
364     if (!img->is_pipe) {
365         url_fclose(pb[0]);
366     }
367
368     img->img_number++;
369     return 0;
370 }
371
372 #endif /* defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER) */
373
374 /* input */
375 #ifdef CONFIG_IMAGE2_DEMUXER
376 AVInputFormat image2_demuxer = {
377     "image2",
378     NULL_IF_CONFIG_SMALL("image2 sequence"),
379     sizeof(VideoData),
380     image_probe,
381     img_read_header,
382     img_read_packet,
383     NULL,
384     NULL,
385     NULL,
386     AVFMT_NOFILE,
387 };
388 #endif
389 #ifdef CONFIG_IMAGE2PIPE_DEMUXER
390 AVInputFormat image2pipe_demuxer = {
391     "image2pipe",
392     NULL_IF_CONFIG_SMALL("piped image2 sequence"),
393     sizeof(VideoData),
394     NULL, /* no probe */
395     img_read_header,
396     img_read_packet,
397 };
398 #endif
399
400 /* output */
401 #ifdef CONFIG_IMAGE2_MUXER
402 AVOutputFormat image2_muxer = {
403     "image2",
404     NULL_IF_CONFIG_SMALL("image2 sequence"),
405     "",
406     "bmp,jpeg,jpg,ljpg,pam,pbm,pgm,pgmyuv,png,ppm,sgi,tif,tiff",
407     sizeof(VideoData),
408     CODEC_ID_NONE,
409     CODEC_ID_MJPEG,
410     img_write_header,
411     img_write_packet,
412     NULL,
413     .flags= AVFMT_NOTIMESTAMPS | AVFMT_NOFILE
414 };
415 #endif
416 #ifdef CONFIG_IMAGE2PIPE_MUXER
417 AVOutputFormat image2pipe_muxer = {
418     "image2pipe",
419     NULL_IF_CONFIG_SMALL("piped image2 sequence"),
420     "",
421     "",
422     sizeof(VideoData),
423     CODEC_ID_NONE,
424     CODEC_ID_MJPEG,
425     img_write_header,
426     img_write_packet,
427     .flags= AVFMT_NOTIMESTAMPS
428 };
429 #endif