Commit 4c76e3bf authored by michael's avatar michael

Change MODE_* to 1<<c so several can be set at the same time.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13754 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent eb47c6cd
...@@ -31,13 +31,13 @@ ...@@ -31,13 +31,13 @@
#define MOV_INDEX_CLUSTER_SIZE 16384 #define MOV_INDEX_CLUSTER_SIZE 16384
#define globalTimescale 1000 #define globalTimescale 1000
#define MODE_MP4 0 #define MODE_MP4 0x01
#define MODE_MOV 1 #define MODE_MOV 0x02
#define MODE_3GP 2 #define MODE_3GP 0x04
#define MODE_PSP 3 // example working PSP command line: #define MODE_PSP 0x08 // example working PSP command line:
// ffmpeg -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4 // ffmpeg -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4
#define MODE_3G2 4 #define MODE_3G2 0x10
#define MODE_IPOD 5 #define MODE_IPOD 0x20
typedef struct MOVIentry { typedef struct MOVIentry {
unsigned int flags, size; unsigned int flags, size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment