2008-11-06 12:53:20 -08: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 04:12:37 -07: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-29 22:37:42 -07:00
|
|
|
#include "nsBuiltinDecoderStateMachine.h"
|
|
|
|
#include "nsWaveReader.h"
|
2008-11-06 12:53:20 -08:00
|
|
|
#include "nsWaveDecoder.h"
|
|
|
|
|
2011-03-29 22:37:42 -07:00
|
|
|
nsDecoderStateMachine* nsWaveDecoder::CreateStateMachine()
|
2010-08-05 00:40:35 -07:00
|
|
|
{
|
2011-03-29 22:37:42 -07:00
|
|
|
return new nsBuiltinDecoderStateMachine(this, new nsWaveReader(this));
|
2010-08-05 00:40:35 -07:00
|
|
|
}
|