libavcodec/h2645_parse.c
69ab9f53
 /*
fa936a30
  * H.264/HEVC common parsing code
69ab9f53
  *
07ae8fa2
  * This file is part of FFmpeg.
69ab9f53
  *
07ae8fa2
  * FFmpeg is free software; you can redistribute it and/or
69ab9f53
  * 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.
  *
07ae8fa2
  * FFmpeg is distributed in the hope that it will be useful,
69ab9f53
  * 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
07ae8fa2
  * License along with FFmpeg; if not, write to the Free Software
69ab9f53
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <string.h>
 
 #include "config.h"
 
90ed6c5c
 #include "libavutil/intmath.h"
69ab9f53
 #include "libavutil/intreadwrite.h"
 #include "libavutil/mem.h"
 
6397815b
 #include "hevc.h"
fa936a30
 #include "h2645_parse.h"
69ab9f53
 
fa936a30
 int ff_h2645_extract_rbsp(const uint8_t *src, int length,
cc13bc8c
                           H2645NAL *nal, int small_padding)
69ab9f53
 {
     int i, si, di;
     uint8_t *dst;
382a68b0
     int64_t padding = small_padding ? 0 : MAX_MBPAIR_SIZE;
69ab9f53
 
4791a910
     nal->skipped_bytes = 0;
69ab9f53
 #define STARTCODE_TEST                                                  \
         if (i + 2 < length && src[i + 1] == 0 && src[i + 2] <= 3) {     \
9cc1ab63
             if (src[i + 2] != 3 && src[i + 2] != 0) {                   \
69ab9f53
                 /* startcode, so we must be past the end */             \
                 length = i;                                             \
             }                                                           \
             break;                                                      \
         }
 #if HAVE_FAST_UNALIGNED
 #define FIND_FIRST_ZERO                                                 \
         if (i > 0 && !src[i])                                           \
             i--;                                                        \
         while (src[i])                                                  \
             i++
 #if HAVE_FAST_64BIT
     for (i = 0; i + 1 < length; i += 9) {
         if (!((~AV_RN64A(src + i) &
                (AV_RN64A(src + i) - 0x0100010001000101ULL)) &
               0x8000800080008080ULL))
             continue;
         FIND_FIRST_ZERO;
         STARTCODE_TEST;
         i -= 7;
     }
 #else
     for (i = 0; i + 1 < length; i += 5) {
         if (!((~AV_RN32A(src + i) &
                (AV_RN32A(src + i) - 0x01000101U)) &
               0x80008080U))
             continue;
         FIND_FIRST_ZERO;
         STARTCODE_TEST;
         i -= 3;
     }
 #endif /* HAVE_FAST_64BIT */
 #else
     for (i = 0; i + 1 < length; i += 2) {
         if (src[i])
             continue;
         if (i > 0 && src[i - 1] == 0)
             i--;
         STARTCODE_TEST;
     }
 #endif /* HAVE_FAST_UNALIGNED */
 
cc13bc8c
     if (i >= length - 1 && small_padding) { // no escaped 0
69ab9f53
         nal->data     =
         nal->raw_data = src;
         nal->size     =
         nal->raw_size = length;
         return length;
15dd56c0
     } else if (i > length)
         i = length;
69ab9f53
 
382a68b0
     av_fast_padded_malloc(&nal->rbsp_buffer, &nal->rbsp_buffer_size,
                           length + padding);
69ab9f53
     if (!nal->rbsp_buffer)
         return AVERROR(ENOMEM);
 
     dst = nal->rbsp_buffer;
 
     memcpy(dst, src, i);
     si = di = i;
     while (si + 2 < length) {
         // remove escapes (very rare 1:2^22)
         if (src[si + 2] > 3) {
             dst[di++] = src[si++];
             dst[di++] = src[si++];
9cc1ab63
         } else if (src[si] == 0 && src[si + 1] == 0 && src[si + 2] != 0) {
69ab9f53
             if (src[si + 2] == 3) { // escape
                 dst[di++] = 0;
                 dst[di++] = 0;
                 si       += 3;
 
4791a910
                 if (nal->skipped_bytes_pos) {
99558270
                     nal->skipped_bytes++;
                     if (nal->skipped_bytes_pos_size < nal->skipped_bytes) {
                         nal->skipped_bytes_pos_size *= 2;
                         av_assert0(nal->skipped_bytes_pos_size >= nal->skipped_bytes);
                         av_reallocp_array(&nal->skipped_bytes_pos,
                                 nal->skipped_bytes_pos_size,
                                 sizeof(*nal->skipped_bytes_pos));
                         if (!nal->skipped_bytes_pos) {
                             nal->skipped_bytes_pos_size = 0;
                             return AVERROR(ENOMEM);
07ae8fa2
                         }
99558270
                     }
                     if (nal->skipped_bytes_pos)
                         nal->skipped_bytes_pos[nal->skipped_bytes-1] = di - 1;
07ae8fa2
                 }
69ab9f53
                 continue;
             } else // next start code
                 goto nsc;
         }
 
         dst[di++] = src[si++];
     }
     while (si < length)
         dst[di++] = src[si++];
 
 nsc:
