libavcodec/h264_mp4toannexb_bsf.c
bdfae2a5
 /*
ec21c215
  * H.264 MP4 to Annex B byte stream format filter
074bfa7d
  * Copyright (c) 2007 Benoit Fouet <benoit.fouet@free.fr>
bdfae2a5
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
1d9c2dc8
 #include <string.h>
 
6a5d31ac
 #include "libavutil/intreadwrite.h"
1d9c2dc8
 #include "libavutil/mem.h"
bdfae2a5
 #include "avcodec.h"
 
 typedef struct H264BSFContext {
1cf4d2e9
     int32_t  sps_offset;
     int32_t  pps_offset;
bdfae2a5
     uint8_t  length_size;
f9bd6d61
     uint8_t  new_idr;
1cf4d2e9
     uint8_t  idr_sps_seen;
     uint8_t  idr_pps_seen;
d5cc1ed7
     int      extradata_parsed;
1defff85
 
     /* When private_spspps is zero then spspps_buf points to global extradata
        and bsf does replace a global extradata to own-allocated version (default
        behaviour).
        When private_spspps is non-zero the bsf uses a private version of spspps buf.
        This mode necessary when bsf uses in decoder, else bsf has issues after
        decoder re-initialization. Use the "private_spspps_buf" argument to
        activate this mode.
      */
     int      private_spspps;
     uint8_t *spspps_buf;
     uint32_t spspps_size;
bdfae2a5
 } H264BSFContext;
 
5d21ca45
 static int alloc_and_copy(uint8_t **poutbuf, int *poutbuf_size,
bb5cfc48
                           const uint8_t *sps_pps, uint32_t sps_pps_size,
5d21ca45
                           const uint8_t *in, uint32_t in_size)
 {
     uint32_t offset         = *poutbuf_size;
bdfae2a5
     uint8_t nal_header_size = offset ? 3 : 4;
9b8d11a7
     int err;
bdfae2a5
 
5d21ca45
     *poutbuf_size += sps_pps_size + in_size + nal_header_size;
9b8d11a7
     if ((err = av_reallocp(poutbuf,
059a9348
                            *poutbuf_size + AV_INPUT_BUFFER_PADDING_SIZE)) < 0) {
9b8d11a7
         *poutbuf_size = 0;
         return err;
     }
bdfae2a5
     if (sps_pps)
5d21ca45
         memcpy(*poutbuf + offset, sps_pps, sps_pps_size);
     memcpy(*poutbuf + sps_pps_size + nal_header_size + offset, in, in_size);
1f7d2f54
     if (!offset) {
5d21ca45
         AV_WB32(*poutbuf + sps_pps_size, 1);
1f7d2f54
     } else {
5d21ca45
         (*poutbuf + offset + sps_pps_size)[0] =
         (*poutbuf + offset + sps_pps_size)[1] = 0;
         (*poutbuf + offset + sps_pps_size)[2] = 1;
bdfae2a5
     }
639c697c
 
     return 0;
bdfae2a5
 }
 
1cf4d2e9
 static int h264_extradata_to_annexb(H264BSFContext *ctx, AVCodecContext *avctx, const int padding)
