| Index: media/base/audio_decoder_config.h
|
| diff --git a/media/base/audio_decoder_config.h b/media/base/audio_decoder_config.h
|
| index 7205e560a2bc3c115ef0aa99030969513b513853..a0e262f005d3343279ac3e5fa137549d4a203db8 100644
|
| --- a/media/base/audio_decoder_config.h
|
| +++ b/media/base/audio_decoder_config.h
|
| @@ -49,6 +49,8 @@ enum AudioCodec {
|
| kAudioCodecMax = kCodecAC3,
|
| };
|
|
|
| +std::string MEDIA_EXPORT GetCodecName(AudioCodec codec);
|
| +
|
| // TODO(dalecurtis): FFmpeg API uses |bytes_per_channel| instead of
|
| // |bits_per_channel|, we should switch over since bits are generally confusing
|
| // to work with.
|
| @@ -90,8 +92,6 @@ class MEDIA_EXPORT AudioDecoderConfig {
|
| // output only.
|
| std::string AsHumanReadableString() const;
|
|
|
| - std::string GetHumanReadableCodecName() const;
|
| -
|
| AudioCodec codec() const { return codec_; }
|
| int bits_per_channel() const { return bytes_per_channel_ * 8; }
|
| int bytes_per_channel() const { return bytes_per_channel_; }
|
|
|