Re: [FFmpeg-devel] [PATCH] lavc/vvc: Skip enhancement layer NAL units

2024-04-18 Thread Frank Plowman
On 18/04/2024 21:23, James Almer wrote: > On 4/18/2024 5:19 PM, Frank Plowman wrote: >> On 18/04/2024 20:43, James Almer wrote: >>> On 4/18/2024 3:59 PM, Frank Plowman wrote: The native VVC decoder does not yet support quality/spatial/multiview scalability.  Bitstreams requiring this

Re: [FFmpeg-devel] [PATCH] lavc/vvc: Skip enhancement layer NAL units

2024-04-18 Thread James Almer
On 4/18/2024 5:19 PM, Frank Plowman wrote: On 18/04/2024 20:43, James Almer wrote: On 4/18/2024 3:59 PM, Frank Plowman wrote: The native VVC decoder does not yet support quality/spatial/multiview scalability.  Bitstreams requiring this feature could cause crashes. Patch fixes this by skipping

Re: [FFmpeg-devel] [PATCH] lavc/vvc: Skip enhancement layer NAL units

2024-04-18 Thread Frank Plowman
On 18/04/2024 20:43, James Almer wrote: > On 4/18/2024 3:59 PM, Frank Plowman wrote: >> The native VVC decoder does not yet support quality/spatial/multiview >> scalability.  Bitstreams requiring this feature could cause crashes. >> Patch fixes this by skipping NAL units which are not in the base

Re: [FFmpeg-devel] [PATCH] lavc/vvc: Skip enhancement layer NAL units

2024-04-18 Thread James Almer
On 4/18/2024 3:59 PM, Frank Plowman wrote: The native VVC decoder does not yet support quality/spatial/multiview scalability. Bitstreams requiring this feature could cause crashes. Patch fixes this by skipping NAL units which are not in the base layer, warning the user while doing so.

[FFmpeg-devel] [PATCH] lavc/vvc: Skip enhancement layer NAL units

2024-04-18 Thread Frank Plowman
The native VVC decoder does not yet support quality/spatial/multiview scalability. Bitstreams requiring this feature could cause crashes. Patch fixes this by skipping NAL units which are not in the base layer, warning the user while doing so. Signed-off-by: Frank Plowman ---