059a9348
     memset(dst + di, 0, AV_INPUT_BUFFER_PADDING_SIZE);
69ab9f53
 
     nal->data = dst;
     nal->size = di;
     nal->raw_data = src;
     nal->raw_size = si;
     return si;
 }
07ae8fa2
 
744051a5
 static const char *nal_unit_name(int nal_type)
 {
     switch(nal_type) {
6397815b
     case HEVC_NAL_TRAIL_N    : return "TRAIL_N";
     case HEVC_NAL_TRAIL_R    : return "TRAIL_R";
     case HEVC_NAL_TSA_N      : return "TSA_N";
     case HEVC_NAL_TSA_R      : return "TSA_R";
     case HEVC_NAL_STSA_N     : return "STSA_N";
     case HEVC_NAL_STSA_R     : return "STSA_R";
     case HEVC_NAL_RADL_N     : return "RADL_N";
     case HEVC_NAL_RADL_R     : return "RADL_R";
     case HEVC_NAL_RASL_N     : return "RASL_N";
     case HEVC_NAL_RASL_R     : return "RASL_R";
     case HEVC_NAL_BLA_W_LP   : return "BLA_W_LP";
     case HEVC_NAL_BLA_W_RADL : return "BLA_W_RADL";
     case HEVC_NAL_BLA_N_LP   : return "BLA_N_LP";
     case HEVC_NAL_IDR_W_RADL : return "IDR_W_RADL";
     case HEVC_NAL_IDR_N_LP   : return "IDR_N_LP";
     case HEVC_NAL_CRA_NUT    : return "CRA_NUT";
     case HEVC_NAL_VPS        : return "VPS";
     case HEVC_NAL_SPS        : return "SPS";
     case HEVC_NAL_PPS        : return "PPS";
     case HEVC_NAL_AUD        : return "AUD";
     case HEVC_NAL_EOS_NUT    : return "EOS_NUT";
     case HEVC_NAL_EOB_NUT    : return "EOB_NUT";
     case HEVC_NAL_FD_NUT     : return "FD_NUT";
     case HEVC_NAL_SEI_PREFIX : return "SEI_PREFIX";
     case HEVC_NAL_SEI_SUFFIX : return "SEI_SUFFIX";
744051a5
     default : return "?";
     }
 }
 
90ed6c5c
 static int get_bit_length(H2645NAL *nal, int skip_trailing_zeros)
 {
     int size = nal->size;
     int v;
 
     while (skip_trailing_zeros && size > 0 && nal->data[size - 1] == 0)
         size--;
 
     if (!size)
         return 0;
 
     v = nal->data[size - 1];
 
     if (size > INT_MAX / 8)
         return AVERROR(ERANGE);
     size *= 8;
 
     /* remove the stop bit and following trailing zeros,
      * or nothing for damaged bitstreams */
     if (v)
79aafd43
         size -= ff_ctz(v) + 1;
90ed6c5c
 
     return size;
 }
 
d82e1adc
 /**
  * @return AVERROR_INVALIDDATA if the packet is not a valid NAL unit,
  * 0 if the unit should be skipped, 1 otherwise
  */
52ec149f
 static int hevc_parse_nal_header(H2645NAL *nal, void *logctx)
d82e1adc
 {
     GetBitContext *gb = &nal->gb;
     int nuh_layer_id;
 
     if (get_bits1(gb) != 0)
         return AVERROR_INVALIDDATA;
 
     nal->type = get_bits(gb, 6);
 
     nuh_layer_id   = get_bits(gb, 6);
     nal->temporal_id = get_bits(gb, 3) - 1;
     if (nal->temporal_id < 0)
         return AVERROR_INVALIDDATA;
 
52ec149f
     av_log(logctx, AV_LOG_DEBUG,
744051a5
            "nal_unit_type: %d(%s), nuh_layer_id: %d, temporal_id: %d\n",
            nal->type, nal_unit_name(nal->type), nuh_layer_id, nal->temporal_id);
d82e1adc
 
     return nuh_layer_id == 0;
 }
 
b667252a
 static int h264_parse_nal_header(H2645NAL *nal, void *logctx)
 {
     GetBitContext *gb = &nal->gb;
 
     if (get_bits1(gb) != 0)
         return AVERROR_INVALIDDATA;
 
     nal->ref_idc = get_bits(gb, 2);
     nal->type    = get_bits(gb, 5);
 
     av_log(logctx, AV_LOG_DEBUG,
            "nal_unit_type: %d, nal_ref_idc: %d\n",
            nal->type, nal->ref_idc);
 
     return 1;
 }
d82e1adc
 
fa936a30
 int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
b667252a
                           void *logctx, int is_nalff, int nal_length_size,
cc13bc8c
                           enum AVCodecID codec_id, int small_padding)
