summaryrefslogtreecommitdiff
path: root/libavfilter/vf_geq.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-18 01:18:40 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-18 01:18:40 +0100
commit0f16dfda50cb6b7b13e2a3f02f0823f67eeca748 (patch)
tree7076e88c327db607dcee8e4b07f011d9222aeeef /libavfilter/vf_geq.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 'libavfilter/vf_geq.c')
-rw-r--r--libavfilter/vf_geq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_geq.c b/libavfilter/vf_geq.c
index 49a3e6285e..b0f53a62b5 100644
--- a/libavfilter/vf_geq.c
+++ b/libavfilter/vf_geq.c
@@ -165,14 +165,14 @@ end:
static int geq_query_formats(AVFilterContext *ctx)
{
GEQContext *geq = ctx->priv;
- static const enum PixelFormat yuv_pix_fmts[] = {
+ static const enum AVPixelFormat yuv_pix_fmts[] = {
AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA420P,
AV_PIX_FMT_GRAY8,
AV_PIX_FMT_NONE
};
- static const enum PixelFormat rgb_pix_fmts[] = {
+ static const enum AVPixelFormat rgb_pix_fmts[] = {
AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRAP,
AV_PIX_FMT_NONE
};