- BREAKING CHANGE: The
ParamSetId
type has been removed and replaced with separatePicParamSetId
andSeqParamSetId
types, since the allowed range of values needs to be different in these two usages.
- Make
PicOrderCountLsb::FieldsAbsolute
field names mirror the spec, rather than doing some calculations during parsing.
- Fixed incorrect size calculation for
PicScalingMatrix
causing parsing errors for streams havingpic_scaling_matrix_present_flag=1
andtransform_8x8_mode_flag=1
in the PPS.
- Make some
SliceHeader
fields public.
- BREAKING CHANGE: major simplification of the push API.
- Annex B parser bugfixes.
- BREAKING CHANGE: changes to error enums; switched several
h264_reader::rbsp::RbspBitReader
methods to returnRbspBitReaderError
rather thanbitreader::BitReaderError
. - bug fixes, mostly found by fuzzing.
- API additions:
h264_reader::rbsp::decode_nal
.h264_reader::nal::sps::SeqParameterSet::rfc6381
h264_reader::nal::sps::SeqParameterSet::pixel_dimensions
- exposed fields in
h264_reader::nal::sps::TimingInfo
- exposed inner u8 value of
h264_reader::nal::sps::ConstraintFlags
- removed
read_ue
andread_se
fromh264_reader::rbsp::RbspBitReader
, in favor of_named
variants.
...