• wm4's avatar
    avcodec/utils: split side-data in new decode API too · 66dd21d5
    wm4 authored
    The deprecated avcodec_decode_video2() and avcodec_decode_audio4()
    functions called av_packet_split_side_data() on the input packets. This
    is required for packets produced by libavformat with the
    AVFMT_FLAG_KEEP_SIDE_DATA flag unset (which is unfortunately the
    default).
    
    The new API didn't do this yet, although it didn't matter as no decoder
    supports the new API yet. The emulation layer for the old API calls the
    old API functions, which took care of the splitting. Add this code to
    the new API codec entrypoints too, because we shouldn't send essentially
    corrupted data to decoders.
    66dd21d5
utils.c 138 KB