img2enc.c 6.1 KB

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