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.

104 lines
3.3KB

  1. /*
  2. * SAUCE header parser
  3. * Copyright (c) 2010 Peter Ross <pross@xvid.org>
  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. /**
  22. * @file
  23. * SAUCE header parser
  24. */
  25. #include "libavutil/intreadwrite.h"
  26. #include "avformat.h"
  27. #include "sauce.h"
  28. int ff_sauce_read(AVFormatContext *avctx, uint64_t *fsize, int *got_width, int get_height)
  29. {
  30. AVIOContext *pb = avctx->pb;
  31. char buf[36];
  32. int datatype, filetype, t1, t2, nb_comments, flags;
  33. uint64_t start_pos = avio_size(pb) - 128;
  34. avio_seek(pb, start_pos, SEEK_SET);
  35. if (avio_read(pb, buf, 7) != 7)
  36. return -1;
  37. if (memcmp(buf, "SAUCE00", 7))
  38. return -1;
  39. #define GET_SAUCE_META(name,size) \
  40. if (avio_read(pb, buf, size) == size && buf[0]) { \
  41. buf[size] = 0; \
  42. av_metadata_set2(&avctx->metadata, name, buf, 0); \
  43. }
  44. GET_SAUCE_META("title", 35)
  45. GET_SAUCE_META("artist", 20)
  46. GET_SAUCE_META("publisher", 20)
  47. GET_SAUCE_META("date", 8)
  48. avio_seek(pb, 4, SEEK_CUR);
  49. datatype = avio_r8(pb);
  50. filetype = avio_r8(pb);
  51. t1 = avio_rl16(pb);
  52. t2 = avio_rl16(pb);
  53. nb_comments = avio_r8(pb);
  54. flags = avio_r8(pb);
  55. avio_seek(pb, 4, SEEK_CUR);
  56. GET_SAUCE_META("encoder", 22);
  57. if (got_width && datatype && filetype) {
  58. if ((datatype == 1 && filetype <=2) || (datatype == 5 && filetype == 255) || datatype == 6) {
  59. if (t1) {
  60. avctx->streams[0]->codec->width = t1<<3;
  61. *got_width = 1;
  62. }
  63. if (get_height && t2)
  64. avctx->streams[0]->codec->height = t2<<4;
  65. } else if (datatype == 5) {
  66. if (filetype > 1) {
  67. avctx->streams[0]->codec->width = (filetype == 1 ? t1 : filetype) << 4;
  68. *got_width = 1;
  69. }
  70. if (get_height && t2)
  71. avctx->streams[0]->codec->height = t2<<4;
  72. }
  73. }
  74. *fsize -= 128;
  75. if (nb_comments > 0) {
  76. avio_seek(pb, start_pos - 64*nb_comments - 5, SEEK_SET);
  77. if (avio_read(pb, buf, 5) == 5 && !memcmp(buf, "COMNT", 5)) {
  78. int i;
  79. char *str = av_malloc(65*nb_comments + 1);
  80. *fsize -= 64*nb_comments + 5;
  81. if (!str)
  82. return 0;
  83. for (i = 0; i < nb_comments; i++) {
  84. if (avio_read(pb, str + 65*i, 64) != 64)
  85. break;
  86. str[65*i + 64] = '\n';
  87. }
  88. str[65*i] = 0;
  89. av_metadata_set2(&avctx->metadata, "comment", str, AV_METADATA_DONT_STRDUP_VAL);
  90. }
  91. }
  92. return 0;
  93. }