mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 03:18:36 +00:00
The name field of AVFilterInOut can be declared const
Commited in SoC by Vitor Sessak on 2008-04-21 18:42:11 Originally committed as revision 13322 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dbec351d9f
commit
498f030583
@ -183,7 +183,7 @@ enum LinkType {
|
|||||||
*/
|
*/
|
||||||
typedef struct AVFilterInOut {
|
typedef struct AVFilterInOut {
|
||||||
enum LinkType type;
|
enum LinkType type;
|
||||||
char *name;
|
const char *name;
|
||||||
AVFilterContext *filter;
|
AVFilterContext *filter;
|
||||||
int pad_idx;
|
int pad_idx;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user