/* * Copyright (C) 2000-2001 the xine project * * This file is part of xine, a unix video player. * * xine is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * xine is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * * $Id: dxr3_vo_encoder.h,v 1.3 2001/11/12 23:56:31 hrm Exp $ * */ /************************************************************************* * Dxr3 Encoding Plugin Configuration Options * *************************************************************************/ /* 1: enable to buffer the mpeg1 stream; * 0: write to mpeg device immediately; * with 1 sync is better, but playback still not smooth (but see below) */ #define USE_MPEG_BUFFER 1 /* 1: write 6 to MV_COMMAND register. This seems to fix playback problems! * 0: don't write to register */ #define USE_MAGIC_REGISTER 1 /* 1: use libfame for encoding * 0: use libavcodec from ffmpeg for encoding */ #define USE_LIBFAME 1 /************************************************************************* * Dxr3 Encoding private stuff below - You shouldn't need to change this * *************************************************************************/ /* buffer size for encoded mpeg1 stream; will hold one intra frame * at 640x480 typical sizes are <50 kB. 512 kB should be plenty */ #define DEFAULT_BUFFER_SIZE 512*1024 #if USE_LIBFAME # define USE_FFMPEG 0 #else # define USE_FFMPEG 1 #endif #if USE_LIBFAME #include /* some global stuff for libfame, could use some cleanup :-) */ fame_parameters_t fp = FAME_PARAMETERS_INITIALIZER; fame_yuv_t yuv; fame_context_t *fc; /* needed for fame calls */ #endif #if USE_FFMPEG /* use libffmpeg */ #include AVCodecContext *avc; AVPicture avp; AVCodec *avcodec; #endif /* mpeg1 buffer, used by both encoders */ unsigned char *buffer;