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.

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