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.

152 lines
5.1KB

  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. typedef struct {
  29. int img_number;
  30. int is_pipe;
  31. char path[1024];
  32. } VideoMuxData;
  33. static int write_header(AVFormatContext *s)
  34. {
  35. VideoMuxData *img = s->priv_data;
  36. img->img_number = 1;
  37. av_strlcpy(img->path, s->filename, sizeof(img->path));
  38. /* find format */
  39. if (s->oformat->flags & AVFMT_NOFILE)
  40. img->is_pipe = 0;
  41. else
  42. img->is_pipe = 1;
  43. return 0;
  44. }
  45. static int write_packet(AVFormatContext *s, AVPacket *pkt)
  46. {
  47. VideoMuxData *img = s->priv_data;
  48. AVIOContext *pb[3];
  49. char filename[1024];
  50. AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
  51. int i;
  52. if (!img->is_pipe) {
  53. if (av_get_frame_filename(filename, sizeof(filename),
  54. img->path, img->img_number) < 0 && img->img_number>1) {
  55. av_log(s, AV_LOG_ERROR,
  56. "Could not get frame filename number %d from pattern '%s'\n",
  57. img->img_number, img->path);
  58. return AVERROR(EIO);
  59. }
  60. for(i=0; i<3; i++){
  61. if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
  62. &s->interrupt_callback, NULL) < 0) {
  63. av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
  64. return AVERROR(EIO);
  65. }
  66. if(codec->codec_id != CODEC_ID_RAWVIDEO)
  67. break;
  68. filename[ strlen(filename) - 1 ]= 'U' + i;
  69. }
  70. } else {
  71. pb[0] = s->pb;
  72. }
  73. if(codec->codec_id == CODEC_ID_RAWVIDEO){
  74. int ysize = codec->width * codec->height;
  75. avio_write(pb[0], pkt->data , ysize);
  76. avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
  77. avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
  78. avio_flush(pb[1]);
  79. avio_flush(pb[2]);
  80. avio_close(pb[1]);
  81. avio_close(pb[2]);
  82. }else{
  83. if(ff_guess_image2_codec(s->filename) == CODEC_ID_JPEG2000){
  84. AVStream *st = s->streams[0];
  85. if(st->codec->extradata_size > 8 &&
  86. AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
  87. if(pkt->size < 8 || 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. #if CONFIG_IMAGE2_MUXER
  116. AVOutputFormat ff_image2_muxer = {
  117. .name = "image2",
  118. .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
  119. .extensions = "bmp,dpx,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
  120. "ppm,sgi,tga,tif,tiff,jp2,xwd,sun,ras,rs,im1,im8,im24,"
  121. "sunras,xbm",
  122. .priv_data_size = sizeof(VideoMuxData),
  123. .video_codec = CODEC_ID_MJPEG,
  124. .write_header = write_header,
  125. .write_packet = write_packet,
  126. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE
  127. };
  128. #endif
  129. #if CONFIG_IMAGE2PIPE_MUXER
  130. AVOutputFormat ff_image2pipe_muxer = {
  131. .name = "image2pipe",
  132. .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
  133. .priv_data_size = sizeof(VideoMuxData),
  134. .video_codec = CODEC_ID_MJPEG,
  135. .write_header = write_header,
  136. .write_packet = write_packet,
  137. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
  138. };
  139. #endif