diff options
author | Diego Biurrun | 2012-12-19 18:48:21 +0100 |
---|---|---|
committer | Diego Biurrun | 2012-12-21 00:18:34 +0100 |
commit | 511cf612ac979f536fd65e14603a87ca5ad435f3 (patch) | |
tree | 44bef1bf9a062368bf4ab89485279549af8bda90 /libavformat/dvenc.c | |
parent | 6906b19346ae8a330bfaa1c16ce535be10789723 (diff) |
miscellaneous typo fixes
Diffstat (limited to 'libavformat/dvenc.c')
-rw-r--r-- | libavformat/dvenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index 27a444ea1f..a991cc6b0c 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -47,9 +47,9 @@ struct DVMuxContext { AVFifoBuffer *audio_data[2]; /* FIFO for storing excessive amounts of PCM */ int frames; /* current frame number */ int64_t start_time; /* recording start time */ - int has_audio; /* frame under contruction has audio */ - int has_video; /* frame under contruction has video */ - uint8_t frame_buf[DV_MAX_FRAME_SIZE]; /* frame under contruction */ + int has_audio; /* frame under construction has audio */ + int has_video; /* frame under construction has video */ + uint8_t frame_buf[DV_MAX_FRAME_SIZE]; /* frame under construction */ }; static const int dv_aaux_packs_dist[12][9] = { |