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