This file is indexed.

/usr/include/CLAM/BinaryAudioOp.hxx is in libclam-dev 1.4.0-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
 * Copyright (c) 2001-2004 MUSIC TECHNOLOGY GROUP (MTG)
 *                         UNIVERSITAT POMPEU FABRA
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#ifndef _BINARY_AUDIO_OP_H_
#define _BINARY_AUDIO_OP_H_

#include "Processing.hxx"
#include "DynamicType.hxx"
#include "Audio.hxx"
#include <typeinfo> // std::bad_cast
#include "AudioInPort.hxx"
#include "AudioOutPort.hxx"

#include <iostream>

namespace CLAM 
{
	
	class BinaryAudioOpConfig: public ProcessingConfig
	{
	public:
		DYNAMIC_TYPE_USING_INTERFACE (BinaryAudioOpConfig, 0, ProcessingConfig);
	};
	
	template < typename BinOp >
	class BinaryAudioOp
		: public Processing 
	{
		BinaryAudioOpConfig mConfig;
		BinOp	     mOperation;
		
		/** Config change method
		 * @pre argument should be an SpecAdderConfig object.
		 */
		bool ConcreteConfigure(const ProcessingConfig& c)
		{
			try {
				mConfig = dynamic_cast<const BinaryAudioOpConfig&>(c);	    
			}
			catch (std::bad_cast)
			{
				CLAM_ASSERT(false,"Config should be a BynariaAudioOpConfig");
			}
			return true;
			
		}
		
		AudioInPort mFirstInput;
		AudioInPort mSecondInput;
		AudioOutPort mOutput;
		

	public:

		BinaryAudioOp()
			:mFirstInput("First Audio Input",this),
			 mSecondInput("Second Audio Input",this),
			 mOutput("Audio Output",this)
		{
			Configure( BinaryAudioOpConfig() );
		}
		
		BinaryAudioOp(const BinaryAudioOpConfig &c)
			:mFirstInput("First Audio Input",this),
			 mSecondInput("Second Audio Input",this),
			 mOutput("Audio Output",this)
									                 
		{
				Configure( c );
		}

		~BinaryAudioOp()
		{
		}

		const ProcessingConfig &GetConfig() const { return mConfig;}

		const char *GetClassName() const {return "BinaryAudioOperation";}
		void Check(const Audio& in1, const Audio& in2, const Audio& out)
		{
			CLAM_ASSERT(in1.GetSize() <= in2.GetSize(),
				"BinaryAudioOperation::Do(): Incompatible Input Audio Data Sizes");
			CLAM_ASSERT(in1.GetSize() <= out.GetSize(),
				"BinaryAudioOperation::Do(): Incompatible Output Audio Data Size");
			
		}

		bool Do(void)
		{
			bool res = Do(mFirstInput.GetAudio(),
				      mSecondInput.GetAudio(),
				      mOutput.GetAudio());
			mFirstInput.Consume();
			mSecondInput.Consume();
			mOutput.Produce();
			return res;
		}

		bool Do(const Audio& in1, const Audio& in2, Audio& out)
		{


			int size = in1.GetSize();
			int i;

			Check(in1,in2,out);

			TData* inb1 = in1.GetBuffer().GetPtr();
			TData* inb2 = in2.GetBuffer().GetPtr();
			TData* outb = out.GetBuffer().GetPtr();

			for (i=0;i<size;i++) 
			{
				*outb++ = mOperation( *inb1++ , *inb2++ );
			}

			return true;
		}

		// Port interfaces.

		bool SetPrototypes(const Audio& in1, const Audio& in2, const Audio& out)
		{
			return false;
		}

		bool SetPrototypes()
		{
			return false;
		}

		bool UnsetPrototypes()
		{
			return true;
		}

		bool MayDisableExecution() const {return true;}

	private:
	};
	
}

#endif //	_BINARY_AUDIO_OP_H_