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.

527 lines
16KB

  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 "libavutil/opt.h"
  26. #include "libavutil/pixdesc.h"
  27. #include "libavutil/parseutils.h"
  28. #include "avformat.h"
  29. #include "avio_internal.h"
  30. #include "internal.h"
  31. #include <strings.h>
  32. typedef struct {
  33. const AVClass *class; /**< Class for private options. */
  34. int img_first;
  35. int img_last;
  36. int img_number;
  37. int img_count;
  38. int is_pipe;
  39. char path[1024];
  40. char *pixel_format; /**< Set by a private option. */
  41. char *video_size; /**< Set by a private option. */
  42. char *framerate; /**< Set by a private option. */
  43. int loop;
  44. } VideoData;
  45. typedef struct {
  46. enum CodecID id;
  47. const char *str;
  48. } IdStrMap;
  49. static const IdStrMap img_tags[] = {
  50. { CODEC_ID_MJPEG , "jpeg"},
  51. { CODEC_ID_MJPEG , "jpg"},
  52. { CODEC_ID_LJPEG , "ljpg"},
  53. { CODEC_ID_PNG , "png"},
  54. { CODEC_ID_PNG , "mng"},
  55. { CODEC_ID_PPM , "ppm"},
  56. { CODEC_ID_PPM , "pnm"},
  57. { CODEC_ID_PGM , "pgm"},
  58. { CODEC_ID_PGMYUV , "pgmyuv"},
  59. { CODEC_ID_PBM , "pbm"},
  60. { CODEC_ID_PAM , "pam"},
  61. { CODEC_ID_MPEG1VIDEO, "mpg1-img"},
  62. { CODEC_ID_MPEG2VIDEO, "mpg2-img"},
  63. { CODEC_ID_MPEG4 , "mpg4-img"},
  64. { CODEC_ID_FFV1 , "ffv1-img"},
  65. { CODEC_ID_RAWVIDEO , "y"},
  66. { CODEC_ID_BMP , "bmp"},
  67. { CODEC_ID_GIF , "gif"},
  68. { CODEC_ID_TARGA , "tga"},
  69. { CODEC_ID_TIFF , "tiff"},
  70. { CODEC_ID_TIFF , "tif"},
  71. { CODEC_ID_SGI , "sgi"},
  72. { CODEC_ID_PTX , "ptx"},
  73. { CODEC_ID_PCX , "pcx"},
  74. { CODEC_ID_SUNRAST , "sun"},
  75. { CODEC_ID_SUNRAST , "ras"},
  76. { CODEC_ID_SUNRAST , "rs"},
  77. { CODEC_ID_SUNRAST , "im1"},
  78. { CODEC_ID_SUNRAST , "im8"},
  79. { CODEC_ID_SUNRAST , "im24"},
  80. { CODEC_ID_SUNRAST , "sunras"},
  81. { CODEC_ID_JPEG2000 , "jp2"},
  82. { CODEC_ID_JPEG2000 , "jpc"},
  83. { CODEC_ID_DPX , "dpx"},
  84. { CODEC_ID_PICTOR , "pic"},
  85. { CODEC_ID_NONE , NULL}
  86. };
  87. static const int sizes[][2] = {
  88. { 640, 480 },
  89. { 720, 480 },
  90. { 720, 576 },
  91. { 352, 288 },
  92. { 352, 240 },
  93. { 160, 128 },
  94. { 512, 384 },
  95. { 640, 352 },
  96. { 640, 240 },
  97. };
  98. static int infer_size(int *width_ptr, int *height_ptr, int size)
  99. {
  100. int i;
  101. for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) {
  102. if ((sizes[i][0] * sizes[i][1]) == size) {
  103. *width_ptr = sizes[i][0];
  104. *height_ptr = sizes[i][1];
  105. return 0;
  106. }
  107. }
  108. return -1;
  109. }
  110. static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
  111. {
  112. str= strrchr(str, '.');
  113. if(!str) return CODEC_ID_NONE;
  114. str++;
  115. while (tags->id) {
  116. if (!strcasecmp(str, tags->str))
  117. return tags->id;
  118. tags++;
  119. }
  120. return CODEC_ID_NONE;
  121. }
  122. /* return -1 if no image found */
  123. static int find_image_range(int *pfirst_index, int *plast_index,
  124. const char *path)
  125. {
  126. char buf[1024];
  127. int range, last_index, range1, first_index;
  128. /* find the first image */
  129. for(first_index = 0; first_index < 5; first_index++) {
  130. if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
  131. *pfirst_index =
  132. *plast_index = 1;
  133. if (avio_check(buf, AVIO_FLAG_READ) > 0)
  134. return 0;
  135. return -1;
  136. }
  137. if (avio_check(buf, AVIO_FLAG_READ) > 0)
  138. break;
  139. }
  140. if (first_index == 5)
  141. goto fail;
  142. /* find the last image */
  143. last_index = first_index;
  144. for(;;) {
  145. range = 0;
  146. for(;;) {
  147. if (!range)
  148. range1 = 1;
  149. else
  150. range1 = 2 * range;
  151. if (av_get_frame_filename(buf, sizeof(buf), path,
  152. last_index + range1) < 0)
  153. goto fail;
  154. if (avio_check(buf, AVIO_FLAG_READ) <= 0)
  155. break;
  156. range = range1;
  157. /* just in case... */
  158. if (range >= (1 << 30))
  159. goto fail;
  160. }
  161. /* we are sure than image last_index + range exists */
  162. if (!range)
  163. break;
  164. last_index += range;
  165. }
  166. *pfirst_index = first_index;
  167. *plast_index = last_index;
  168. return 0;
  169. fail:
  170. return -1;
  171. }
  172. static int read_probe(AVProbeData *p)
  173. {
  174. if (p->filename && av_str2id(img_tags, p->filename)) {
  175. if (av_filename_number_test(p->filename))
  176. return AVPROBE_SCORE_MAX;
  177. else
  178. return AVPROBE_SCORE_MAX/2;
  179. }
  180. return 0;
  181. }
  182. enum CodecID ff_guess_image2_codec(const char *filename)
  183. {
  184. return av_str2id(img_tags, filename);
  185. }
  186. #if FF_API_GUESS_IMG2_CODEC
  187. enum CodecID av_guess_image2_codec(const char *filename){
  188. return av_str2id(img_tags, filename);
  189. }
  190. #endif
  191. static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
  192. {
  193. VideoData *s = s1->priv_data;
  194. int first_index, last_index, ret = 0;
  195. int width = 0, height = 0;
  196. AVStream *st;
  197. enum PixelFormat pix_fmt = PIX_FMT_NONE;
  198. AVRational framerate;
  199. s1->ctx_flags |= AVFMTCTX_NOHEADER;
  200. st = av_new_stream(s1, 0);
  201. if (!st) {
  202. return AVERROR(ENOMEM);
  203. }
  204. if (s->pixel_format && (pix_fmt = av_get_pix_fmt(s->pixel_format)) == PIX_FMT_NONE) {
  205. av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n", s->pixel_format);
  206. return AVERROR(EINVAL);
  207. }
  208. if (s->video_size && (ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
  209. av_log(s, AV_LOG_ERROR, "Could not parse video size: %s.\n", s->video_size);
  210. return ret;
  211. }
  212. if ((ret = av_parse_video_rate(&framerate, s->framerate)) < 0) {
  213. av_log(s, AV_LOG_ERROR, "Could not parse framerate: %s.\n", s->framerate);
  214. return ret;
  215. }
  216. #if FF_API_FORMAT_PARAMETERS
  217. if (ap->pix_fmt != PIX_FMT_NONE)
  218. pix_fmt = ap->pix_fmt;
  219. if (ap->width > 0)
  220. width = ap->width;
  221. if (ap->height > 0)
  222. height = ap->height;
  223. if (ap->time_base.num)
  224. framerate = (AVRational){ap->time_base.den, ap->time_base.num};
  225. #endif
  226. #if FF_API_LOOP_INPUT
  227. if (s1->loop_input)
  228. s->loop = s1->loop_input;
  229. #endif
  230. av_strlcpy(s->path, s1->filename, sizeof(s->path));
  231. s->img_number = 0;
  232. s->img_count = 0;
  233. /* find format */
  234. if (s1->iformat->flags & AVFMT_NOFILE)
  235. s->is_pipe = 0;
  236. else{
  237. s->is_pipe = 1;
  238. st->need_parsing = AVSTREAM_PARSE_FULL;
  239. }
  240. av_set_pts_info(st, 60, framerate.den, framerate.num);
  241. if (width && height) {
  242. st->codec->width = width;
  243. st->codec->height = height;
  244. }
  245. if (!s->is_pipe) {
  246. if (find_image_range(&first_index, &last_index, s->path) < 0)
  247. return AVERROR(ENOENT);
  248. s->img_first = first_index;
  249. s->img_last = last_index;
  250. s->img_number = first_index;
  251. /* compute duration */
  252. st->start_time = 0;
  253. st->duration = last_index - first_index + 1;
  254. }
  255. if(s1->video_codec_id){
  256. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  257. st->codec->codec_id = s1->video_codec_id;
  258. }else if(s1->audio_codec_id){
  259. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  260. st->codec->codec_id = s1->audio_codec_id;
  261. }else{
  262. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  263. st->codec->codec_id = av_str2id(img_tags, s->path);
  264. }
  265. if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO && pix_fmt != PIX_FMT_NONE)
  266. st->codec->pix_fmt = pix_fmt;
  267. return 0;
  268. }
  269. static int read_packet(AVFormatContext *s1, AVPacket *pkt)
  270. {
  271. VideoData *s = s1->priv_data;
  272. char filename[1024];
  273. int i;
  274. int size[3]={0}, ret[3]={0};
  275. AVIOContext *f[3];
  276. AVCodecContext *codec= s1->streams[0]->codec;
  277. if (!s->is_pipe) {
  278. /* loop over input */
  279. if (s->loop && s->img_number > s->img_last) {
  280. s->img_number = s->img_first;
  281. }
  282. if (s->img_number > s->img_last)
  283. return AVERROR_EOF;
  284. if (av_get_frame_filename(filename, sizeof(filename),
  285. s->path, s->img_number)<0 && s->img_number > 1)
  286. return AVERROR(EIO);
  287. for(i=0; i<3; i++){
  288. if (avio_open(&f[i], filename, AVIO_FLAG_READ) < 0) {
  289. if(i==1)
  290. break;
  291. av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename);
  292. return AVERROR(EIO);
  293. }
  294. size[i]= avio_size(f[i]);
  295. if(codec->codec_id != CODEC_ID_RAWVIDEO)
  296. break;
  297. filename[ strlen(filename) - 1 ]= 'U' + i;
  298. }
  299. if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width)
  300. infer_size(&codec->width, &codec->height, size[0]);
  301. } else {
  302. f[0] = s1->pb;
  303. if (f[0]->eof_reached)
  304. return AVERROR(EIO);
  305. size[0]= 4096;
  306. }
  307. av_new_packet(pkt, size[0] + size[1] + size[2]);
  308. pkt->stream_index = 0;
  309. pkt->flags |= AV_PKT_FLAG_KEY;
  310. pkt->size= 0;
  311. for(i=0; i<3; i++){
  312. if(size[i]){
  313. ret[i]= avio_read(f[i], pkt->data + pkt->size, size[i]);
  314. if (!s->is_pipe)
  315. avio_close(f[i]);
  316. if(ret[i]>0)
  317. pkt->size += ret[i];
  318. }
  319. }
  320. if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) {
  321. av_free_packet(pkt);
  322. return AVERROR(EIO); /* signal EOF */
  323. } else {
  324. s->img_count++;
  325. s->img_number++;
  326. return 0;
  327. }
  328. }
  329. #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER
  330. /******************************************************/
  331. /* image output */
  332. static int write_header(AVFormatContext *s)
  333. {
  334. VideoData *img = s->priv_data;
  335. img->img_number = 1;
  336. av_strlcpy(img->path, s->filename, sizeof(img->path));
  337. /* find format */
  338. if (s->oformat->flags & AVFMT_NOFILE)
  339. img->is_pipe = 0;
  340. else
  341. img->is_pipe = 1;
  342. return 0;
  343. }
  344. static int write_packet(AVFormatContext *s, AVPacket *pkt)
  345. {
  346. VideoData *img = s->priv_data;
  347. AVIOContext *pb[3];
  348. char filename[1024];
  349. AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
  350. int i;
  351. if (!img->is_pipe) {
  352. if (av_get_frame_filename(filename, sizeof(filename),
  353. img->path, img->img_number) < 0 && img->img_number>1) {
  354. av_log(s, AV_LOG_ERROR,
  355. "Could not get frame filename number %d from pattern '%s'\n",
  356. img->img_number, img->path);
  357. return AVERROR(EIO);
  358. }
  359. for(i=0; i<3; i++){
  360. if (avio_open(&pb[i], filename, AVIO_FLAG_WRITE) < 0) {
  361. av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
  362. return AVERROR(EIO);
  363. }
  364. if(codec->codec_id != CODEC_ID_RAWVIDEO)
  365. break;
  366. filename[ strlen(filename) - 1 ]= 'U' + i;
  367. }
  368. } else {
  369. pb[0] = s->pb;
  370. }
  371. if(codec->codec_id == CODEC_ID_RAWVIDEO){
  372. int ysize = codec->width * codec->height;
  373. avio_write(pb[0], pkt->data , ysize);
  374. avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
  375. avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
  376. avio_flush(pb[1]);
  377. avio_flush(pb[2]);
  378. avio_close(pb[1]);
  379. avio_close(pb[2]);
  380. }else{
  381. if(av_str2id(img_tags, s->filename) == CODEC_ID_JPEG2000){
  382. AVStream *st = s->streams[0];
  383. if(st->codec->extradata_size > 8 &&
  384. AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
  385. if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
  386. goto error;
  387. avio_wb32(pb[0], 12);
  388. ffio_wfourcc(pb[0], "jP ");
  389. avio_wb32(pb[0], 0x0D0A870A); // signature
  390. avio_wb32(pb[0], 20);
  391. ffio_wfourcc(pb[0], "ftyp");
  392. ffio_wfourcc(pb[0], "jp2 ");
  393. avio_wb32(pb[0], 0);
  394. ffio_wfourcc(pb[0], "jp2 ");
  395. avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
  396. }else if(pkt->size < 8 ||
  397. (!st->codec->extradata_size &&
  398. AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
  399. error:
  400. av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream\n");
  401. return -1;
  402. }
  403. }
  404. avio_write(pb[0], pkt->data, pkt->size);
  405. }
  406. avio_flush(pb[0]);
  407. if (!img->is_pipe) {
  408. avio_close(pb[0]);
  409. }
  410. img->img_number++;
  411. return 0;
  412. }
  413. #endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */
  414. #define OFFSET(x) offsetof(VideoData, x)
  415. #define DEC AV_OPT_FLAG_DECODING_PARAM
  416. static const AVOption options[] = {
  417. { "pixel_format", "", OFFSET(pixel_format), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  418. { "video_size", "", OFFSET(video_size), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  419. { "framerate", "", OFFSET(framerate), FF_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
  420. { "loop", "", OFFSET(loop), FF_OPT_TYPE_INT, {.dbl = 0}, 0, 1, DEC },
  421. { NULL },
  422. };
  423. static const AVClass img2_class = {
  424. .class_name = "image2 demuxer",
  425. .item_name = av_default_item_name,
  426. .option = options,
  427. .version = LIBAVUTIL_VERSION_INT,
  428. };
  429. /* input */
  430. #if CONFIG_IMAGE2_DEMUXER
  431. AVInputFormat ff_image2_demuxer = {
  432. .name = "image2",
  433. .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
  434. .priv_data_size = sizeof(VideoData),
  435. .read_probe = read_probe,
  436. .read_header = read_header,
  437. .read_packet = read_packet,
  438. .flags = AVFMT_NOFILE,
  439. .priv_class = &img2_class,
  440. };
  441. #endif
  442. #if CONFIG_IMAGE2PIPE_DEMUXER
  443. AVInputFormat ff_image2pipe_demuxer = {
  444. .name = "image2pipe",
  445. .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
  446. .priv_data_size = sizeof(VideoData),
  447. .read_header = read_header,
  448. .read_packet = read_packet,
  449. .priv_class = &img2_class,
  450. };
  451. #endif
  452. /* output */
  453. #if CONFIG_IMAGE2_MUXER
  454. AVOutputFormat ff_image2_muxer = {
  455. .name = "image2",
  456. .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
  457. .extensions = "bmp,dpx,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
  458. "ppm,sgi,tga,tif,tiff,jp2",
  459. .priv_data_size = sizeof(VideoData),
  460. .video_codec = CODEC_ID_MJPEG,
  461. .write_header = write_header,
  462. .write_packet = write_packet,
  463. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE
  464. };
  465. #endif
  466. #if CONFIG_IMAGE2PIPE_MUXER
  467. AVOutputFormat ff_image2pipe_muxer = {
  468. .name = "image2pipe",
  469. .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
  470. .priv_data_size = sizeof(VideoData),
  471. .video_codec = CODEC_ID_MJPEG,
  472. .write_header = write_header,
  473. .write_packet = write_packet,
  474. .flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
  475. };
  476. #endif