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.

234 lines
5.2KB

  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. int foundData = 0;
  50. *tag = NULL;
  51. *value = NULL;
  52. while (*p != '\0' && *p != ':') {
  53. if (!av_isspace(*p)) {
  54. foundData = 1;
  55. }
  56. p++;
  57. }
  58. if (*p != ':')
  59. return foundData ? AVERROR_INVALIDDATA : 0;
  60. *p = '\0';
  61. *tag = line;
  62. trim_right(*tag);
  63. p++;
  64. while (av_isspace(*p))
  65. p++;
  66. *value = p;
  67. trim_right(*value);
  68. return 0;
  69. }
  70. static int parse_multipart_header(AVIOContext *pb, void *log_ctx);
  71. static int mpjpeg_read_probe(AVProbeData *p)
  72. {
  73. AVIOContext *pb;
  74. int ret = 0;
  75. if (p->buf_size < 2 || p->buf[0] != '-' || p->buf[1] != '-')
  76. return 0;
  77. pb = avio_alloc_context(p->buf, p->buf_size, 0, NULL, NULL, NULL, NULL);
  78. if (!pb)
  79. return 0;
  80. ret = (parse_multipart_header(pb, NULL)>0)?AVPROBE_SCORE_MAX:0;
  81. av_free(pb);
  82. return ret;
  83. }
  84. static int mpjpeg_read_header(AVFormatContext *s)
  85. {
  86. AVStream *st;
  87. char boundary[70 + 2 + 1];
  88. int64_t pos = avio_tell(s->pb);
  89. int ret;
  90. ret = get_line(s->pb, boundary, sizeof(boundary));
  91. if (ret < 0)
  92. return ret;
  93. if (strncmp(boundary, "--", 2))
  94. return AVERROR_INVALIDDATA;
  95. st = avformat_new_stream(s, NULL);
  96. if (!st)
  97. return AVERROR(ENOMEM);
  98. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  99. st->codec->codec_id = AV_CODEC_ID_MJPEG;
  100. avpriv_set_pts_info(st, 60, 1, 25);
  101. avio_seek(s->pb, pos, SEEK_SET);
  102. return 0;
  103. }
  104. static int parse_content_length(const char *value)
  105. {
  106. long int val = strtol(value, NULL, 10);
  107. if (val == LONG_MIN || val == LONG_MAX)
  108. return AVERROR(errno);
  109. if (val > INT_MAX)
  110. return AVERROR(ERANGE);
  111. return val;
  112. }
  113. static int parse_multipart_header(AVIOContext *pb, void *log_ctx)
  114. {
  115. char line[128];
  116. int found_content_type = 0;
  117. int ret, size = -1;
  118. ret = get_line(pb, line, sizeof(line));
  119. if (ret < 0)
  120. return ret;
  121. if (strncmp(line, "--", 2))
  122. return AVERROR_INVALIDDATA;
  123. while (!pb->eof_reached) {
  124. char *tag, *value;
  125. ret = get_line(pb, line, sizeof(line));
  126. if (ret < 0) {
  127. if (ret == AVERROR_EOF)
  128. break;
  129. return ret;
  130. }
  131. if (line[0] == '\0')
  132. break;
  133. ret = split_tag_value(&tag, &value, line);
  134. if (ret < 0)
  135. return ret;
  136. if (value==NULL || tag==NULL)
  137. break;
  138. if (!av_strcasecmp(tag, "Content-type")) {
  139. if (av_strcasecmp(value, "image/jpeg")) {
  140. if (log_ctx) {
  141. av_log(log_ctx, AV_LOG_ERROR,
  142. "Unexpected %s : %s\n",
  143. tag, value);
  144. }
  145. return AVERROR_INVALIDDATA;
  146. } else
  147. found_content_type = 1;
  148. } else if (!av_strcasecmp(tag, "Content-Length")) {
  149. size = parse_content_length(value);
  150. if (size < 0)
  151. return size;
  152. }
  153. }
  154. if (!found_content_type || size < 0) {
  155. return AVERROR_INVALIDDATA;
  156. }
  157. return size;
  158. }
  159. static int mpjpeg_read_packet(AVFormatContext *s, AVPacket *pkt)
  160. {
  161. int ret;
  162. int size = parse_multipart_header(s->pb, s);
  163. if (size < 0)
  164. return size;
  165. ret = av_get_packet(s->pb, pkt, size);
  166. if (ret < 0)
  167. return ret;
  168. // trailing empty line
  169. avio_skip(s->pb, 2);
  170. return 0;
  171. }
  172. AVInputFormat ff_mpjpeg_demuxer = {
  173. .name = "mpjpeg",
  174. .long_name = NULL_IF_CONFIG_SMALL("MIME multipart JPEG"),
  175. .mime_type = "multipart/x-mixed-replace",
  176. .extensions = "mjpg",
  177. .read_probe = mpjpeg_read_probe,
  178. .read_header = mpjpeg_read_header,
  179. .read_packet = mpjpeg_read_packet,
  180. };