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.

223 lines
5.0KB

  1. /*
  2. * Multipart JPEG format
  3. * Copyright (c) 2015 Luca Barbato
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/avstring.h"
  22. #include "avformat.h"
  23. #include "internal.h"
  24. static int get_line(AVIOContext *pb, char *line, int line_size)
  25. {
  26. int i = ff_get_line(pb, line, line_size);
  27. if (i > 1 && line[i - 2] == '\r')
  28. line[i - 2] = '\0';
  29. if (pb->error)
  30. return pb->error;
  31. if (pb->eof_reached)
  32. return AVERROR_EOF;
  33. return 0;
  34. }
  35. static void trim_right(char* p)
  36. {
  37. char *end;
  38. if (!p || !*p)
  39. return;
  40. end = p + strlen(p) - 1;
  41. while (end != p && av_isspace(*end)) {
  42. *end = '\0';
  43. end--;
  44. }
  45. }
  46. static int split_tag_value(char **tag, char **value, char *line)
  47. {
  48. char *p = line;
  49. while (*p != '\0' && *p != ':')
  50. p++;
  51. if (*p != ':')
  52. return AVERROR_INVALIDDATA;
  53. *p = '\0';
  54. *tag = line;
  55. trim_right(*tag);
  56. p++;
  57. while (av_isspace(*p))
  58. p++;
  59. *value = p;
  60. trim_right(*value);
  61. return 0;
  62. }
  63. static int parse_multipart_header(AVIOContext *pb, void *log_ctx);
  64. static int mpjpeg_read_probe(AVProbeData *p)
  65. {
  66. AVIOContext *pb;
  67. int ret = 0;
  68. if (p->buf_size < 2 || p->buf[0] != '-' || p->buf[1] != '-')
  69. return 0;
  70. pb = avio_alloc_context(p->buf, p->buf_size, 0, NULL, NULL, NULL, NULL);
  71. if (!pb)
  72. return AVERROR(ENOMEM);
  73. ret = (parse_multipart_header(pb, NULL)>0)?AVPROBE_SCORE_MAX:0;
  74. av_free(pb);
  75. return ret;
  76. }
  77. static int mpjpeg_read_header(AVFormatContext *s)
  78. {
  79. AVStream *st;
  80. char boundary[70 + 2 + 1];
  81. int64_t pos = avio_tell(s->pb);
  82. int ret;
  83. ret = get_line(s->pb, boundary, sizeof(boundary));
  84. if (ret < 0)
  85. return ret;
  86. if (strncmp(boundary, "--", 2))
  87. return AVERROR_INVALIDDATA;
  88. st = avformat_new_stream(s, NULL);
  89. if (!st)
  90. return AVERROR(ENOMEM);
  91. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  92. st->codec->codec_id = AV_CODEC_ID_MJPEG;
  93. avpriv_set_pts_info(st, 60, 1, 25);
  94. avio_seek(s->pb, pos, SEEK_SET);
  95. return 0;
  96. }
  97. static int parse_content_length(const char *value)
  98. {
  99. long int val = strtol(value, NULL, 10);
  100. if (val == LONG_MIN || val == LONG_MAX)
  101. return AVERROR(errno);
  102. if (val > INT_MAX)
  103. return AVERROR(ERANGE);
  104. return val;
  105. }
  106. static int parse_multipart_header(AVIOContext *pb, void *log_ctx)
  107. {
  108. char line[128];
  109. int found_content_type = 0;
  110. int ret, size = -1;
  111. ret = get_line(pb, line, sizeof(line));
  112. if (ret < 0)
  113. return ret;
  114. if (strncmp(line, "--", 2))
  115. return AVERROR_INVALIDDATA;
  116. while (!pb->eof_reached) {
  117. char *tag, *value;
  118. ret = get_line(pb, line, sizeof(line));
  119. if (ret < 0) {
  120. if (ret == AVERROR_EOF)
  121. break;
  122. return ret;
  123. }
  124. if (line[0] == '\0')
  125. break;
  126. ret = split_tag_value(&tag, &value, line);
  127. if (ret < 0)
  128. return ret;
  129. if (!av_strcasecmp(tag, "Content-type")) {
  130. if (av_strcasecmp(value, "image/jpeg")) {
  131. if (log_ctx) {
  132. av_log(log_ctx, AV_LOG_ERROR,
  133. "Unexpected %s : %s\n",
  134. tag, value);
  135. }
  136. return AVERROR_INVALIDDATA;
  137. } else
  138. found_content_type = 1;
  139. } else if (!av_strcasecmp(tag, "Content-Length")) {
  140. size = parse_content_length(value);
  141. if (size < 0)
  142. return size;
  143. }
  144. }
  145. if (!found_content_type || size < 0) {
  146. return AVERROR_INVALIDDATA;
  147. }
  148. return size;
  149. }
  150. static int mpjpeg_read_packet(AVFormatContext *s, AVPacket *pkt)
  151. {
  152. int ret;
  153. int size = parse_multipart_header(s->pb, s);
  154. if (size < 0)
  155. return size;
  156. ret = av_get_packet(s->pb, pkt, size);
  157. if (ret < 0)
  158. return ret;
  159. // trailing empty line
  160. avio_skip(s->pb, 2);
  161. return 0;
  162. }
  163. AVInputFormat ff_mpjpeg_demuxer = {
  164. .name = "mpjpeg",
  165. .long_name = NULL_IF_CONFIG_SMALL("MIME multipart JPEG"),
  166. .mime_type = "multipart/x-mixed-replace",
  167. .extensions = "mjpg",
  168. .read_probe = mpjpeg_read_probe,
  169. .read_header = mpjpeg_read_header,
  170. .read_packet = mpjpeg_read_packet,
  171. };