2007-07-09 19:26:11 +03:00
|
|
|
/*
|
|
|
|
* Raw Video Codec
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2007-07-09 19:26:11 +03:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2007-07-09 19:26:11 +03:00
|
|
|
* Raw Video Codec
|
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVCODEC_RAW_H
|
|
|
|
#define AVCODEC_RAW_H
|
2007-07-09 19:26:11 +03:00
|
|
|
|
|
|
|
#include "avcodec.h"
|
2017-11-11 15:32:09 +02:00
|
|
|
#include "internal.h"
|
2012-10-19 22:35:39 +03:00
|
|
|
#include "libavutil/internal.h"
|
2007-07-09 19:26:11 +03:00
|
|
|
|
|
|
|
typedef struct PixelFormatTag {
|
2012-10-06 13:10:34 +03:00
|
|
|
enum AVPixelFormat pix_fmt;
|
2007-07-09 19:26:11 +03:00
|
|
|
unsigned int fourcc;
|
|
|
|
} PixelFormatTag;
|
|
|
|
|
2014-08-07 07:22:48 +03:00
|
|
|
extern const PixelFormatTag ff_raw_pix_fmt_tags[]; // exposed through avpriv_get_raw_pix_fmt_tags()
|
|
|
|
|
|
|
|
const struct PixelFormatTag *avpriv_get_raw_pix_fmt_tags(void);
|
2014-08-07 01:07:59 +03:00
|
|
|
|
2013-01-12 16:06:30 +03:00
|
|
|
enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc);
|
2007-07-09 19:26:11 +03:00
|
|
|
|
2017-11-11 15:32:09 +02:00
|
|
|
extern av_export_avcodec const PixelFormatTag avpriv_pix_fmt_bps_avi[];
|
|
|
|
extern av_export_avcodec const PixelFormatTag avpriv_pix_fmt_bps_mov[];
|
2014-04-12 00:35:11 +03:00
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVCODEC_RAW_H */
|