You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/h264: Move h264_vdpau_class under ifdef to avoid unused variable warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -2005,13 +2005,6 @@ static const AVClass h264_class = {
|
||||
.version = LIBAVUTIL_VERSION_INT,
|
||||
};
|
||||
|
||||
static const AVClass h264_vdpau_class = {
|
||||
.class_name = "H264 VDPAU Decoder",
|
||||
.item_name = av_default_item_name,
|
||||
.option = h264_options,
|
||||
.version = LIBAVUTIL_VERSION_INT,
|
||||
};
|
||||
|
||||
AVCodec ff_h264_decoder = {
|
||||
.name = "h264",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
|
||||
@@ -2032,6 +2025,13 @@ AVCodec ff_h264_decoder = {
|
||||
};
|
||||
|
||||
#if CONFIG_H264_VDPAU_DECODER
|
||||
static const AVClass h264_vdpau_class = {
|
||||
.class_name = "H264 VDPAU Decoder",
|
||||
.item_name = av_default_item_name,
|
||||
.option = h264_options,
|
||||
.version = LIBAVUTIL_VERSION_INT,
|
||||
};
|
||||
|
||||
AVCodec ff_h264_vdpau_decoder = {
|
||||
.name = "h264_vdpau",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
|
||||
|
Reference in New Issue
Block a user