]> git.sesse.net Git - ffmpeg/blob - libavformat/img2enc.c
avformat/img2enc: fix writing multiple streams in write_muxed_file
[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[pkt->stream_index]->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     ret = av_packet_ref(&pkt2, pkt);
97     if (ret < 0)
98         goto out;
99     pkt2.stream_index = 0;
100
101     if ((ret = avcodec_parameters_copy(st->codecpar, par))     < 0 ||
102         (ret = avformat_write_header(fmt, NULL))               < 0 ||
103         (ret = av_interleaved_write_frame(fmt, &pkt2))         < 0 ||
104         (ret = av_write_trailer(fmt))) {}
105
106 out:
107     av_packet_unref(&pkt2);
108     avformat_free_context(fmt);
109     return ret;
110 }
111
112 static int write_packet_pipe(AVFormatContext *s, AVPacket *pkt)
113 {
114     VideoMuxData *img = s->priv_data;
115     if (img->muxer) {
116         int ret = write_muxed_file(s, s->pb, pkt);
117         if (ret < 0)
118             return ret;
119     } else {
120         avio_write(s->pb, pkt->data, pkt->size);
121         avio_flush(s->pb);
122     }
123     img->img_number++;
124     return 0;
125 }
126
127 static int write_packet(AVFormatContext *s, AVPacket *pkt)
128 {
129     VideoMuxData *img = s->priv_data;
130     AVIOContext *pb[4] = {0};
131     char filename[1024];
132     AVCodecParameters *par = s->streams[pkt->stream_index]->codecpar;
133     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(par->format);
134     int ret, i;
135     int nb_renames = 0;
136
137     if (img->update) {
138         av_strlcpy(filename, img->path, sizeof(filename));
139     } else if (img->use_strftime) {
140         time_t now0;
141         struct tm *tm, tmpbuf;
142         time(&now0);
143         tm = localtime_r(&now0, &tmpbuf);
144         if (!strftime(filename, sizeof(filename), img->path, tm)) {
145             av_log(s, AV_LOG_ERROR, "Could not get frame filename with strftime\n");
146             return AVERROR(EINVAL);
147         }
148     } else if (img->frame_pts) {
149         if (av_get_frame_filename2(filename, sizeof(filename), img->path, pkt->pts, AV_FRAME_FILENAME_FLAGS_MULTIPLE) < 0) {
150             av_log(s, AV_LOG_ERROR, "Cannot write filename by pts of the frames.");
151             return AVERROR(EINVAL);
152         }
153     } else if (av_get_frame_filename2(filename, sizeof(filename), img->path,
154                                       img->img_number,
155                                       AV_FRAME_FILENAME_FLAGS_MULTIPLE) < 0 &&
156                img->img_number > 1) {
157         av_log(s, AV_LOG_ERROR,
158                "Could not get frame filename number %d from pattern '%s'. "
159                "Use '-frames:v 1' for a single image, or '-update' option, or use a pattern such as %%03d within the filename.\n",
160                img->img_number, img->path);
161         return AVERROR(EINVAL);
162     }
163     for (i = 0; i < 4; i++) {
164         snprintf(img->tmp[i], sizeof(img->tmp[i]), "%s.tmp", filename);
165         av_strlcpy(img->target[i], filename, sizeof(img->target[i]));
166         if (s->io_open(s, &pb[i], img->use_rename ? img->tmp[i] : filename, AVIO_FLAG_WRITE, NULL) < 0) {
167             av_log(s, AV_LOG_ERROR, "Could not open file : %s\n", img->use_rename ? img->tmp[i] : filename);
168             ret = AVERROR(EIO);
169             goto fail;
170         }
171
172         if (!img->split_planes || i+1 >= desc->nb_components)
173             break;
174         filename[strlen(filename) - 1] = "UVAx"[i];
175     }
176     if (img->use_rename)
177         nb_renames = i + 1;
178
179     if (img->split_planes) {
180         int ysize = par->width * par->height;
181         int usize = AV_CEIL_RSHIFT(par->width, desc->log2_chroma_w) * AV_CEIL_RSHIFT(par->height, desc->log2_chroma_h);
182         if (desc->comp[0].depth >= 9) {
183             ysize *= 2;
184             usize *= 2;
185         }
186         avio_write(pb[0], pkt->data                , ysize);
187         avio_write(pb[1], pkt->data + ysize        , usize);
188         avio_write(pb[2], pkt->data + ysize + usize, usize);
189         ff_format_io_close(s, &pb[1]);
190         ff_format_io_close(s, &pb[2]);
191         if (desc->nb_components > 3) {
192             avio_write(pb[3], pkt->data + ysize + 2*usize, ysize);
193             ff_format_io_close(s, &pb[3]);
194         }
195     } else if (img->muxer) {
196         ret = write_muxed_file(s, pb[0], pkt);
197         if (ret < 0)
198             goto fail;
199     } else {
200         avio_write(pb[0], pkt->data, pkt->size);
201     }
202     avio_flush(pb[0]);
203     ff_format_io_close(s, &pb[0]);
204     for (i = 0; i < nb_renames; i++) {
205         int ret = ff_rename(img->tmp[i], img->target[i], s);
206         if (ret < 0)
207             return ret;
208     }
209
210     img->img_number++;
211     return 0;
212
213 fail:
214     for (i = 0; i < FF_ARRAY_ELEMS(pb); i++)
215         if (pb[i])
216             ff_format_io_close(s, &pb[i]);
217     return ret;
218 }
219
220 static int query_codec(enum AVCodecID id, int std_compliance)
221 {
222     int i;
223     for (i = 0; ff_img_tags[i].id != AV_CODEC_ID_NONE; i++)
224         if (ff_img_tags[i].id == id)
225             return 1;
226
227     // Anything really can be stored in img2
228     return std_compliance < FF_COMPLIANCE_NORMAL;
229 }
230
231 #define OFFSET(x) offsetof(VideoMuxData, x)
232 #define ENC AV_OPT_FLAG_ENCODING_PARAM
233 static const AVOption muxoptions[] = {
234     { "update",       "continuously overwrite one file", OFFSET(update),  AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0,       1, ENC },
235     { "start_number", "set first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT,  { .i64 = 1 }, 0, INT_MAX, ENC },
236     { "strftime",     "use strftime for filename", OFFSET(use_strftime),  AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
237     { "frame_pts",    "use current frame pts for filename", OFFSET(frame_pts),  AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
238     { "atomic_writing", "write files atomically (using temporary files and renames)", OFFSET(use_rename), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
239     { NULL },
240 };
241
242 #if CONFIG_IMAGE2_MUXER
243 static const AVClass img2mux_class = {
244     .class_name = "image2 muxer",
245     .item_name  = av_default_item_name,
246     .option     = muxoptions,
247     .version    = LIBAVUTIL_VERSION_INT,
248 };
249
250 AVOutputFormat ff_image2_muxer = {
251     .name           = "image2",
252     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
253     .extensions     = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
254                       "ppm,sgi,tga,tif,tiff,jp2,j2c,j2k,xwd,sun,ras,rs,im1,im8,im24,"
255                       "sunras,xbm,xface,pix,y",
256     .priv_data_size = sizeof(VideoMuxData),
257     .video_codec    = AV_CODEC_ID_MJPEG,
258     .write_header   = write_header,
259     .write_packet   = write_packet,
260     .query_codec    = query_codec,
261     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
262     .priv_class     = &img2mux_class,
263 };
264 #endif
265 #if CONFIG_IMAGE2PIPE_MUXER
266 AVOutputFormat ff_image2pipe_muxer = {
267     .name           = "image2pipe",
268     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
269     .priv_data_size = sizeof(VideoMuxData),
270     .video_codec    = AV_CODEC_ID_MJPEG,
271     .write_header   = write_header,
272     .write_packet   = write_packet_pipe,
273     .query_codec    = query_codec,
274     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
275 };
276 #endif