]> git.sesse.net Git - ffmpeg/blob - libavformat/img2enc.c
avformat/img2enc: minor simplification
[ffmpeg] / libavformat / img2enc.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/avassert.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/log.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/pixdesc.h"
29 #include "libavutil/time_internal.h"
30 #include "avformat.h"
31 #include "avio_internal.h"
32 #include "internal.h"
33 #include "img2.h"
34
35 typedef struct VideoMuxData {
36     const AVClass *class;  /**< Class for private options. */
37     int img_number;
38     int split_planes;       /**< use independent file for each Y, U, V plane */
39     char path[1024];
40     char tmp[4][1024];
41     char target[4][1024];
42     int update;
43     int use_strftime;
44     int frame_pts;
45     const char *muxer;
46     int use_rename;
47 } VideoMuxData;
48
49 static int write_header(AVFormatContext *s)
50 {
51     VideoMuxData *img = s->priv_data;
52     AVStream *st = s->streams[0];
53     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(st->codecpar->format);
54
55     av_strlcpy(img->path, s->url, sizeof(img->path));
56
57     if (st->codecpar->codec_id == AV_CODEC_ID_GIF) {
58         img->muxer = "gif";
59     } else if (st->codecpar->codec_id == AV_CODEC_ID_FITS) {
60         img->muxer = "fits";
61     } else if (st->codecpar->codec_id == AV_CODEC_ID_RAWVIDEO) {
62         const char *str = strrchr(img->path, '.');
63         img->split_planes =     str
64                              && !av_strcasecmp(str + 1, "y")
65                              && s->nb_streams == 1
66                              && desc
67                              &&(desc->flags & AV_PIX_FMT_FLAG_PLANAR)
68                              && desc->nb_components >= 3;
69     }
70
71     return 0;
72 }
73
74 static int write_muxed_file(AVFormatContext *s, AVIOContext *pb, AVPacket *pkt)
75 {
76     VideoMuxData *img = s->priv_data;
77     AVCodecParameters *par = s->streams[0]->codecpar;
78     AVStream *st;
79     AVPacket pkt2 = {0};
80     AVFormatContext *fmt = NULL;
81     int ret;
82
83     /* URL is not used directly as we are overriding the IO context later. */
84     ret = avformat_alloc_output_context2(&fmt, NULL, img->muxer, s->url);
85     if (ret < 0)
86         return ret;
87     st = avformat_new_stream(fmt, NULL);
88     if (!st) {
89         avformat_free_context(fmt);
90         return AVERROR(ENOMEM);
91     }
92     st->id = pkt->stream_index;
93
94     fmt->pb = pb;
95
96     if ((ret = av_packet_ref(&pkt2, pkt))                      < 0 ||
97         (ret = avcodec_parameters_copy(st->codecpar, par))     < 0 ||
98         (ret = avformat_write_header(fmt, NULL))               < 0 ||
99         (ret = av_interleaved_write_frame(fmt, &pkt2))         < 0 ||
100         (ret = av_write_trailer(fmt))) {}
101
102     av_packet_unref(&pkt2);
103     avformat_free_context(fmt);
104     return ret;
105 }
106
107 static int write_packet_pipe(AVFormatContext *s, AVPacket *pkt)
108 {
109     VideoMuxData *img = s->priv_data;
110     if (img->muxer) {
111         int ret = write_muxed_file(s, s->pb, pkt);
112         if (ret < 0)
113             return ret;
114     } else {
115         avio_write(s->pb, pkt->data, pkt->size);
116         avio_flush(s->pb);
117     }
118     img->img_number++;
119     return 0;
120 }
121
122 static int write_packet(AVFormatContext *s, AVPacket *pkt)
123 {
124     VideoMuxData *img = s->priv_data;
125     AVIOContext *pb[4] = {0};
126     char filename[1024];
127     AVCodecParameters *par = s->streams[pkt->stream_index]->codecpar;
128     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(par->format);
129     int ret, i;
130     int nb_renames = 0;
131
132     if (img->update) {
133         av_strlcpy(filename, img->path, sizeof(filename));
134     } else if (img->use_strftime) {
135         time_t now0;
136         struct tm *tm, tmpbuf;
137         time(&now0);
138         tm = localtime_r(&now0, &tmpbuf);
139         if (!strftime(filename, sizeof(filename), img->path, tm)) {
140             av_log(s, AV_LOG_ERROR, "Could not get frame filename with strftime\n");
141             return AVERROR(EINVAL);
142         }
143     } else if (img->frame_pts) {
144         if (av_get_frame_filename2(filename, sizeof(filename), img->path, pkt->pts, AV_FRAME_FILENAME_FLAGS_MULTIPLE) < 0) {
145             av_log(s, AV_LOG_ERROR, "Cannot write filename by pts of the frames.");
146             return AVERROR(EINVAL);
147         }
148     } else if (av_get_frame_filename2(filename, sizeof(filename), img->path,
149                                       img->img_number,
150                                       AV_FRAME_FILENAME_FLAGS_MULTIPLE) < 0 &&
151                img->img_number > 1) {
152         av_log(s, AV_LOG_ERROR,
153                "Could not get frame filename number %d from pattern '%s'. "
154                "Use '-frames:v 1' for a single image, or '-update' option, or use a pattern such as %%03d within the filename.\n",
155                img->img_number, img->path);
156         return AVERROR(EINVAL);
157     }
158     for (i = 0; i < 4; i++) {
159         snprintf(img->tmp[i], sizeof(img->tmp[i]), "%s.tmp", filename);
160         av_strlcpy(img->target[i], filename, sizeof(img->target[i]));
161         if (s->io_open(s, &pb[i], img->use_rename ? img->tmp[i] : filename, AVIO_FLAG_WRITE, NULL) < 0) {
162             av_log(s, AV_LOG_ERROR, "Could not open file : %s\n", img->use_rename ? img->tmp[i] : filename);
163             ret = AVERROR(EIO);
164             goto fail;
165         }
166
167         if (!img->split_planes || i+1 >= desc->nb_components)
168             break;
169         filename[strlen(filename) - 1] = "UVAx"[i];
170     }
171     if (img->use_rename)
172         nb_renames = i + 1;
173
174     if (img->split_planes) {
175         int ysize = par->width * par->height;
176         int usize = AV_CEIL_RSHIFT(par->width, desc->log2_chroma_w) * AV_CEIL_RSHIFT(par->height, desc->log2_chroma_h);
177         if (desc->comp[0].depth >= 9) {
178             ysize *= 2;
179             usize *= 2;
180         }
181         avio_write(pb[0], pkt->data                , ysize);
182         avio_write(pb[1], pkt->data + ysize        , usize);
183         avio_write(pb[2], pkt->data + ysize + usize, usize);
184         ff_format_io_close(s, &pb[1]);
185         ff_format_io_close(s, &pb[2]);
186         if (desc->nb_components > 3) {
187             avio_write(pb[3], pkt->data + ysize + 2*usize, ysize);
188             ff_format_io_close(s, &pb[3]);
189         }
190     } else if (img->muxer) {
191         ret = write_muxed_file(s, pb[0], pkt);
192         if (ret < 0)
193             goto fail;
194     } else {
195         avio_write(pb[0], pkt->data, pkt->size);
196     }
197     avio_flush(pb[0]);
198     ff_format_io_close(s, &pb[0]);
199     for (i = 0; i < nb_renames; i++) {
200         int ret = ff_rename(img->tmp[i], img->target[i], s);
201         if (ret < 0)
202             return ret;
203     }
204
205     img->img_number++;
206     return 0;
207
208 fail:
209     for (i = 0; i < FF_ARRAY_ELEMS(pb); i++)
210         if (pb[i])
211             ff_format_io_close(s, &pb[i]);
212     return ret;
213 }
214
215 static int query_codec(enum AVCodecID id, int std_compliance)
216 {
217     int i;
218     for (i = 0; ff_img_tags[i].id != AV_CODEC_ID_NONE; i++)
219         if (ff_img_tags[i].id == id)
220             return 1;
221
222     // Anything really can be stored in img2
223     return std_compliance < FF_COMPLIANCE_NORMAL;
224 }
225
226 #define OFFSET(x) offsetof(VideoMuxData, x)
227 #define ENC AV_OPT_FLAG_ENCODING_PARAM
228 static const AVOption muxoptions[] = {
229     { "update",       "continuously overwrite one file", OFFSET(update),  AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0,       1, ENC },
230     { "start_number", "set first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT,  { .i64 = 1 }, 0, INT_MAX, ENC },
231     { "strftime",     "use strftime for filename", OFFSET(use_strftime),  AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
232     { "frame_pts",    "use current frame pts for filename", OFFSET(frame_pts),  AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
233     { "atomic_writing", "write files atomically (using temporary files and renames)", OFFSET(use_rename), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
234     { NULL },
235 };
236
237 #if CONFIG_IMAGE2_MUXER
238 static const AVClass img2mux_class = {
239     .class_name = "image2 muxer",
240     .item_name  = av_default_item_name,
241     .option     = muxoptions,
242     .version    = LIBAVUTIL_VERSION_INT,
243 };
244
245 AVOutputFormat ff_image2_muxer = {
246     .name           = "image2",
247     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
248     .extensions     = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
249                       "ppm,sgi,tga,tif,tiff,jp2,j2c,j2k,xwd,sun,ras,rs,im1,im8,im24,"
250                       "sunras,xbm,xface,pix,y",
251     .priv_data_size = sizeof(VideoMuxData),
252     .video_codec    = AV_CODEC_ID_MJPEG,
253     .write_header   = write_header,
254     .write_packet   = write_packet,
255     .query_codec    = query_codec,
256     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
257     .priv_class     = &img2mux_class,
258 };
259 #endif
260 #if CONFIG_IMAGE2PIPE_MUXER
261 AVOutputFormat ff_image2pipe_muxer = {
262     .name           = "image2pipe",
263     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
264     .priv_data_size = sizeof(VideoMuxData),
265     .video_codec    = AV_CODEC_ID_MJPEG,
266     .write_header   = write_header,
267     .write_packet   = write_packet_pipe,
268     .query_codec    = query_codec,
269     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
270 };
271 #endif