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.

525 lines
18KB

  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. #define _BSD_SOURCE
  23. #include <sys/stat.h>
  24. #include "libavutil/avstring.h"
  25. #include "libavutil/log.h"
  26. #include "libavutil/opt.h"
  27. #include "libavutil/pixdesc.h"
  28. #include "libavutil/parseutils.h"
  29. #include "avformat.h"
  30. #include "internal.h"
  31. #include "img2.h"
  32. #if HAVE_GLOB
  33. /* Locally define as 0 (bitwise-OR no-op) any missing glob options that
  34. are non-posix glibc/bsd extensions. */
  35. #ifndef GLOB_NOMAGIC
  36. #define GLOB_NOMAGIC 0
  37. #endif
  38. #ifndef GLOB_BRACE
  39. #define GLOB_BRACE 0
  40. #endif
  41. #endif /* HAVE_GLOB */
  42. static const int sizes[][2] = {
  43. { 640, 480 },
  44. { 720, 480 },
  45. { 720, 576 },
  46. { 352, 288 },
  47. { 352, 240 },
  48. { 160, 128 },
  49. { 512, 384 },
  50. { 640, 352 },
  51. { 640, 240 },
  52. };
  53. static int infer_size(int *width_ptr, int *height_ptr, int size)
  54. {
  55. int i;
  56. for (i = 0; i < FF_ARRAY_ELEMS(sizes); i++) {
  57. if ((sizes[i][0] * sizes[i][1]) == size) {
  58. *width_ptr = sizes[i][0];
  59. *height_ptr = sizes[i][1];
  60. return 0;
  61. }
  62. }
  63. return -1;
  64. }
  65. static int is_glob(const char *path)
  66. {
  67. #if HAVE_GLOB
  68. size_t span = 0;
  69. const char *p = path;
  70. while (p = strchr(p, '%')) {
  71. if (*(++p) == '%') {
  72. ++p;
  73. continue;
  74. }
  75. if (span = strspn(p, "*?[]{}"))
  76. break;
  77. }
  78. /* Did we hit a glob char or get to the end? */
  79. return span != 0;
  80. #else
  81. return 0;
  82. #endif
  83. }
  84. /**
  85. * Get index range of image files matched by path.
  86. *
  87. * @param pfirst_index pointer to index updated with the first number in the range
  88. * @param plast_index pointer to index updated with the last number in the range
  89. * @param path path which has to be matched by the image files in the range
  90. * @param start_index minimum accepted value for the first index in the range
  91. * @return -1 if no image file could be found
  92. */
  93. static int find_image_range(int *pfirst_index, int *plast_index,
  94. const char *path, int start_index, int start_index_range)
  95. {
  96. char buf[1024];
  97. int range, last_index, range1, first_index;
  98. /* find the first image */
  99. for (first_index = start_index; first_index < start_index + start_index_range; first_index++) {
  100. if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0) {
  101. *pfirst_index =
  102. *plast_index = 1;
  103. if (avio_check(buf, AVIO_FLAG_READ) > 0)
  104. return 0;
  105. return -1;
  106. }
  107. if (avio_check(buf, AVIO_FLAG_READ) > 0)
  108. break;
  109. }
  110. if (first_index == start_index + start_index_range)
  111. goto fail;
  112. /* find the last image */
  113. last_index = first_index;
  114. for (;;) {
  115. range = 0;
  116. for (;;) {
  117. if (!range)
  118. range1 = 1;
  119. else
  120. range1 = 2 * range;
  121. if (av_get_frame_filename(buf, sizeof(buf), path,
  122. last_index + range1) < 0)
  123. goto fail;
  124. if (avio_check(buf, AVIO_FLAG_READ) <= 0)
  125. break;
  126. range = range1;
  127. /* just in case... */
  128. if (range >= (1 << 30))
  129. goto fail;
  130. }
  131. /* we are sure than image last_index + range exists */
  132. if (!range)
  133. break;
  134. last_index += range;
  135. }
  136. *pfirst_index = first_index;
  137. *plast_index = last_index;
  138. return 0;
  139. fail:
  140. return -1;
  141. }
  142. static int img_read_probe(AVProbeData *p)
  143. {
  144. if (p->filename && ff_guess_image2_codec(p->filename)) {
  145. if (av_filename_number_test(p->filename))
  146. return AVPROBE_SCORE_MAX;
  147. else if (is_glob(p->filename))
  148. return AVPROBE_SCORE_MAX;
  149. else if (av_match_ext(p->filename, "raw") || av_match_ext(p->filename, "gif"))
  150. return 5;
  151. else
  152. return AVPROBE_SCORE_EXTENSION;
  153. }
  154. return 0;
  155. }
  156. int ff_img_read_header(AVFormatContext *s1)
  157. {
  158. VideoDemuxData *s = s1->priv_data;
  159. int first_index, last_index;
  160. AVStream *st;
  161. enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE;
  162. s1->ctx_flags |= AVFMTCTX_NOHEADER;
  163. st = avformat_new_stream(s1, NULL);
  164. if (!st) {
  165. return AVERROR(ENOMEM);
  166. }
  167. if (s->pixel_format &&
  168. (pix_fmt = av_get_pix_fmt(s->pixel_format)) == AV_PIX_FMT_NONE) {
  169. av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n",
  170. s->pixel_format);
  171. return AVERROR(EINVAL);
  172. }
  173. av_strlcpy(s->path, s1->filename, sizeof(s->path));
  174. s->img_number = 0;
  175. s->img_count = 0;
  176. /* find format */
  177. if (s1->iformat->flags & AVFMT_NOFILE)
  178. s->is_pipe = 0;
  179. else {
  180. s->is_pipe = 1;
  181. st->need_parsing = AVSTREAM_PARSE_FULL;
  182. }
  183. if (s->ts_from_file == 2) {
  184. #if !HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
  185. av_log(s1, AV_LOG_ERROR, "POSIX.1-2008 not supported, nanosecond file timestamps unavailable\n");
  186. return AVERROR(ENOSYS);
  187. #endif
  188. avpriv_set_pts_info(st, 64, 1, 1000000000);
  189. } else if (s->ts_from_file)
  190. avpriv_set_pts_info(st, 64, 1, 1);
  191. else
  192. avpriv_set_pts_info(st, 64, s->framerate.den, s->framerate.num);
  193. if (s->width && s->height) {
  194. st->codec->width = s->width;
  195. st->codec->height = s->height;
  196. }
  197. if (!s->is_pipe) {
  198. if (s->pattern_type == PT_GLOB_SEQUENCE) {
  199. s->use_glob = is_glob(s->path);
  200. if (s->use_glob) {
  201. char *p = s->path, *q, *dup;
  202. int gerr;
  203. av_log(s1, AV_LOG_WARNING, "Pattern type 'glob_sequence' is deprecated: "
  204. "use pattern_type 'glob' instead\n");
  205. #if HAVE_GLOB
  206. dup = q = av_strdup(p);
  207. while (*q) {
  208. /* Do we have room for the next char and a \ insertion? */
  209. if ((p - s->path) >= (sizeof(s->path) - 2))
  210. break;
  211. if (*q == '%' && strspn(q + 1, "%*?[]{}"))
  212. ++q;
  213. else if (strspn(q, "\\*?[]{}"))
  214. *p++ = '\\';
  215. *p++ = *q++;
  216. }
  217. *p = 0;
  218. av_free(dup);
  219. gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
  220. if (gerr != 0) {
  221. return AVERROR(ENOENT);
  222. }
  223. first_index = 0;
  224. last_index = s->globstate.gl_pathc - 1;
  225. #endif
  226. }
  227. }
  228. if ((s->pattern_type == PT_GLOB_SEQUENCE && !s->use_glob) || s->pattern_type == PT_SEQUENCE) {
  229. if (find_image_range(&first_index, &last_index, s->path,
  230. s->start_number, s->start_number_range) < 0) {
  231. av_log(s1, AV_LOG_ERROR,
  232. "Could find no file with path '%s' and index in the range %d-%d\n",
  233. s->path, s->start_number, s->start_number + s->start_number_range - 1);
  234. return AVERROR(ENOENT);
  235. }
  236. } else if (s->pattern_type == PT_GLOB) {
  237. #if HAVE_GLOB
  238. int gerr;
  239. gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
  240. if (gerr != 0) {
  241. return AVERROR(ENOENT);
  242. }
  243. first_index = 0;
  244. last_index = s->globstate.gl_pathc - 1;
  245. s->use_glob = 1;
  246. #else
  247. av_log(s1, AV_LOG_ERROR,
  248. "Pattern type 'glob' was selected but globbing "
  249. "is not supported by this libavformat build\n");
  250. return AVERROR(ENOSYS);
  251. #endif
  252. } else if (s->pattern_type != PT_GLOB_SEQUENCE) {
  253. av_log(s1, AV_LOG_ERROR,
  254. "Unknown value '%d' for pattern_type option\n", s->pattern_type);
  255. return AVERROR(EINVAL);
  256. }
  257. s->img_first = first_index;
  258. s->img_last = last_index;
  259. s->img_number = first_index;
  260. /* compute duration */
  261. if (!s->ts_from_file) {
  262. st->start_time = 0;
  263. st->duration = last_index - first_index + 1;
  264. }
  265. }
  266. if (s1->video_codec_id) {
  267. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  268. st->codec->codec_id = s1->video_codec_id;
  269. } else if (s1->audio_codec_id) {
  270. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  271. st->codec->codec_id = s1->audio_codec_id;
  272. } else if (s1->iformat->raw_codec_id) {
  273. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  274. st->codec->codec_id = s1->iformat->raw_codec_id;
  275. } else {
  276. const char *str = strrchr(s->path, '.');
  277. s->split_planes = str && !av_strcasecmp(str + 1, "y");
  278. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  279. st->codec->codec_id = ff_guess_image2_codec(s->path);
  280. if (st->codec->codec_id == AV_CODEC_ID_LJPEG)
  281. st->codec->codec_id = AV_CODEC_ID_MJPEG;
  282. if (st->codec->codec_id == AV_CODEC_ID_ALIAS_PIX) // we cannot distingiush this from BRENDER_PIX
  283. st->codec->codec_id = AV_CODEC_ID_NONE;
  284. }
  285. if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
  286. pix_fmt != AV_PIX_FMT_NONE)
  287. st->codec->pix_fmt = pix_fmt;
  288. return 0;
  289. }
  290. int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt)
  291. {
  292. VideoDemuxData *s = s1->priv_data;
  293. char filename_bytes[1024];
  294. char *filename = filename_bytes;
  295. int i;
  296. int size[3] = { 0 }, ret[3] = { 0 };
  297. AVIOContext *f[3] = { NULL };
  298. AVCodecContext *codec = s1->streams[0]->codec;
  299. if (!s->is_pipe) {
  300. /* loop over input */
  301. if (s->loop && s->img_number > s->img_last) {
  302. s->img_number = s->img_first;
  303. }
  304. if (s->img_number > s->img_last)
  305. return AVERROR_EOF;
  306. if (s->use_glob) {
  307. #if HAVE_GLOB
  308. filename = s->globstate.gl_pathv[s->img_number];
  309. #endif
  310. } else {
  311. if (av_get_frame_filename(filename_bytes, sizeof(filename_bytes),
  312. s->path,
  313. s->img_number) < 0 && s->img_number > 1)
  314. return AVERROR(EIO);
  315. }
  316. for (i = 0; i < 3; i++) {
  317. if (avio_open2(&f[i], filename, AVIO_FLAG_READ,
  318. &s1->interrupt_callback, NULL) < 0) {
  319. if (i >= 1)
  320. break;
  321. av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",
  322. filename);
  323. return AVERROR(EIO);
  324. }
  325. size[i] = avio_size(f[i]);
  326. if (!s->split_planes)
  327. break;
  328. filename[strlen(filename) - 1] = 'U' + i;
  329. }
  330. if (codec->codec_id == AV_CODEC_ID_NONE) {
  331. AVProbeData pd;
  332. AVInputFormat *ifmt;
  333. uint8_t header[PROBE_BUF_MIN + AVPROBE_PADDING_SIZE];
  334. int ret;
  335. int score = 0;
  336. ret = avio_read(f[0], header, PROBE_BUF_MIN);
  337. if (ret < 0)
  338. return ret;
  339. memset(header + ret, 0, sizeof(header) - ret);
  340. avio_skip(f[0], -ret);
  341. pd.buf = header;
  342. pd.buf_size = ret;
  343. pd.filename = filename;
  344. ifmt = av_probe_input_format3(&pd, 1, &score);
  345. if (ifmt && ifmt->read_packet == ff_img_read_packet && ifmt->raw_codec_id)
  346. codec->codec_id = ifmt->raw_codec_id;
  347. }
  348. if (codec->codec_id == AV_CODEC_ID_RAWVIDEO && !codec->width)
  349. infer_size(&codec->width, &codec->height, size[0]);
  350. } else {
  351. f[0] = s1->pb;
  352. if (url_feof(f[0]))
  353. return AVERROR(EIO);
  354. if (s->frame_size > 0) {
  355. size[0] = s->frame_size;
  356. } else {
  357. size[0] = 4096;
  358. }
  359. }
  360. if (av_new_packet(pkt, size[0] + size[1] + size[2]) < 0)
  361. return AVERROR(ENOMEM);
  362. pkt->stream_index = 0;
  363. pkt->flags |= AV_PKT_FLAG_KEY;
  364. if (s->ts_from_file) {
  365. struct stat img_stat;
  366. if (stat(filename, &img_stat))
  367. return AVERROR(EIO);
  368. pkt->pts = (int64_t)img_stat.st_mtime;
  369. #if HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
  370. if (s->ts_from_file == 2)
  371. pkt->pts = 1000000000*pkt->pts + img_stat.st_mtim.tv_nsec;
  372. #endif
  373. av_add_index_entry(s1->streams[0], s->img_number, pkt->pts, 0, 0, AVINDEX_KEYFRAME);
  374. } else if (!s->is_pipe) {
  375. pkt->pts = s->pts;
  376. }
  377. pkt->size = 0;
  378. for (i = 0; i < 3; i++) {
  379. if (f[i]) {
  380. ret[i] = avio_read(f[i], pkt->data + pkt->size, size[i]);
  381. if (!s->is_pipe)
  382. avio_close(f[i]);
  383. if (ret[i] > 0)
  384. pkt->size += ret[i];
  385. }
  386. }
  387. if (ret[0] <= 0 || ret[1] < 0 || ret[2] < 0) {
  388. av_free_packet(pkt);
  389. return AVERROR(EIO); /* signal EOF */
  390. } else {
  391. s->img_count++;
  392. s->img_number++;
  393. s->pts++;
  394. return 0;
  395. }
  396. }
  397. static int img_read_close(struct AVFormatContext* s1)
  398. {
  399. VideoDemuxData *s = s1->priv_data;
  400. #if HAVE_GLOB
  401. if (s->use_glob) {
  402. globfree(&s->globstate);
  403. }
  404. #endif
  405. return 0;
  406. }
  407. static int img_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  408. {
  409. VideoDemuxData *s1 = s->priv_data;
  410. AVStream *st = s->streams[0];
  411. if (s1->ts_from_file) {
  412. int index = av_index_search_timestamp(st, timestamp, flags);
  413. if(index < 0)
  414. return -1;
  415. s1->img_number = st->index_entries[index].pos;
  416. return 0;
  417. }
  418. if (timestamp < 0 || !s1->loop && timestamp > s1->img_last - s1->img_first)
  419. return -1;
  420. s1->img_number = timestamp%(s1->img_last - s1->img_first + 1) + s1->img_first;
  421. s1->pts = timestamp;
  422. return 0;
  423. }
  424. #define OFFSET(x) offsetof(VideoDemuxData, x)
  425. #define DEC AV_OPT_FLAG_DECODING_PARAM
  426. static const AVOption options[] = {
  427. { "framerate", "set the video framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC },
  428. { "loop", "force loop over input file sequence", OFFSET(loop), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 1, DEC },
  429. { "pattern_type", "set pattern type", OFFSET(pattern_type), AV_OPT_TYPE_INT, {.i64=PT_GLOB_SEQUENCE}, 0, INT_MAX, DEC, "pattern_type"},
  430. { "glob_sequence","select glob/sequence pattern type", 0, AV_OPT_TYPE_CONST, {.i64=PT_GLOB_SEQUENCE}, INT_MIN, INT_MAX, DEC, "pattern_type" },
  431. { "glob", "select glob pattern type", 0, AV_OPT_TYPE_CONST, {.i64=PT_GLOB }, INT_MIN, INT_MAX, DEC, "pattern_type" },
  432. { "sequence", "select sequence pattern type", 0, AV_OPT_TYPE_CONST, {.i64=PT_SEQUENCE }, INT_MIN, INT_MAX, DEC, "pattern_type" },
  433. { "pixel_format", "set video pixel format", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  434. { "start_number", "set first number in the sequence", OFFSET(start_number), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC },
  435. { "start_number_range", "set range for looking at the first sequence number", OFFSET(start_number_range), AV_OPT_TYPE_INT, {.i64 = 5}, 1, INT_MAX, DEC },
  436. { "video_size", "set video size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
  437. { "frame_size", "force frame size in bytes", OFFSET(frame_size), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC },
  438. { "ts_from_file", "set frame timestamp from file's one", OFFSET(ts_from_file), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 2, DEC, "ts_type" },
  439. { "none", "none", 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 2, DEC, "ts_type" },
  440. { "sec", "second precision", 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 2, DEC, "ts_type" },
  441. { "ns", "nano second precision", 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 2, DEC, "ts_type" },
  442. { NULL },
  443. };
  444. #if CONFIG_IMAGE2_DEMUXER
  445. static const AVClass img2_class = {
  446. .class_name = "image2 demuxer",
  447. .item_name = av_default_item_name,
  448. .option = options,
  449. .version = LIBAVUTIL_VERSION_INT,
  450. };
  451. AVInputFormat ff_image2_demuxer = {
  452. .name = "image2",
  453. .long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
  454. .priv_data_size = sizeof(VideoDemuxData),
  455. .read_probe = img_read_probe,
  456. .read_header = ff_img_read_header,
  457. .read_packet = ff_img_read_packet,
  458. .read_close = img_read_close,
  459. .read_seek = img_read_seek,
  460. .flags = AVFMT_NOFILE,
  461. .priv_class = &img2_class,
  462. };
  463. #endif
  464. #if CONFIG_IMAGE2PIPE_DEMUXER
  465. static const AVClass img2pipe_class = {
  466. .class_name = "image2pipe demuxer",
  467. .item_name = av_default_item_name,
  468. .option = options,
  469. .version = LIBAVUTIL_VERSION_INT,
  470. };
  471. AVInputFormat ff_image2pipe_demuxer = {
  472. .name = "image2pipe",
  473. .long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
  474. .priv_data_size = sizeof(VideoDemuxData),
  475. .read_header = ff_img_read_header,
  476. .read_packet = ff_img_read_packet,
  477. .priv_class = &img2pipe_class,
  478. };
  479. #endif