| 397 | } FFMS_VideoProperties; |
| 398 | |
| 399 | typedef struct FFMS_AudioProperties { |
| 400 | int SampleFormat; |
| 401 | int SampleRate; |
| 402 | int BitsPerSample; |
| 403 | int Channels; |
| 404 | int64_t ChannelLayout; // should probably be a plain int, none of the constants are >32 bits long |
| 405 | int64_t NumSamples; |
| 406 | double FirstTime; |
| 407 | double LastTime; |
| 408 | /* Introduced in FFMS_VERSION ((2 << 24) | (30 << 16) | (0 << 8) | 0) */ |
| 409 | double LastEndTime; |
| 410 | } FFMS_AudioProperties; |
| 411 | |
| 412 | typedef struct FFMS_KeyValuePair { |
| 413 | const char *Key; |
nothing calls this directly
no outgoing calls
no test coverage detected