diff options
author | Martin Storsjö <martin@martin.st> | 2015-03-17 14:40:40 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-03-17 23:53:33 +0200 |
commit | 58a840e21577a2168843487a98cb2cea44b5a94a (patch) | |
tree | cc47b548f71eec6c2d454d7c19dae48b43258863 /libavcodec/libopenh264enc.c | |
parent | 6289706b35d1b030258bba54cc27bb6d2c04bc9b (diff) | |
download | ffmpeg-58a840e21577a2168843487a98cb2cea44b5a94a.tar.gz |
Replace a few leftover instances of enum PixelFormat with enum AVPixelFormat
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/libopenh264enc.c')
-rw-r--r-- | libavcodec/libopenh264enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c index e3f9a95d24..35431fa361 100644 --- a/libavcodec/libopenh264enc.c +++ b/libavcodec/libopenh264enc.c @@ -228,7 +228,7 @@ AVCodec ff_libopenh264_encoder = { .encode2 = svc_encode_frame, .close = svc_encode_close, .capabilities = CODEC_CAP_AUTO_THREADS, - .pix_fmts = (const enum PixelFormat[]){ AV_PIX_FMT_YUV420P, - AV_PIX_FMT_NONE }, + .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, + AV_PIX_FMT_NONE }, .priv_class = &class, }; |