Commit b7d3dd90 authored by Martin Storsjö's avatar Martin Storsjö

movenc: cosmetics: Get rid of camelCase identifiers

Also add spacing around operators on touched lines, and split
one line to match the common style.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 08d8029e
This diff is collapsed.
......@@ -44,7 +44,7 @@ typedef struct MOVIentry {
uint64_t pos;
int64_t dts;
unsigned int size;
unsigned int samplesInChunk;
unsigned int samples_in_chunk;
unsigned int entries;
int cts;
#define MOV_SYNC_SAMPLE 0x0001
......@@ -78,20 +78,20 @@ typedef struct MOVIndex {
int entry;
unsigned timescale;
uint64_t time;
int64_t trackDuration;
long sampleCount;
long sampleSize;
int hasKeyframes;
int64_t track_duration;
long sample_count;
long sample_size;
int has_keyframes;
#define MOV_TRACK_CTTS 0x0001
#define MOV_TRACK_STPS 0x0002
uint32_t flags;
int language;
int trackID;
int track_id;
int tag; ///< stsd fourcc
AVCodecContext *enc;
int vosLen;
uint8_t *vosData;
int vos_len;
uint8_t *vos_data;
MOVIentry *cluster;
int audio_vbr;
int height; ///< active picture (w/o VBI) height for D-10/IMX
......
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