001/* 002 * This file is part of Hadoop-Gpl-Compression. 003 * 004 * Hadoop-Gpl-Compression is free software: you can redistribute it 005 * and/or modify it under the terms of the GNU General Public License 006 * as published by the Free Software Foundation, either version 3 of 007 * the License, or (at your option) any later version. 008 * 009 * Hadoop-Gpl-Compression is distributed in the hope that it will be 010 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty 011 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 012 * GNU General Public License for more details. 013 * 014 * You should have received a copy of the GNU General Public License 015 * along with Hadoop-Gpl-Compression. If not, see 016 * <http://www.gnu.org/licenses/>. 017 */ 018package com.hadoop.compression.lzo; 019 020/** 021 * A {@link org.apache.hadoop.io.compress.CompressionCodec} for a streaming 022 * <b>lzo</b> compression/decompression pair. 023 * http://www.oberhumer.com/opensource/lzo/ 024 * 025 */ 026public class LzoCodec extends org.anarres.lzo.hadoop.codec.LzoCodec { 027}