| 934 | } |
| 935 | |
| 936 | static void *cbs_alloc_content(CodedBitstreamUnitTypeDescriptor *desc) |
| 937 | { |
| 938 | return av_refstruct_alloc_ext_c(desc->content_size, 0, |
| 939 | (AVRefStructOpaque){ .c = desc }, |
| 940 | desc->content_type == CBS_CONTENT_TYPE_COMPLEX |
| 941 | ? desc->type.complex.content_free |
| 942 | : cbs_default_free_unit_content); |
| 943 | } |
| 944 | |
| 945 | int CBS_FUNC(alloc_unit_content)(CodedBitstreamContext *ctx, |
| 946 | CodedBitstreamUnit *unit) |
no test coverage detected