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.

249 lines
9.0KB

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