Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-18 03:18:40 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-18 03:18:40 +0300
commit0f16dfda50cb6b7b13e2a3f02f0823f67eeca748 (patch)
tree7076e88c327db607dcee8e4b07f011d9222aeeef /libavcodec/xfaceenc.c
parent4fae55632236277865f736431bdf1dfaa0649116 (diff)
Replace PixelFormats which sneaked in over time or where forgotten by AVPixelFormats
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/xfaceenc.c')
-rw-r--r--libavcodec/xfaceenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xfaceenc.c b/libavcodec/xfaceenc.c
index 93abd467f4..fa6f22734b 100644
--- a/libavcodec/xfaceenc.c
+++ b/libavcodec/xfaceenc.c
@@ -237,5 +237,5 @@ AVCodec ff_xface_encoder = {
.init = xface_encode_init,
.close = xface_encode_close,
.encode2 = xface_encode_frame,
- .pix_fmts = (const enum PixelFormat[]) { AV_PIX_FMT_MONOWHITE, AV_PIX_FMT_NONE },
+ .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_MONOWHITE, AV_PIX_FMT_NONE },
};