diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-16 23:46:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-18 11:50:29 +0100 |
| commit | d60b9d006fee94fab80ee86fe1149de7f2e76750 (patch) | |
| tree | e7821dc323ec6e3b53bf25266350e355c4de0fc0 /src/lib/ffmpeg_audio_stream.h | |
| parent | 3ce77bc8f0f047725f40a5f1725833fce5f8db63 (diff) | |
Remove Sndfile code and use FFmpeg instead.
Diffstat (limited to 'src/lib/ffmpeg_audio_stream.h')
| -rw-r--r-- | src/lib/ffmpeg_audio_stream.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/ffmpeg_audio_stream.h b/src/lib/ffmpeg_audio_stream.h index 8de43c632..984d8ccad 100644 --- a/src/lib/ffmpeg_audio_stream.h +++ b/src/lib/ffmpeg_audio_stream.h @@ -31,6 +31,11 @@ public: , AudioStream (frame_rate, length, channels) {} + FFmpegAudioStream (std::string name, int id, int frame_rate, Frame length, AudioMapping mapping) + : FFmpegStream (name, id) + , AudioStream (frame_rate, length, mapping) + {} + FFmpegAudioStream (cxml::ConstNodePtr, int); void as_xml (xmlpp::Node *) const; |
