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.

193 lines
6.3KB

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