8d929afd
 {
     uint16_t unit_size;
     uint64_t total_size                 = 0;
     uint8_t *out                        = NULL, unit_nb, sps_done = 0,
              sps_seen                   = 0, pps_seen = 0;
     const uint8_t *extradata            = avctx->extradata + 4;
     static const uint8_t nalu_header[4] = { 0, 0, 0, 1 };
     int length_size = (*extradata++ & 0x3) + 1; // retrieve length coded size
 
1cf4d2e9
     ctx->sps_offset = ctx->pps_offset = -1;
 
8d929afd
     /* retrieve sps and pps unit(s) */
     unit_nb = *extradata++ & 0x1f; /* number of sps unit(s) */
     if (!unit_nb) {
0a5d22a1
         goto pps;
8d929afd
     } else {
1cf4d2e9
         ctx->sps_offset = 0;
8d929afd
         sps_seen = 1;
     }
 
     while (unit_nb--) {
9b8d11a7
         int err;
8d929afd
 
         unit_size   = AV_RB16(extradata);
         total_size += unit_size + 4;
53c853e0
         if (total_size > INT_MAX - padding) {
             av_log(avctx, AV_LOG_ERROR,
                    "Too big extradata size, corrupted stream or invalid MP4/AVCC bitstream\n");
             av_free(out);
             return AVERROR(EINVAL);
         }
         if (extradata + 2 + unit_size > avctx->extradata + avctx->extradata_size) {
             av_log(avctx, AV_LOG_ERROR, "Packet header is not contained in global extradata, "
                    "corrupted stream or invalid MP4/AVCC bitstream\n");
8d929afd
             av_free(out);
             return AVERROR(EINVAL);
         }
9b8d11a7
         if ((err = av_reallocp(&out, total_size + padding)) < 0)
             return err;
8d929afd
         memcpy(out + total_size - unit_size - 4, nalu_header, 4);
         memcpy(out + total_size - unit_size, extradata + 2, unit_size);
         extradata += 2 + unit_size;
0a5d22a1
 pps:
8d929afd
         if (!unit_nb && !sps_done++) {
             unit_nb = *extradata++; /* number of pps unit(s) */
1cf4d2e9
             if (unit_nb) {
02d8abf0
                 ctx->pps_offset = total_size;
8d929afd
                 pps_seen = 1;
1cf4d2e9
             }
8d929afd
         }
     }
 
     if (out)
d5ddcb5f
         memset(out + total_size, 0, padding);
8d929afd
 
     if (!sps_seen)
         av_log(avctx, AV_LOG_WARNING,
                "Warning: SPS NALU missing or invalid. "
                "The resulting stream may not play.\n");
 
     if (!pps_seen)
         av_log(avctx, AV_LOG_WARNING,
                "Warning: PPS NALU missing or invalid. "
                "The resulting stream may not play.\n");
 
1defff85
     if (!ctx->private_spspps) {
         av_free(avctx->extradata);
         avctx->extradata      = out;
         avctx->extradata_size = total_size;
     }
     ctx->spspps_buf  = out;
     ctx->spspps_size = total_size;
8d929afd
 
     return length_size;
 }
 
