mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
qsvenc_hevc: fix enum declaration
Declare a named enum, not a variable with anonymous enum type.
This commit is contained in:
@@ -36,11 +36,11 @@
|
||||
#include "qsv_internal.h"
|
||||
#include "qsvenc.h"
|
||||
|
||||
enum {
|
||||
enum LoadPlugin {
|
||||
LOAD_PLUGIN_NONE,
|
||||
LOAD_PLUGIN_HEVC_SW,
|
||||
LOAD_PLUGIN_HEVC_HW,
|
||||
} LoadPlugin;
|
||||
};
|
||||
|
||||
typedef struct QSVHEVCEncContext {
|
||||
AVClass *class;
|
||||
|
||||
Reference in New Issue
Block a user