| 60 | }; |
| 61 | |
| 62 | const AVSideDataDescriptor *av_frame_side_data_desc(enum AVFrameSideDataType type) |
| 63 | { |
| 64 | unsigned t = type; |
| 65 | if (t < FF_ARRAY_ELEMS(sd_props) && sd_props[t].name) |
| 66 | return &sd_props[t]; |
| 67 | return NULL; |
| 68 | } |
| 69 | |
| 70 | const char *av_frame_side_data_name(enum AVFrameSideDataType type) |
| 71 | { |
no outgoing calls
no test coverage detected