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