diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-14 16:24:49 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-15 22:33:26 +0200 |
| commit | 68a470b836f842af6609ba8c6ea66ffa1435c508 (patch) | |
| tree | 9425aa7aea82f7676f304b5bd5d387f0208a662e /src/lib/ffmpeg_stream.h | |
| parent | cf2dbc15457cb794d5d1ec16207d98b18f3d0b0f (diff) | |
Move two methods into the .cc
Diffstat (limited to 'src/lib/ffmpeg_stream.h')
| -rw-r--r-- | src/lib/ffmpeg_stream.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/lib/ffmpeg_stream.h b/src/lib/ffmpeg_stream.h index b797a6d90..0ed0b3be2 100644 --- a/src/lib/ffmpeg_stream.h +++ b/src/lib/ffmpeg_stream.h @@ -46,13 +46,8 @@ public: bool uses_index(AVFormatContext const * c, int index) const; AVStream* stream(AVFormatContext const * c) const; - std::string technical_summary() const { - return "id " + boost::lexical_cast<std::string>(_id); - } - - std::string identifier() const { - return boost::lexical_cast<std::string>(_id); - } + std::string technical_summary() const; + std::string identifier() const; int id() const { return _id; |
