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.

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