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.

167 lines
4.7KB

  1. /*
  2. * Microsoft Windows ICO demuxer
  3. * Copyright (c) 2011 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. * Microsoft Windows ICO demuxer
  24. */
  25. #include "libavutil/intreadwrite.h"
  26. #include "libavcodec/bytestream.h"
  27. #include "libavcodec/bmp.h"
  28. #include "avformat.h"
  29. #include "internal.h"
  30. typedef struct {
  31. int offset;
  32. int size;
  33. int nb_pal;
  34. } IcoImage;
  35. typedef struct {
  36. int current_image;
  37. int nb_images;
  38. IcoImage * images;
  39. } IcoDemuxContext;
  40. static int probe(AVProbeData *p)
  41. {
  42. if (AV_RL16(p->buf) == 0 && AV_RL16(p->buf + 2) == 1 && AV_RL16(p->buf + 4))
  43. return AVPROBE_SCORE_MAX / 3;
  44. return 0;
  45. }
  46. static int read_header(AVFormatContext *s, AVFormatParameters *ap)
  47. {
  48. IcoDemuxContext *ico = s->priv_data;
  49. AVIOContext *pb = s->pb;
  50. int i;
  51. avio_skip(pb, 4);
  52. ico->nb_images = avio_rl16(pb);
  53. ico->images = av_malloc(ico->nb_images * sizeof(IcoImage));
  54. if (!ico->images)
  55. return AVERROR(ENOMEM);
  56. for (i = 0; i < ico->nb_images; i++) {
  57. AVStream *st;
  58. if (avio_seek(pb, 6 + i * 16, SEEK_SET) < 0)
  59. break;
  60. st = avformat_new_stream(s, NULL);
  61. if (!st)
  62. return AVERROR(ENOMEM);
  63. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  64. st->codec->width = avio_r8(pb);
  65. st->codec->height = avio_r8(pb);
  66. ico->images[i].nb_pal = avio_r8(pb);
  67. avio_skip(pb, 3);
  68. st->codec->bits_per_coded_sample = avio_rl16(pb);
  69. if (st->codec->bits_per_coded_sample <= 8 && !ico->images[i].nb_pal)
  70. ico->images[i].nb_pal = 1 << st->codec->bits_per_coded_sample;
  71. ico->images[i].size = avio_rl32(pb);
  72. ico->images[i].offset = avio_rl32(pb);
  73. if (avio_seek(pb, ico->images[i].offset, SEEK_SET) < 0)
  74. break;
  75. switch(avio_rl32(pb)) {
  76. case MKTAG(0x89, 'P', 'N', 'G'):
  77. st->codec->codec_id = CODEC_ID_PNG;
  78. st->codec->width = 0;
  79. st->codec->height = 0;
  80. break;
  81. case 40:
  82. st->codec->codec_id = CODEC_ID_BMP;
  83. if (!st->codec->width || !st->codec->height) {
  84. st->codec->width = avio_rl32(pb);
  85. st->codec->height = avio_rl32(pb) / 2;
  86. }
  87. break;
  88. default:
  89. av_log_ask_for_sample(s, "unsupported codec\n");
  90. return AVERROR_INVALIDDATA;
  91. }
  92. }
  93. return 0;
  94. }
  95. static int read_packet(AVFormatContext *s, AVPacket *pkt)
  96. {
  97. IcoDemuxContext *ico = s->priv_data;
  98. IcoImage *image;
  99. AVIOContext *pb = s->pb;
  100. int ret;
  101. if (ico->current_image >= ico->nb_images)
  102. return AVERROR(EIO);
  103. image = &ico->images[ico->current_image];
  104. if ((ret = avio_seek(pb, image->offset, SEEK_SET)) < 0)
  105. return ret;
  106. if (s->streams[ico->current_image]->codec->codec_id == CODEC_ID_PNG) {
  107. if ((ret = av_get_packet(pb, pkt, image->size)) < 0)
  108. return ret;
  109. } else {
  110. uint8_t *buf;
  111. if ((ret = av_new_packet(pkt, 14 + image->size)) < 0)
  112. return ret;
  113. buf = pkt->data;
  114. /* add BMP header */
  115. bytestream_put_byte(&buf, 'B');
  116. bytestream_put_byte(&buf, 'M');
  117. bytestream_put_le32(&buf, pkt->size);
  118. bytestream_put_le16(&buf, 0);
  119. bytestream_put_le16(&buf, 0);
  120. bytestream_put_le32(&buf, 14 + 40 + image->nb_pal * 4);
  121. if ((ret = avio_read(pb, buf, image->size)) < 0)
  122. return ret;
  123. AV_WL32(buf + 8, AV_RL32(buf + 8) / 2);
  124. AV_WL32(buf + 32, image->nb_pal);
  125. }
  126. pkt->stream_index = ico->current_image++;
  127. pkt->flags |= AV_PKT_FLAG_KEY;
  128. return 0;
  129. }
  130. AVInputFormat ff_ico_demuxer = {
  131. .name = "ico",
  132. .long_name = NULL_IF_CONFIG_SMALL("Microsoft Windows ICO"),
  133. .priv_data_size = sizeof(IcoDemuxContext),
  134. .read_probe = probe,
  135. .read_header = read_header,
  136. .read_packet = read_packet,
  137. .flags = AVFMT_NOTIMESTAMPS,
  138. };