bdfae2a5
 static int h264_mp4toannexb_filter(AVBitStreamFilterContext *bsfc,
                                    AVCodecContext *avctx, const char *args,
5d21ca45
                                    uint8_t **poutbuf, int *poutbuf_size,
                                    const uint8_t *buf, int buf_size,
                                    int keyframe)
 {
bdfae2a5
     H264BSFContext *ctx = bsfc->priv_data;
f1fdd208
     int i;
bdfae2a5
     uint8_t unit_type;
52486603
     int32_t nal_size;
5d21ca45
     uint32_t cumul_size    = 0;
52486603
     const uint8_t *buf_end = buf + buf_size;
8d929afd
     int ret = 0;
bdfae2a5
 
     /* nothing to filter */
     if (!avctx->extradata || avctx->extradata_size < 6) {
5d21ca45
         *poutbuf      = (uint8_t *)buf;
bdfae2a5
         *poutbuf_size = buf_size;
         return 0;
     }
 
     /* retrieve sps and pps NAL units from extradata */
d5cc1ed7
     if (!ctx->extradata_parsed) {
1defff85
         if (args && strstr(args, "private_spspps_buf"))
             ctx->private_spspps = 1;
 
29d147c9
         ret = h264_extradata_to_annexb(ctx, avctx, AV_INPUT_BUFFER_PADDING_SIZE);
8d929afd
         if (ret < 0)
             return ret;
         ctx->length_size      = ret;
f9bd6d61
         ctx->new_idr          = 1;
1cf4d2e9
         ctx->idr_sps_seen     = 0;
         ctx->idr_pps_seen     = 0;
d5cc1ed7
         ctx->extradata_parsed = 1;
bdfae2a5
     }
 
     *poutbuf_size = 0;
5d21ca45
     *poutbuf      = NULL;
bdfae2a5
     do {
7ae251b4
         ret= AVERROR(EINVAL);
52486603
         if (buf + ctx->length_size > buf_end)
             goto fail;
 
f1fdd208
         for (nal_size = 0, i = 0; i<ctx->length_size; i++)
             nal_size = (nal_size << 8) | buf[i];
bdfae2a5
 
5d21ca45
         buf      += ctx->length_size;
bdfae2a5
         unit_type = *buf & 0x1f;
 
2bb54b82
         if (nal_size > buf_end - buf || nal_size < 0)
52486603
             goto fail;
 
1cf4d2e9
         if (unit_type == 7)
904cfd25
             ctx->idr_sps_seen = ctx->new_idr = 1;
1cf4d2e9
         else if (unit_type == 8) {
904cfd25
             ctx->idr_pps_seen = ctx->new_idr = 1;
1cf4d2e9
             /* if SPS has not been seen yet, prepend the AVCC one to PPS */
             if (!ctx->idr_sps_seen) {
                 if (ctx->sps_offset == -1)
                     av_log(avctx, AV_LOG_WARNING, "SPS not present in the stream, nor in AVCC, stream may be unreadable\n");
                 else {
                     if ((ret = alloc_and_copy(poutbuf, poutbuf_size,
1defff85
                                          ctx->spspps_buf + ctx->sps_offset,
                                          ctx->pps_offset != -1 ? ctx->pps_offset : ctx->spspps_size - ctx->sps_offset,
1cf4d2e9
                                          buf, nal_size)) < 0)
                         goto fail;
                     ctx->idr_sps_seen = 1;
                     goto next_nal;
                 }
             }
         }
ad91bf85
 
bf428bb3
         /* if this is a new IDR picture following an IDR picture, reset the idr flag.
          * Just check first_mb_in_slice to be 0 as this is the simplest solution.
          * This could be checking idr_pic_id instead, but would complexify the parsing. */
f9bd6d61
         if (!ctx->new_idr && unit_type == 5 && (buf[1] & 0x80))
             ctx->new_idr = 1;
ad91bf85
 
         /* prepend only to the first type 5 NAL unit of an IDR picture, if no sps/pps are already present */
1cf4d2e9
         if (ctx->new_idr && unit_type == 5 && !ctx->idr_sps_seen && !ctx->idr_pps_seen) {
7ae251b4
             if ((ret=alloc_and_copy(poutbuf, poutbuf_size,
1defff85
                                ctx->spspps_buf, ctx->spspps_size,
7ae251b4
                                buf, nal_size)) < 0)
639c697c
                 goto fail;
f9bd6d61
             ctx->new_idr = 0;
1cf4d2e9
         /* if only SPS has been seen, also insert PPS */
         } else if (ctx->new_idr && unit_type == 5 && ctx->idr_sps_seen && !ctx->idr_pps_seen) {
             if (ctx->pps_offset == -1) {
                 av_log(avctx, AV_LOG_WARNING, "PPS not present in the stream, nor in AVCC, stream may be unreadable\n");
                 if ((ret = alloc_and_copy(poutbuf, poutbuf_size,
                                      NULL, 0, buf, nal_size)) < 0)
                     goto fail;
             } else if ((ret = alloc_and_copy(poutbuf, poutbuf_size,
1defff85
                                         ctx->spspps_buf + ctx->pps_offset, ctx->spspps_size - ctx->pps_offset,
1cf4d2e9
                                         buf, nal_size)) < 0)
                 goto fail;
1f7d2f54
         } else {
7ae251b4
             if ((ret=alloc_and_copy(poutbuf, poutbuf_size,
46a5003a
                                NULL, 0, buf, nal_size)) < 0)
639c697c
                 goto fail;
f9bd6d61
             if (!ctx->new_idr && unit_type == 1) {
                 ctx->new_idr = 1;
1cf4d2e9
                 ctx->idr_sps_seen = 0;
                 ctx->idr_pps_seen = 0;
ad91bf85
             }
bdfae2a5
         }
 
1cf4d2e9
 next_nal:
5d21ca45
         buf        += nal_size;
bdfae2a5
         cumul_size += nal_size + ctx->length_size;
     } while (cumul_size < buf_size);
 
     return 1;
52486603
 
 fail:
     av_freep(poutbuf);
     *poutbuf_size = 0;
7ae251b4
     return ret;
bdfae2a5
 }
 
1defff85
 static void h264_mp4toannexb_filter_close(AVBitStreamFilterContext *bsfc)
 {
     H264BSFContext *ctx = bsfc->priv_data;
     if (ctx->private_spspps)
9579550b
         av_freep(&ctx->spspps_buf);
1defff85
 }
 
d36beb3f
 AVBitStreamFilter ff_h264_mp4toannexb_bsf = {
2490996f
     .name           = "h264_mp4toannexb",
     .priv_data_size = sizeof(H264BSFContext),
     .filter         = h264_mp4toannexb_filter,
1defff85
     .close          = h264_mp4toannexb_filter_close,
bdfae2a5
 };