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 { ...@@ -44,7 +44,7 @@ typedef struct MOVIentry {
uint64_t pos; uint64_t pos;
int64_t dts; int64_t dts;
unsigned int size; unsigned int size;
unsigned int samplesInChunk; unsigned int samples_in_chunk;
unsigned int entries; unsigned int entries;
int cts; int cts;
#define MOV_SYNC_SAMPLE 0x0001 #define MOV_SYNC_SAMPLE 0x0001
...@@ -78,20 +78,20 @@ typedef struct MOVIndex { ...@@ -78,20 +78,20 @@ typedef struct MOVIndex {
int entry; int entry;
unsigned timescale; unsigned timescale;
uint64_t time; uint64_t time;
int64_t trackDuration; int64_t track_duration;
long sampleCount; long sample_count;
long sampleSize; long sample_size;
int hasKeyframes; int has_keyframes;
#define MOV_TRACK_CTTS 0x0001 #define MOV_TRACK_CTTS 0x0001
#define MOV_TRACK_STPS 0x0002 #define MOV_TRACK_STPS 0x0002
uint32_t flags; uint32_t flags;
int language; int language;
int trackID; int track_id;
int tag; ///< stsd fourcc int tag; ///< stsd fourcc
AVCodecContext *enc; AVCodecContext *enc;
int vosLen; int vos_len;
uint8_t *vosData; uint8_t *vos_data;
MOVIentry *cluster; MOVIentry *cluster;
int audio_vbr; int audio_vbr;
int height; ///< active picture (w/o VBI) height for D-10/IMX 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