You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

287 lines
10KB

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