summaryrefslogtreecommitdiff
path: root/src/lib/sndfile_content.h
blob: e84617ed3450b14ecdeb45d7ee22225e76753929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "audio_content.h"

class SndfileContent : public AudioContent
{
public:
	std::string summary () const;

        /* AudioDecoder */
        int audio_channels () const;
        ContentAudioFrame audio_length () const;
        int audio_frame_rate () const;
        int64_t audio_channel_layout () const;
};