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.

166 lines
5.6KB

  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 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
  87. goto error;
  88. avio_wb32(pb[0], 12);
  89. ffio_wfourcc(pb[0], "jP ");
  90. avio_wb32(pb[0], 0x0D0A870A); // signature
  91. avio_wb32(pb[0], 20);
  92. ffio_wfourcc(pb[0], "ftyp");
  93. ffio_wfourcc(pb[0], "jp2 ");
  94. avio_wb32(pb[0], 0);
  95. ffio_wfourcc(pb[0], "jp2 ");
  96. avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
  97. }else if(pkt->size < 8 ||
  98. (!st->codec->extradata_size &&
  99. AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
  100. error:
  101. av_log(s, AV_LOG_ERROR, "malformed JPEG 2000 codestream\n");
  102. return -1;
  103. }
  104. }
  105. avio_write(pb[0], pkt->data, pkt->size);
  106. }
  107. avio_flush(pb[0]);
  108. if (!img->is_pipe) {
  109. avio_close(pb[0]);
  110. }
  111. img->img_number++;
  112. return 0;
  113. }
  114. #define OFFSET(x) offsetof(VideoMuxData, x)
  115. #define ENC AV_OPT_FLAG_ENCODING_PARAM
  116. static const AVOption muxoptions[] = {
  117. { "start_number", "first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT, {.i64 = 1}, 1, INT_MAX, ENC },
  118. { NULL },
  119. };
  120. #if CONFIG_IMAGE2_MUXER
  121. static const AVClass img2mux_class = {
  122. .class_name = "image2 muxer",
  123. .item_name = av_default_item_name,
  124. .option = muxoptions,
  125. .version = LIBAVUTIL_VERSION_INT,
  126. };
  127. AVOutputFormat ff_image2_muxer = {
  128. .name = "image2",
  129. .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
  130. .extensions = "bmp,dpx,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
  131. "ppm,sgi,tga,tif,tiff,jp2,xwd,sun,ras,rs,im1,im8,im24,"
  132. "sunras,xbm",
  133. .priv_data_size = sizeof(VideoMuxData),
  134. .video_codec = AV_CODEC_ID_MJPEG,
  135. .write_header = write_header,
  136. .write_packet = write_packet,
  137. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
  138. .priv_class = &img2mux_class,
  139. };
  140. #endif
  141. #if CONFIG_IMAGE2PIPE_MUXER
  142. AVOutputFormat ff_image2pipe_muxer = {
  143. .name = "image2pipe",
  144. .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
  145. .priv_data_size = sizeof(VideoMuxData),
  146. .video_codec = AV_CODEC_ID_MJPEG,
  147. .write_header = write_header,
  148. .write_packet = write_packet,
  149. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
  150. };
  151. #endif