Bump github.com/bluenviron/mediacommon from 1.13.4 to 1.14.0 (#694)

Bumps [github.com/bluenviron/mediacommon](https://github.com/bluenviron/mediacommon) from 1.13.4 to 1.14.0.
- [Commits](https://github.com/bluenviron/mediacommon/compare/v1.13.4...v1.14.0)

---
updated-dependencies:
- dependency-name: github.com/bluenviron/mediacommon
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2025-02-07 19:59:16 +01:00
committed by GitHub
parent 64309126c6
commit 4779b35c23
3 changed files with 6 additions and 4 deletions

View File

@@ -262,7 +262,9 @@ func (d *Decoder) removeAnnexB(nalus [][]byte) ([][]byte, error) {
nalu = append([]byte{0x00, 0x00, 0x00, 0x01}, nalu...)
}
return h264.AnnexBUnmarshal(nalu)
var annexb h264.AnnexB
err := annexb.Unmarshal(nalu)
return annexb, err
}
}