blob: 8acf646e22cd97b3bf610932b1ffd722d900ce76 [file] [log] [blame]
// Copyright 2016 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.
#include "cobalt/media/base/decode_status.h"
#include <ostream>
namespace cobalt {
namespace media {
std::ostream& operator<<(std::ostream& os, const DecodeStatus& status) {
switch (status) {
case DecodeStatus::OK:
os << "DecodeStatus::OK";
break;
case DecodeStatus::ABORTED:
os << "DecodeStatus::ABORTED";
break;
case DecodeStatus::DECODE_ERROR:
os << "DecodeStatus::DECODE_ERROR";
break;
}
return os;
}
} // namespace media
} // namespace cobalt