Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > VSs > VSs__H264__App
diff 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 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libavcodec/raw.h Tue Sep 25 15:55:33 2012 +0200 1.3 @@ -0,0 +1,39 @@ 1.4 +/* 1.5 + * Raw Video Codec 1.6 + * Copyright (c) 2001 Fabrice Bellard 1.7 + * 1.8 + * This file is part of FFmpeg. 1.9 + * 1.10 + * FFmpeg is free software; you can redistribute it and/or 1.11 + * modify it under the terms of the GNU Lesser General Public 1.12 + * License as published by the Free Software Foundation; either 1.13 + * version 2.1 of the License, or (at your option) any later version. 1.14 + * 1.15 + * FFmpeg is distributed in the hope that it will be useful, 1.16 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 1.17 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 1.18 + * Lesser General Public License for more details. 1.19 + * 1.20 + * You should have received a copy of the GNU Lesser General Public 1.21 + * License along with FFmpeg; if not, write to the Free Software 1.22 + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 1.23 + */ 1.24 + 1.25 +/** 1.26 + * @file 1.27 + * Raw Video Codec 1.28 + */ 1.29 + 1.30 +#ifndef AVCODEC_RAW_H 1.31 +#define AVCODEC_RAW_H 1.32 + 1.33 +#include "avcodec.h" 1.34 + 1.35 +typedef struct PixelFormatTag { 1.36 + enum PixelFormat pix_fmt; 1.37 + unsigned int fourcc; 1.38 +} PixelFormatTag; 1.39 + 1.40 +extern const PixelFormatTag ff_raw_pixelFormatTags[]; 1.41 +int raw_init_encoder(AVCodecContext *avctx); 1.42 +#endif /* AVCODEC_RAW_H */
