summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-17 01:48:53 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-17 01:48:53 +0000
commit0a63f7e9dd20f804a625b7f4fcbaa0cedc4619df (patch)
tree04689870e63bdf3d0a72790a6feab7c9b92cdcff /src/lib
parent27173512f4ea4f2c324b9488180ba7cbd7173ec3 (diff)
Remove unused TimedAudioBuffers.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/types.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/types.h b/src/lib/types.h
index c069944fe..f554c4dd9 100644
--- a/src/lib/types.h
+++ b/src/lib/types.h
@@ -57,22 +57,6 @@ typedef std::vector<boost::shared_ptr<FFmpegContent> > FFmpegContentList;
typedef int64_t VideoFrame;
typedef int64_t AudioFrame;
-/* XXX -> DCPAudio */
-struct TimedAudioBuffers
-{
- TimedAudioBuffers ()
- : time (0)
- {}
-
- TimedAudioBuffers (boost::shared_ptr<AudioBuffers> a, DCPTime t)
- : audio (a)
- , time (t)
- {}
-
- boost::shared_ptr<AudioBuffers> audio;
- DCPTime time;
-};
-
enum VideoFrameType
{
VIDEO_FRAME_TYPE_2D,