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.

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