This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
qsvenc_hevc: fix enum declaration
Declare a named enum, not a variable with anonymous enum type.
tags/n2.8
Anton Khirnov
10 years ago
parent
22522d9c2c
commit
fa85fcf2b7
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/qsvenc_hevc.c
+ 2
- 2
libavcodec/qsvenc_hevc.c
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save