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.

167 lines
5.7KB

  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 Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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/avstring.h"
  24. #include "libavutil/log.h"
  25. #include "avformat.h"
  26. #include "avio_internal.h"
  27. #include "internal.h"
  28. #include "libavutil/opt.h"
  29. typedef struct {
  30. const AVClass *class; /**< Class for private options. */
  31. int img_number;
  32. int is_pipe;
  33. char path[1024];
  34. } VideoMuxData;
  35. static int write_header(AVFormatContext *s)
  36. {
  37. VideoMuxData *img = s->priv_data;
  38. av_strlcpy(img->path, s->filename, sizeof(img->path));
  39. /* find format */
  40. if (s->oformat->flags & AVFMT_NOFILE)
  41. img->is_pipe = 0;
  42. else
  43. img->is_pipe = 1;
  44. return 0;
  45. }
  46. static int write_packet(AVFormatContext *s, AVPacket *pkt)
  47. {
  48. VideoMuxData *img = s->priv_data;
  49. AVIOContext *pb[3];
  50. char filename[1024];
  51. AVCodecContext *codec = s->streams[pkt->stream_index]->codec;
  52. int i;
  53. if (!img->is_pipe) {
  54. if (av_get_frame_filename(filename, sizeof(filename),
  55. img->path, img->img_number) < 0 && img->img_number > 1) {
  56. av_log(s, AV_LOG_ERROR,
  57. "Could not get frame filename number %d from pattern '%s'\n",
  58. img->img_number, img->path);
  59. return AVERROR(EIO);
  60. }
  61. for (i = 0; i < 3; i++) {
  62. if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
  63. &s->interrupt_callback, NULL) < 0) {
  64. av_log(s, AV_LOG_ERROR, "Could not open file : %s\n", filename);
  65. return AVERROR(EIO);
  66. }
  67. if (codec->codec_id != AV_CODEC_ID_RAWVIDEO)
  68. break;
  69. filename[strlen(filename) - 1] = 'U' + i;
  70. }
  71. } else {
  72. pb[0] = s->pb;
  73. }
  74. if (codec->codec_id == AV_CODEC_ID_RAWVIDEO) {
  75. int ysize = codec->width * codec->height;
  76. avio_write(pb[0], pkt->data, ysize);
  77. avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize) / 2);
  78. avio_write(pb[2], pkt->data + ysize + (pkt->size - ysize) / 2, (pkt->size - ysize) / 2);
  79. avio_close(pb[1]);
  80. avio_close(pb[2]);
  81. } else {
  82. if (ff_guess_image2_codec(s->filename) == AV_CODEC_ID_JPEG2000) {
  83. AVStream *st = s->streams[0];
  84. if (st->codec->extradata_size > 8 &&
  85. AV_RL32(st->codec->extradata + 4) == MKTAG('j', 'p', '2', 'h')) {
  86. if (pkt->size < 8 ||
  87. AV_RL32(pkt->data + 4) != MKTAG('j', 'p', '2', 'c'))
  88. goto error;
  89. avio_wb32(pb[0], 12);
  90. ffio_wfourcc(pb[0], "jP ");
  91. avio_wb32(pb[0], 0x0D0A870A); // signature
  92. avio_wb32(pb[0], 20);
  93. ffio_wfourcc(pb[0], "ftyp");
  94. ffio_wfourcc(pb[0], "jp2 ");
  95. avio_wb32(pb[0], 0);
  96. ffio_wfourcc(pb[0], "jp2 ");
  97. avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
  98. } else if (pkt->size < 8 ||
  99. (!st->codec->extradata_size &&
  100. AV_RL32(pkt->data + 4) != MKTAG('j', 'P', ' ', ' '))) { // signature
  101. error:
  102. av_log(s, AV_LOG_ERROR, "malformed JPEG 2000 codestream\n");
  103. return -1;
  104. }
  105. }
  106. avio_write(pb[0], pkt->data, pkt->size);
  107. }
  108. avio_flush(pb[0]);
  109. if (!img->is_pipe) {
  110. avio_close(pb[0]);
  111. }
  112. img->img_number++;
  113. return 0;
  114. }
  115. #define OFFSET(x) offsetof(VideoMuxData, x)
  116. #define ENC AV_OPT_FLAG_ENCODING_PARAM
  117. static const AVOption muxoptions[] = {
  118. { "start_number", "first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, INT_MAX, ENC },
  119. { NULL },
  120. };
  121. #if CONFIG_IMAGE2_MUXER
  122. static const AVClass img2mux_class = {
  123. .class_name = "image2 muxer",
  124. .item_name = av_default_item_name,
  125. .option = muxoptions,
  126. .version = LIBAVUTIL_VERSION_INT,
  127. };
  128. AVOutputFormat ff_image2_muxer = {
  129. .name = "image2",
  130. .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
  131. .extensions = "bmp,dpx,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
  132. "ppm,sgi,tga,tif,tiff,jp2,xwd,sun,ras,rs,im1,im8,im24,"
  133. "sunras,xbm",
  134. .priv_data_size = sizeof(VideoMuxData),
  135. .video_codec = AV_CODEC_ID_MJPEG,
  136. .write_header = write_header,
  137. .write_packet = write_packet,
  138. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
  139. .priv_class = &img2mux_class,
  140. };
  141. #endif
  142. #if CONFIG_IMAGE2PIPE_MUXER
  143. AVOutputFormat ff_image2pipe_muxer = {
  144. .name = "image2pipe",
  145. .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
  146. .priv_data_size = sizeof(VideoMuxData),
  147. .video_codec = AV_CODEC_ID_MJPEG,
  148. .write_header = write_header,
  149. .write_packet = write_packet,
  150. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
  151. };
  152. #endif