mjpega_dump_header_bsf.c 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * MJPEG A dump header bitstream filter
  3. * Copyright (c) 2006 Baptiste Coudurier
  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 libavcodec/mjpega_dump_header_bsf.c
  23. * MJPEG A dump header bitstream filter
  24. * modifies bitstream to be decoded by quicktime
  25. */
  26. #include "avcodec.h"
  27. #include "bytestream.h"
  28. #include "mjpeg.h"
  29. static int mjpega_dump_header(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args,
  30. uint8_t **poutbuf, int *poutbuf_size,
  31. const uint8_t *buf, int buf_size, int keyframe)
  32. {
  33. uint8_t *poutbufp;
  34. unsigned dqt = 0, dht = 0, sof0 = 0;
  35. int i;
  36. if (avctx->codec_id != CODEC_ID_MJPEG) {
  37. av_log(avctx, AV_LOG_ERROR, "mjpega bitstream filter only applies to mjpeg codec\n");
  38. return 0;
  39. }
  40. *poutbuf_size = 0;
  41. *poutbuf = av_malloc(buf_size + 44 + FF_INPUT_BUFFER_PADDING_SIZE);
  42. poutbufp = *poutbuf;
  43. bytestream_put_byte(&poutbufp, 0xff);
  44. bytestream_put_byte(&poutbufp, SOI);
  45. bytestream_put_byte(&poutbufp, 0xff);
  46. bytestream_put_byte(&poutbufp, APP1);
  47. bytestream_put_be16(&poutbufp, 42); /* size */
  48. bytestream_put_be32(&poutbufp, 0);
  49. bytestream_put_buffer(&poutbufp, "mjpg", 4);
  50. bytestream_put_be32(&poutbufp, buf_size + 44); /* field size */
  51. bytestream_put_be32(&poutbufp, buf_size + 44); /* pad field size */
  52. bytestream_put_be32(&poutbufp, 0); /* next ptr */
  53. for (i = 0; i < buf_size - 1; i++) {
  54. if (buf[i] == 0xff) {
  55. switch (buf[i + 1]) {
  56. case DQT: dqt = i + 46; break;
  57. case DHT: dht = i + 46; break;
  58. case SOF0: sof0 = i + 46; break;
  59. case SOS:
  60. bytestream_put_be32(&poutbufp, dqt); /* quant off */
  61. bytestream_put_be32(&poutbufp, dht); /* huff off */
  62. bytestream_put_be32(&poutbufp, sof0); /* image off */
  63. bytestream_put_be32(&poutbufp, i + 46); /* scan off */
  64. bytestream_put_be32(&poutbufp, i + 46 + AV_RB16(buf + i + 2)); /* data off */
  65. bytestream_put_buffer(&poutbufp, buf + 2, buf_size - 2); /* skip already written SOI */
  66. *poutbuf_size = poutbufp - *poutbuf;
  67. return 1;
  68. case APP1:
  69. if (i + 8 < buf_size && AV_RL32(buf + i + 8) == AV_RL32("mjpg")) {
  70. av_log(avctx, AV_LOG_ERROR, "bitstream already formatted\n");
  71. memcpy(*poutbuf, buf, buf_size);
  72. *poutbuf_size = buf_size;
  73. return 1;
  74. }
  75. }
  76. }
  77. }
  78. av_freep(poutbuf);
  79. av_log(avctx, AV_LOG_ERROR, "could not find SOS marker in bitstream\n");
  80. return 0;
  81. }
  82. AVBitStreamFilter mjpega_dump_header_bsf = {
  83. "mjpegadump",
  84. 0,
  85. mjpega_dump_header,
  86. };