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.

212 lines
6.5KB

  1. /*
  2. * H.264 MP4 to Annex B byte stream format filter
  3. * Copyright (c) 2007 Benoit Fouet <benoit.fouet@free.fr>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <string.h>
  22. #include "libavutil/intreadwrite.h"
  23. #include "libavutil/mem.h"
  24. #include "avcodec.h"
  25. typedef struct H264BSFContext {
  26. uint8_t length_size;
  27. uint8_t first_idr;
  28. int extradata_parsed;
  29. } H264BSFContext;
  30. static int alloc_and_copy(uint8_t **poutbuf, int *poutbuf_size,
  31. const uint8_t *sps_pps, uint32_t sps_pps_size,
  32. const uint8_t *in, uint32_t in_size)
  33. {
  34. uint32_t offset = *poutbuf_size;
  35. uint8_t nal_header_size = offset ? 3 : 4;
  36. int err;
  37. *poutbuf_size += sps_pps_size + in_size + nal_header_size;
  38. if ((err = av_reallocp(poutbuf,
  39. *poutbuf_size + AV_INPUT_BUFFER_PADDING_SIZE)) < 0) {
  40. *poutbuf_size = 0;
  41. return err;
  42. }
  43. if (sps_pps)
  44. memcpy(*poutbuf + offset, sps_pps, sps_pps_size);
  45. memcpy(*poutbuf + sps_pps_size + nal_header_size + offset, in, in_size);
  46. if (!offset) {
  47. AV_WB32(*poutbuf + sps_pps_size, 1);
  48. } else {
  49. (*poutbuf + offset + sps_pps_size)[0] =
  50. (*poutbuf + offset + sps_pps_size)[1] = 0;
  51. (*poutbuf + offset + sps_pps_size)[2] = 1;
  52. }
  53. return 0;
  54. }
  55. static int h264_extradata_to_annexb(AVCodecContext *avctx, const int padding)
  56. {
  57. uint16_t unit_size;
  58. uint64_t total_size = 0;
  59. uint8_t *out = NULL, unit_nb, sps_done = 0,
  60. sps_seen = 0, pps_seen = 0;
  61. const uint8_t *extradata = avctx->extradata + 4;
  62. static const uint8_t nalu_header[4] = { 0, 0, 0, 1 };
  63. int length_size = (*extradata++ & 0x3) + 1; // retrieve length coded size
  64. if (length_size == 3)
  65. return AVERROR(EINVAL);
  66. /* retrieve sps and pps unit(s) */
  67. unit_nb = *extradata++ & 0x1f; /* number of sps unit(s) */
  68. if (!unit_nb) {
  69. unit_nb = *extradata++; /* number of pps unit(s) */
  70. sps_done++;
  71. if (unit_nb)
  72. pps_seen = 1;
  73. } else {
  74. sps_seen = 1;
  75. }
  76. while (unit_nb--) {
  77. int err;
  78. unit_size = AV_RB16(extradata);
  79. total_size += unit_size + 4;
  80. if (total_size > INT_MAX - padding ||
  81. extradata + 2 + unit_size > avctx->extradata +
  82. avctx->extradata_size) {
  83. av_free(out);
  84. return AVERROR(EINVAL);
  85. }
  86. if ((err = av_reallocp(&out, total_size + padding)) < 0)
  87. return err;
  88. memcpy(out + total_size - unit_size - 4, nalu_header, 4);
  89. memcpy(out + total_size - unit_size, extradata + 2, unit_size);
  90. extradata += 2 + unit_size;
  91. if (!unit_nb && !sps_done++) {
  92. unit_nb = *extradata++; /* number of pps unit(s) */
  93. if (unit_nb)
  94. pps_seen = 1;
  95. }
  96. }
  97. if (out)
  98. memset(out + total_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
  99. if (!sps_seen)
  100. av_log(avctx, AV_LOG_WARNING,
  101. "Warning: SPS NALU missing or invalid. "
  102. "The resulting stream may not play.\n");
  103. if (!pps_seen)
  104. av_log(avctx, AV_LOG_WARNING,
  105. "Warning: PPS NALU missing or invalid. "
  106. "The resulting stream may not play.\n");
  107. av_free(avctx->extradata);
  108. avctx->extradata = out;
  109. avctx->extradata_size = total_size;
  110. return length_size;
  111. }
  112. static int h264_mp4toannexb_filter(AVBitStreamFilterContext *bsfc,
  113. AVCodecContext *avctx, const char *args,
  114. uint8_t **poutbuf, int *poutbuf_size,
  115. const uint8_t *buf, int buf_size,
  116. int keyframe)
  117. {
  118. H264BSFContext *ctx = bsfc->priv_data;
  119. uint8_t unit_type;
  120. int32_t nal_size;
  121. uint32_t cumul_size = 0;
  122. const uint8_t *buf_end = buf + buf_size;
  123. int ret = 0;
  124. /* nothing to filter */
  125. if (!avctx->extradata || avctx->extradata_size < 6) {
  126. *poutbuf = (uint8_t *)buf;
  127. *poutbuf_size = buf_size;
  128. return 0;
  129. }
  130. /* retrieve sps and pps NAL units from extradata */
  131. if (!ctx->extradata_parsed) {
  132. ret = h264_extradata_to_annexb(avctx, AV_INPUT_BUFFER_PADDING_SIZE);
  133. if (ret < 0)
  134. return ret;
  135. ctx->length_size = ret;
  136. ctx->first_idr = 1;
  137. ctx->extradata_parsed = 1;
  138. }
  139. *poutbuf_size = 0;
  140. *poutbuf = NULL;
  141. do {
  142. if (buf + ctx->length_size > buf_end)
  143. goto fail;
  144. if (ctx->length_size == 1) {
  145. nal_size = buf[0];
  146. } else if (ctx->length_size == 2) {
  147. nal_size = AV_RB16(buf);
  148. } else
  149. nal_size = AV_RB32(buf);
  150. buf += ctx->length_size;
  151. unit_type = *buf & 0x1f;
  152. if (buf + nal_size > buf_end || nal_size < 0)
  153. goto fail;
  154. /* prepend only to the first type 5 NAL unit of an IDR picture */
  155. if (ctx->first_idr && unit_type == 5) {
  156. if (alloc_and_copy(poutbuf, poutbuf_size,
  157. avctx->extradata, avctx->extradata_size,
  158. buf, nal_size) < 0)
  159. goto fail;
  160. ctx->first_idr = 0;
  161. } else {
  162. if (alloc_and_copy(poutbuf, poutbuf_size,
  163. NULL, 0, buf, nal_size) < 0)
  164. goto fail;
  165. if (!ctx->first_idr && unit_type == 1)
  166. ctx->first_idr = 1;
  167. }
  168. buf += nal_size;
  169. cumul_size += nal_size + ctx->length_size;
  170. } while (cumul_size < buf_size);
  171. return 1;
  172. fail:
  173. av_freep(poutbuf);
  174. *poutbuf_size = 0;
  175. return AVERROR(EINVAL);
  176. }
  177. AVBitStreamFilter ff_h264_mp4toannexb_bsf = {
  178. "h264_mp4toannexb",
  179. sizeof(H264BSFContext),
  180. h264_mp4toannexb_filter,
  181. };