summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-10-08 20:00:35 +0200
committerCarl Hetherington <cth@carlh.net>2025-10-15 22:33:26 +0200
commit51456ece6c265028f96dc4b6555676aaca40d9b3 (patch)
treedb7322735de15bd121cb9291c6a8b599efa90795 /src/lib
parentb06b2d5855555b28a686a6c073b365c6538108db (diff)
White space: ffmpeg_audio_stream.h
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/ffmpeg_audio_stream.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/ffmpeg_audio_stream.h b/src/lib/ffmpeg_audio_stream.h
index afd30e905..6c591e2fe 100644
--- a/src/lib/ffmpeg_audio_stream.h
+++ b/src/lib/ffmpeg_audio_stream.h
@@ -31,22 +31,22 @@ class FFmpegAudioStream : public FFmpegStream, public AudioStream
{
public:
FFmpegAudioStream(std::string name, int id, int frame_rate, Frame length, int channels, int bit_depth)
- : FFmpegStream (name, id)
+ : FFmpegStream(name, id)
, AudioStream(frame_rate, length, channels, bit_depth)
{}
FFmpegAudioStream(std::string name, std::string codec_name_, int id, int frame_rate, Frame length, int channels, int bit_depth)
- : FFmpegStream (name, id)
+ : FFmpegStream(name, id)
, AudioStream(frame_rate, length, channels, bit_depth)
- , codec_name (codec_name_)
+ , codec_name(codec_name_)
{}
FFmpegAudioStream(std::string name, int id, int frame_rate, Frame length, AudioMapping mapping, int bit_depth)
- : FFmpegStream (name, id)
+ : FFmpegStream(name, id)
, AudioStream(frame_rate, length, mapping, bit_depth)
{}
- FFmpegAudioStream (cxml::ConstNodePtr, int);
+ FFmpegAudioStream(cxml::ConstNodePtr, int);
void as_xml(xmlpp::Element*) const;
@@ -59,8 +59,8 @@ private:
friend struct ffmpeg_pts_offset_test;
/* Constructor for tests */
- FFmpegAudioStream ()
- : FFmpegStream ("", 0)
+ FFmpegAudioStream()
+ : FFmpegStream("", 0)
, AudioStream(0, 0, 0, 0)
{}
};