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 020import org.apache.hadoop.io.compress.CompressionCodec; 021 022/** 023 * A {@link CompressionCodec} for a streaming 024 * <b>lzo</b> compression/decompression pair compatible with lzop. 025 * http://www.lzop.org/ 026 */ 027public class LzopCodec extends org.anarres.lzo.hadoop.codec.LzopCodec { 028}