2008-11-06 23:53:20 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-03-30 09:37:42 +04:00
|
|
|
#include "nsBuiltinDecoderStateMachine.h"
|
|
|
|
#include "nsWaveReader.h"
|
2008-11-06 23:53:20 +03:00
|
|
|
#include "nsWaveDecoder.h"
|
|
|
|
|
2011-03-30 09:37:42 +04:00
|
|
|
nsDecoderStateMachine* nsWaveDecoder::CreateStateMachine()
|
2010-08-05 11:40:35 +04:00
|
|
|
{
|
2011-03-30 09:37:42 +04:00
|
|
|
return new nsBuiltinDecoderStateMachine(this, new nsWaveReader(this));
|
2010-08-05 11:40:35 +04:00
|
|
|
}
|