d82e1adc
 {
     int consumed, ret = 0;
a9bb4cf8
     const uint8_t *next_avc = is_nalff ? buf : buf + length;
d82e1adc
 
     pkt->nb_nals = 0;
     while (length >= 4) {
fa936a30
         H2645NAL *nal;
d82e1adc
         int extract_length = 0;
90ed6c5c
         int skip_trailing_zeros = 1;
d82e1adc
 
c3e9b098
         if (buf == next_avc) {
528171ba
             int i = 0;
             extract_length = get_nalsize(nal_length_size,
                                          buf, length, &i, logctx);
             if (extract_length < 0)
                 return extract_length;
 
d82e1adc
             buf    += nal_length_size;
             length -= nal_length_size;
 
a9bb4cf8
             next_avc = buf + extract_length;
d82e1adc
         } else {
c3e9b098
             if (buf > next_avc)
                 av_log(logctx, AV_LOG_WARNING, "Exceeded next NALFF position, re-syncing.\n");
 
4690a636
             /* search start code */
             while (buf[0] != 0 || buf[1] != 0 || buf[2] != 1) {
                 ++buf;
                 --length;
                 if (length < 4) {
fbec157e
                     if (pkt->nb_nals > 0) {
                         // No more start codes: we discarded some irrelevant
                         // bytes at the end of the packet.
                         return 0;
                     } else {
b5c10c4c
                         av_log(logctx, AV_LOG_ERROR, "No start code is found.\n");
fbec157e
                         return AVERROR_INVALIDDATA;
                     }
a9bb4cf8
                 } else if (buf >= (next_avc - 3))
                     break;
d82e1adc
             }
 
             buf           += 3;
             length        -= 3;
83a940e7
             extract_length = FFMIN(length, next_avc - buf);
a9bb4cf8
 
             if (buf >= next_avc) {
                 /* skip to the start of the next NAL */
                 int offset = next_avc - buf;
                 buf    += offset;
                 length -= offset;
                 continue;
             }
d82e1adc
         }
 
         if (pkt->nals_allocated < pkt->nb_nals + 1) {
             int new_size = pkt->nals_allocated + 1;
4690a636
             void *tmp = av_realloc_array(pkt->nals, new_size, sizeof(*pkt->nals));
 
d82e1adc
             if (!tmp)
                 return AVERROR(ENOMEM);
 
             pkt->nals = tmp;
             memset(pkt->nals + pkt->nals_allocated, 0,
4690a636
                    (new_size - pkt->nals_allocated) * sizeof(*pkt->nals));
 
bcc6c7bb
             nal = &pkt->nals[pkt->nb_nals];
99558270
             nal->skipped_bytes_pos_size = 1024; // initial buffer size
             nal->skipped_bytes_pos = av_malloc_array(nal->skipped_bytes_pos_size, sizeof(*nal->skipped_bytes_pos));
             if (!nal->skipped_bytes_pos)
4690a636
                 return AVERROR(ENOMEM);
 
d82e1adc
             pkt->nals_allocated = new_size;
         }
4690a636
         nal = &pkt->nals[pkt->nb_nals];
d82e1adc
 
cc13bc8c
         consumed = ff_h2645_extract_rbsp(buf, extract_length, nal, small_padding);
d82e1adc
         if (consumed < 0)
             return consumed;
 
a9bb4cf8
         if (is_nalff && (extract_length != consumed) && extract_length)
             av_log(logctx, AV_LOG_DEBUG,
                    "NALFF: Consumed only %d bytes instead of %d\n",
                    consumed, extract_length);
 
ad92410d
         pkt->nb_nals++;
4690a636
 
90ed6c5c
         /* see commit 3566042a0 */
         if (consumed < length - 3 &&
             buf[consumed]     == 0x00 && buf[consumed + 1] == 0x00 &&
             buf[consumed + 2] == 0x01 && buf[consumed + 3] == 0xE0)
             skip_trailing_zeros = 0;
 
         nal->size_bits = get_bit_length(nal, skip_trailing_zeros);
 
c8023893
         ret = init_get_bits(&nal->gb, nal->data, nal->size_bits);
d82e1adc
         if (ret < 0)
             return ret;
 
b667252a
         if (codec_id == AV_CODEC_ID_HEVC)
             ret = hevc_parse_nal_header(nal, logctx);
         else
             ret = h264_parse_nal_header(nal, logctx);
d46e8563
         if (ret <= 0 || nal->size <= 0) {
d82e1adc
             if (ret < 0) {
52ec149f
                 av_log(logctx, AV_LOG_ERROR, "Invalid NAL unit %d, skipping.\n",
d82e1adc
                        nal->type);
             }
             pkt->nb_nals--;
         }
 
         buf    += consumed;
         length -= consumed;
     }
 
     return 0;
 }
4690a636
 
8229eff4
 void ff_h2645_packet_uninit(H2645Packet *pkt)
 {
     int i;
8e73574d
     for (i = 0; i < pkt->nals_allocated; i++) {
8229eff4
         av_freep(&pkt->nals[i].rbsp_buffer);
8e73574d
         av_freep(&pkt->nals[i].skipped_bytes_pos);
     }
8229eff4
     av_freep(&pkt->nals);
     pkt->nals_allocated = 0;
 }