diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-04-14 13:32:36 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-05-03 11:51:55 +0200 |
commit | e3b540b42464395eadbc42b87331589e2e9e4301 (patch) | |
tree | de502df183f73318840ed448a7b1ba0446b0e98d /cmdutils.h | |
parent | 4773d904211ec07688418eb9bb78df6467c1ca2f (diff) | |
download | ffmpeg-e3b540b42464395eadbc42b87331589e2e9e4301.tar.gz |
Make ffmpeg support generic data stream
The patch is the first step to support -dcodec copy
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index 006729556f..0a61efb215 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -122,6 +122,7 @@ typedef struct { #define OPT_FUNC2 0x0400 #define OPT_INT64 0x0800 #define OPT_EXIT 0x1000 +#define OPT_DATA 0x2000 union { void (*func_arg)(const char *); //FIXME passing error code as int return would be nicer then exit() in the func int *int_arg; |