1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 2010-2015 L-SMASH project
6 * Authors: Yusuke Nakamura <muken.the.vfrmaniac@gmail.com>
8 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 *****************************************************************************/
21 /* This file is available under an ISC license. */
23 #include "common/internal.h" /* must be placed first */
31 isom_dcr_ps_entry_t
*isom_create_ps_entry
37 isom_dcr_ps_entry_t
*entry
= lsmash_malloc( sizeof(isom_dcr_ps_entry_t
) );
40 entry
->nalUnit
= lsmash_memdup( ps
, ps_size
);
46 entry
->nalUnitLength
= ps_size
;
51 void isom_remove_dcr_ps
53 isom_dcr_ps_entry_t
*ps
58 lsmash_free( ps
->nalUnit
);
62 /* Convert EBSP (Encapsulated Byte Sequence Packets) to RBSP (Raw Byte Sequence Packets). */
63 uint8_t *nalu_remove_emulation_prevention
70 uint8_t *src_end
= src
+ src_length
;
71 while( src
< src_end
)
72 if( ((src
+ 2) < src_end
) && !src
[0] && !src
[1] && (src
[2] == 0x03) )
74 /* 0x000003 -> 0x0000 */
77 src
++; /* Skip emulation_prevention_three_byte (0x03). */
84 int nalu_import_rbsp_from_ebsp
92 uint8_t *rbsp_start
= rbsp_buffer
;
93 uint8_t *rbsp_end
= nalu_remove_emulation_prevention( ebsp
, ebsp_size
, rbsp_buffer
);
94 uint64_t rbsp_length
= rbsp_end
- rbsp_start
;
95 return lsmash_bits_import_data( bits
, rbsp_start
, rbsp_length
);
98 int nalu_check_more_rbsp_data
103 lsmash_bs_t
*bs
= bits
->bs
;
104 lsmash_buffer_t
*buffer
= &bs
->buffer
;
105 if( buffer
->pos
< buffer
->store
&& !(bits
->store
== 0 && (buffer
->store
== buffer
->pos
+ 1)) )
106 return 1; /* rbsp_trailing_bits will be placed at the next or later byte.
107 * Note: bs->pos points at the next byte if bits->store isn't empty. */
108 if( bits
->store
== 0 )
110 if( buffer
->store
== buffer
->pos
+ 1 )
111 return buffer
->data
[ buffer
->pos
] != 0x80;
112 /* No rbsp_trailing_bits is present in RBSP data. */
116 /* Check whether remainder of bits is identical to rbsp_trailing_bits. */
117 uint8_t remainder_bits
= bits
->cache
& ~(~0U << bits
->store
);
118 uint8_t rbsp_trailing_bits
= 1U << (bits
->store
- 1);
119 return remainder_bits
!= rbsp_trailing_bits
;
122 int nalu_get_max_ps_length
124 lsmash_entry_list_t
*ps_list
,
125 uint32_t *max_ps_length
129 for( lsmash_entry_t
*entry
= ps_list
->head
; entry
; entry
= entry
->next
)
131 isom_dcr_ps_entry_t
*ps
= (isom_dcr_ps_entry_t
*)entry
->data
;
133 return LSMASH_ERR_NAMELESS
;
136 *max_ps_length
= LSMASH_MAX( *max_ps_length
, ps
->nalUnitLength
);
141 int nalu_get_ps_count
143 lsmash_entry_list_t
*ps_list
,
148 for( lsmash_entry_t
*entry
= ps_list
? ps_list
->head
: NULL
; entry
; entry
= entry
->next
)
150 isom_dcr_ps_entry_t
*ps
= (isom_dcr_ps_entry_t
*)entry
->data
;
152 return LSMASH_ERR_NAMELESS
;
160 int nalu_check_same_ps_existence
162 lsmash_entry_list_t
*ps_list
,
167 for( lsmash_entry_t
*entry
= ps_list
->head
; entry
; entry
= entry
->next
)
169 isom_dcr_ps_entry_t
*ps
= (isom_dcr_ps_entry_t
*)entry
->data
;
171 return LSMASH_ERR_NAMELESS
;
174 if( ps
->nalUnitLength
== ps_length
&& !memcmp( ps
->nalUnit
, ps_data
, ps_length
) )
175 return 1; /* The same parameter set already exists. */
183 lsmash_entry_list_t
*list
,
187 for( uint8_t i
= 0; i
< entry_count
; i
++ )
189 isom_dcr_ps_entry_t
*data
= lsmash_malloc( sizeof(isom_dcr_ps_entry_t
) );
191 return LSMASH_ERR_MEMORY_ALLOC
;
192 if( lsmash_add_entry( list
, data
) < 0 )
195 return LSMASH_ERR_MEMORY_ALLOC
;
197 data
->nalUnitLength
= lsmash_bs_get_be16( bs
);
198 data
->nalUnit
= lsmash_bs_get_bytes( bs
, data
->nalUnitLength
);
201 lsmash_remove_entries( list
, isom_remove_dcr_ps
);
202 return LSMASH_ERR_NAMELESS
;
208 /* Return the offset from the beginning of stream if a start code is found.
209 * Return NALU_NO_START_CODE_FOUND otherwise. */
210 uint64_t nalu_find_first_start_code
215 uint64_t first_sc_head_pos
= 0;
218 if( lsmash_bs_is_error( bs
) )
219 return NALU_IO_ERROR
;
220 if( lsmash_bs_is_end( bs
, first_sc_head_pos
+ NALU_LONG_START_CODE_LENGTH
) )
221 return NALU_NO_START_CODE_FOUND
;
222 /* Invalid if encountered any value of non-zero before the first start code. */
223 if( lsmash_bs_show_byte( bs
, first_sc_head_pos
) )
224 return NALU_NO_START_CODE_FOUND
;
225 /* The first NALU of an AU in decoding order shall have long start code (0x00000001). */
226 if( 0x00000001 == lsmash_bs_show_be32( bs
, first_sc_head_pos
) )
230 return first_sc_head_pos
;
233 uint64_t nalu_get_codeNum
238 uint32_t leadingZeroBits
= 0;
239 for( int b
= 0; !b
; leadingZeroBits
++ )
240 b
= lsmash_bits_get( bits
, 1 );
242 return ((uint64_t)1 << leadingZeroBits
) - 1 + lsmash_bits_get( bits
, leadingZeroBits
);
245 int nalu_update_bitrate( isom_stbl_t
*stbl
, isom_mdhd_t
*mdhd
, uint32_t sample_description_index
)
247 isom_visual_entry_t
*sample_entry
= (isom_visual_entry_t
*)lsmash_get_entry_data( &stbl
->stsd
->list
, sample_description_index
);
249 return LSMASH_ERR_INVALID_DATA
;
250 isom_btrt_t
*btrt
= (isom_btrt_t
*)isom_get_extension_box_format( &sample_entry
->extensions
, ISOM_BOX_TYPE_BTRT
);
253 uint32_t bufferSizeDB
;
256 int err
= isom_calculate_bitrate_description( stbl
, mdhd
, &bufferSizeDB
, &maxBitrate
, &avgBitrate
, sample_description_index
);
259 btrt
->bufferSizeDB
= bufferSizeDB
;
260 btrt
->maxBitrate
= maxBitrate
;
261 btrt
->avgBitrate
= avgBitrate
;