blob: 6cf4d77daf661332738343a97c8dedc001f4f9a3 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COBALT_MEDIA_CAST_SENDER_AUDIO_ENCODER_H_
#define COBALT_MEDIA_CAST_SENDER_AUDIO_ENCODER_H_
#include <memory>
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/threading/thread_checker.h"
#include "media/base/audio_bus.h"
#include "media/cast/cast_environment.h"
#include "media/cast/constants.h"
#include "media/cast/sender/sender_encoded_frame.h"
namespace base {
class TimeTicks;
}
namespace cobalt {
namespace media {
namespace cast {
class AudioEncoder {
public:
// Callback to deliver each SenderEncodedFrame, plus the number of audio
// samples skipped since the last frame.
using FrameEncodedCallback =
base::Callback<void(std::unique_ptr<SenderEncodedFrame>, int)>;
AudioEncoder(const scoped_refptr<CastEnvironment>& cast_environment,
int num_channels, int sampling_rate, int bitrate, Codec codec,
const FrameEncodedCallback& frame_encoded_callback);
virtual ~AudioEncoder();
OperationalStatus InitializationResult() const;
int GetSamplesPerFrame() const;
base::TimeDelta GetFrameDuration() const;
void InsertAudio(std::unique_ptr<AudioBus> audio_bus,
const base::TimeTicks& recorded_time);
private:
class ImplBase;
class OpusImpl;
class Pcm16Impl;
class AppleAacImpl;
const scoped_refptr<CastEnvironment> cast_environment_;
scoped_refptr<ImplBase> impl_;
// Used to ensure only one thread invokes InsertAudio().
base::ThreadChecker insert_thread_checker_;
DISALLOW_COPY_AND_ASSIGN(AudioEncoder);
};
} // namespace cast
} // namespace media
} // namespace cobalt
#endif // COBALT_MEDIA_CAST_SENDER_AUDIO_ENCODER_H_