diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-01 16:48:47 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-01 16:48:47 +0100 |
commit | 42ff56e362e823f5292c0d661fd35778da2d7eef (patch) | |
tree | e92347dff86896bdad0da611e49b5a4370700c22 /libavcodec/h264.c | |
parent | 1e96b151fa6e9931c626283b7dfc15e4ec0095aa (diff) | |
download | ffmpeg-42ff56e362e823f5292c0d661fd35778da2d7eef.tar.gz |
lavc: fix profile declarations for vdpau decoders
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index a89be349f0..545ac14a58 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2004,7 +2004,7 @@ AVCodec ff_h264_vdpau_decoder = { .flush = flush_dpb, .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_VDPAU_H264, AV_PIX_FMT_NONE}, - .profiles = NULL_IF_CONFIG_SMALL(profiles), + .profiles = NULL_IF_CONFIG_SMALL(ff_h264_profiles), .priv_class = &h264_vdpau_class, }; #endif |