]> git.sesse.net Git - ffmpeg/blob - libavformat/img2enc.c
avformat/tcp: TCP Protocol: fix descriptor leak on listen and interrupt
[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 is_pipe;
39     int split_planes;       /**< use independent file for each Y, U, V plane */
40     char path[1024];
41     int update;
42     int use_strftime;
43     const char *muxer;
44 } VideoMuxData;
45
46 static int write_header(AVFormatContext *s)
47 {
48     VideoMuxData *img = s->priv_data;
49     AVStream *st = s->streams[0];
50     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(st->codec->pix_fmt);
51
52     av_strlcpy(img->path, s->filename, sizeof(img->path));
53
54     /* find format */
55     if (s->oformat->flags & AVFMT_NOFILE)
56         img->is_pipe = 0;
57     else
58         img->is_pipe = 1;
59
60     if (st->codec->codec_id == AV_CODEC_ID_GIF) {
61         img->muxer = "gif";
62     } else if (st->codec->codec_id == AV_CODEC_ID_RAWVIDEO) {
63         const char *str = strrchr(img->path, '.');
64         img->split_planes =     str
65                              && !av_strcasecmp(str + 1, "y")
66                              && s->nb_streams == 1
67                              && desc
68                              &&(desc->flags & AV_PIX_FMT_FLAG_PLANAR)
69                              && desc->nb_components >= 3;
70     }
71     return 0;
72 }
73
74 static int write_packet(AVFormatContext *s, AVPacket *pkt)
75 {
76     VideoMuxData *img = s->priv_data;
77     AVIOContext *pb[4];
78     char filename[1024];
79     AVCodecContext *codec = s->streams[pkt->stream_index]->codec;
80     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(codec->pix_fmt);
81     int i;
82
83     if (!img->is_pipe) {
84         if (img->update) {
85             av_strlcpy(filename, img->path, sizeof(filename));
86         } else if (img->use_strftime) {
87             time_t now0;
88             struct tm *tm, tmpbuf;
89             time(&now0);
90             tm = localtime_r(&now0, &tmpbuf);
91             if (!strftime(filename, sizeof(filename), img->path, tm)) {
92                 av_log(s, AV_LOG_ERROR, "Could not get frame filename with strftime\n");
93                 return AVERROR(EINVAL);
94             }
95         } else if (av_get_frame_filename(filename, sizeof(filename), img->path, img->img_number) < 0 &&
96                    img->img_number > 1) {
97             av_log(s, AV_LOG_ERROR,
98                    "Could not get frame filename number %d from pattern '%s' (either set updatefirst or use a pattern like %%03d within the filename pattern)\n",
99                    img->img_number, img->path);
100             return AVERROR(EINVAL);
101         }
102         for (i = 0; i < 4; i++) {
103             if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
104                            &s->interrupt_callback, NULL) < 0) {
105                 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n", filename);
106                 return AVERROR(EIO);
107             }
108
109             if (!img->split_planes || i+1 >= desc->nb_components)
110                 break;
111             filename[strlen(filename) - 1] = "UVAx"[i];
112         }
113     } else {
114         pb[0] = s->pb;
115     }
116
117     if (img->split_planes) {
118         int ysize = codec->width * codec->height;
119         int usize = FF_CEIL_RSHIFT(codec->width, desc->log2_chroma_w) * FF_CEIL_RSHIFT(codec->height, desc->log2_chroma_h);
120         if (desc->comp[0].depth >= 9) {
121             ysize *= 2;
122             usize *= 2;
123         }
124         avio_write(pb[0], pkt->data                , ysize);
125         avio_write(pb[1], pkt->data + ysize        , usize);
126         avio_write(pb[2], pkt->data + ysize + usize, usize);
127         avio_closep(&pb[1]);
128         avio_closep(&pb[2]);
129         if (desc->nb_components > 3) {
130             avio_write(pb[3], pkt->data + ysize + 2*usize, ysize);
131             avio_closep(&pb[3]);
132         }
133     } else if (img->muxer) {
134         int ret;
135         AVStream *st;
136         AVPacket pkt2 = {0};
137         AVFormatContext *fmt = NULL;
138
139         av_assert0(!img->split_planes);
140
141         ret = avformat_alloc_output_context2(&fmt, NULL, img->muxer, s->filename);
142         if (ret < 0)
143             return ret;
144         st = avformat_new_stream(fmt, NULL);
145         if (!st) {
146             avformat_free_context(fmt);
147             return AVERROR(ENOMEM);
148         }
149         st->id = pkt->stream_index;
150
151         fmt->pb = pb[0];
152         if ((ret = av_copy_packet(&pkt2, pkt))                            < 0 ||
153             (ret = av_dup_packet(&pkt2))                                  < 0 ||
154             (ret = avcodec_copy_context(st->codec, s->streams[0]->codec)) < 0 ||
155             (ret = avformat_write_header(fmt, NULL))                      < 0 ||
156             (ret = av_interleaved_write_frame(fmt, &pkt2))                < 0 ||
157             (ret = av_write_trailer(fmt))                                 < 0) {
158             av_free_packet(&pkt2);
159             avformat_free_context(fmt);
160             return ret;
161         }
162         av_free_packet(&pkt2);
163         avformat_free_context(fmt);
164     } else {
165         avio_write(pb[0], pkt->data, pkt->size);
166     }
167     avio_flush(pb[0]);
168     if (!img->is_pipe) {
169         avio_closep(&pb[0]);
170     }
171
172     img->img_number++;
173     return 0;
174 }
175
176 static int query_codec(enum AVCodecID id, int std_compliance)
177 {
178     int i;
179     for (i = 0; ff_img_tags[i].id != AV_CODEC_ID_NONE; i++)
180         if (ff_img_tags[i].id == id)
181             return 1;
182
183     // Anything really can be stored in img2
184     return std_compliance < FF_COMPLIANCE_NORMAL;
185 }
186
187 #define OFFSET(x) offsetof(VideoMuxData, x)
188 #define ENC AV_OPT_FLAG_ENCODING_PARAM
189 static const AVOption muxoptions[] = {
190     { "updatefirst",  "continuously overwrite one file", OFFSET(update),  AV_OPT_TYPE_INT, { .i64 = 0 }, 0,       1, ENC },
191     { "update",       "continuously overwrite one file", OFFSET(update),  AV_OPT_TYPE_INT, { .i64 = 0 }, 0,       1, ENC },
192     { "start_number", "set first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT,  { .i64 = 1 }, 0, INT_MAX, ENC },
193     { "strftime",     "use strftime for filename", OFFSET(use_strftime), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, ENC },
194     { NULL },
195 };
196
197 #if CONFIG_IMAGE2_MUXER
198 static const AVClass img2mux_class = {
199     .class_name = "image2 muxer",
200     .item_name  = av_default_item_name,
201     .option     = muxoptions,
202     .version    = LIBAVUTIL_VERSION_INT,
203 };
204
205 AVOutputFormat ff_image2_muxer = {
206     .name           = "image2",
207     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
208     .extensions     = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
209                       "ppm,sgi,tga,tif,tiff,jp2,j2c,j2k,xwd,sun,ras,rs,im1,im8,im24,"
210                       "sunras,xbm,xface,pix,y",
211     .priv_data_size = sizeof(VideoMuxData),
212     .video_codec    = AV_CODEC_ID_MJPEG,
213     .write_header   = write_header,
214     .write_packet   = write_packet,
215     .query_codec    = query_codec,
216     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
217     .priv_class     = &img2mux_class,
218 };
219 #endif
220 #if CONFIG_IMAGE2PIPE_MUXER
221 AVOutputFormat ff_image2pipe_muxer = {
222     .name           = "image2pipe",
223     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
224     .priv_data_size = sizeof(VideoMuxData),
225     .video_codec    = AV_CODEC_ID_MJPEG,
226     .write_header   = write_header,
227     .write_packet   = write_packet,
228     .query_codec    = query_codec,
229     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
230 };
231 #endif