00001 /* 00002 * SVQ1 decoder 00003 * ported to MPlayer by Arpi <arpi@thot.banki.hu> 00004 * ported to libavcodec by Nick Kurshev <nickols_k@mail.ru> 00005 * 00006 * Copyright (C) 2002 the xine project 00007 * Copyright (C) 2002 the ffmpeg project 00008 * 00009 * SVQ1 Encoder (c) 2004 Mike Melanson <melanson@pcisys.net> 00010 * 00011 * This file is part of FFmpeg. 00012 * 00013 * FFmpeg is free software; you can redistribute it and/or 00014 * modify it under the terms of the GNU Lesser General Public 00015 * License as published by the Free Software Foundation; either 00016 * version 2.1 of the License, or (at your option) any later version. 00017 * 00018 * FFmpeg is distributed in the hope that it will be useful, 00019 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00021 * Lesser General Public License for more details. 00022 * 00023 * You should have received a copy of the GNU Lesser General Public 00024 * License along with FFmpeg; if not, write to the Free Software 00025 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00026 */ 00027 00035 #include "svq1.h" 00036 #include "svq1_cb.h" 00037 #include "svq1_vlc.h" 00038 00039 /* standard video sizes */ 00040 const struct svq1_frame_size ff_svq1_frame_size_table[7] = { 00041 { 160, 120 }, { 128, 96 }, { 176, 144 }, { 352, 288 }, 00042 { 704, 576 }, { 240, 180 }, { 320, 240 } 00043 };