summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-02-21 11:20:15 +0000
committerCarl Hetherington <cth@carlh.net>2014-02-21 11:20:15 +0000
commitfe886ca75591e3122e7123590dd09bedbc549199 (patch)
tree4f5de78c7d183b32ff62ee220274b6c8ed89cce1 /src/lib/ffmpeg_content.h
parentdf8f80913c8083c2d5d3408da6f8dd67193d890b (diff)
Remove stream _legacy_id stuff.
Diffstat (limited to 'src/lib/ffmpeg_content.h')
-rw-r--r--src/lib/ffmpeg_content.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lib/ffmpeg_content.h b/src/lib/ffmpeg_content.h
index 2339705d0..ed2169de0 100644
--- a/src/lib/ffmpeg_content.h
+++ b/src/lib/ffmpeg_content.h
@@ -38,10 +38,9 @@ public:
FFmpegStream (std::string n, int i)
: name (n)
, _id (i)
- , _legacy_id (false)
{}
- FFmpegStream (boost::shared_ptr<const cxml::Node>, int);
+ FFmpegStream (boost::shared_ptr<const cxml::Node>);
void as_xml (xmlpp::Node *) const;
@@ -62,8 +61,6 @@ public:
private:
int _id;
- /** If this is true, id is in fact the index */
- bool _legacy_id;
};
class FFmpegAudioStream : public FFmpegStream
@@ -106,7 +103,7 @@ public:
: FFmpegStream (n, i)
{}
- FFmpegSubtitleStream (boost::shared_ptr<const cxml::Node>, int);
+ FFmpegSubtitleStream (boost::shared_ptr<const cxml::Node>);
void as_xml (xmlpp::Node *) const;
};