annotate libavcodec/raw.h @ 2:897f711a7157

rearrange to work with autoconf
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Tue, 25 Sep 2012 15:55:33 +0200
parents
children
rev   line source
nengel@2 1 /*
nengel@2 2 * Raw Video Codec
nengel@2 3 * Copyright (c) 2001 Fabrice Bellard
nengel@2 4 *
nengel@2 5 * This file is part of FFmpeg.
nengel@2 6 *
nengel@2 7 * FFmpeg is free software; you can redistribute it and/or
nengel@2 8 * modify it under the terms of the GNU Lesser General Public
nengel@2 9 * License as published by the Free Software Foundation; either
nengel@2 10 * version 2.1 of the License, or (at your option) any later version.
nengel@2 11 *
nengel@2 12 * FFmpeg is distributed in the hope that it will be useful,
nengel@2 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nengel@2 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
nengel@2 15 * Lesser General Public License for more details.
nengel@2 16 *
nengel@2 17 * You should have received a copy of the GNU Lesser General Public
nengel@2 18 * License along with FFmpeg; if not, write to the Free Software
nengel@2 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
nengel@2 20 */
nengel@2 21
nengel@2 22 /**
nengel@2 23 * @file
nengel@2 24 * Raw Video Codec
nengel@2 25 */
nengel@2 26
nengel@2 27 #ifndef AVCODEC_RAW_H
nengel@2 28 #define AVCODEC_RAW_H
nengel@2 29
nengel@2 30 #include "avcodec.h"
nengel@2 31
nengel@2 32 typedef struct PixelFormatTag {
nengel@2 33 enum PixelFormat pix_fmt;
nengel@2 34 unsigned int fourcc;
nengel@2 35 } PixelFormatTag;
nengel@2 36
nengel@2 37 extern const PixelFormatTag ff_raw_pixelFormatTags[];
nengel@2 38 int raw_init_encoder(AVCodecContext *avctx);
nengel@2 39 #endif /* AVCODEC_RAW_H */