diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-21 01:02:13 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-03 18:26:12 +0200 |
commit | a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7 (patch) | |
tree | f04a20b097c813143cf259c8001cc707fc6024d9 /libavformat/utils.c | |
parent | 4a7af92cc80ced8498626401ed21f25ffe6740c8 (diff) | |
download | ffmpeg-a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7.tar.gz |
silly typo fixes
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 89eb759bc9..e1acb254b6 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -722,7 +722,7 @@ int ff_get_audio_frame_size(AVCodecContext *enc, int size, int mux) if ((frame_size = av_get_audio_frame_duration(enc, size)) > 0) return frame_size; - /* fallback to using frame_size if muxing */ + /* Fall back on using frame_size if muxing. */ if (enc->frame_size > 1) return enc->frame_size; @@ -1790,8 +1790,8 @@ int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int //try to seek via read_timestamp() } - //Fallback to old API if new is not implemented but old is - //Note the old has somewat different sematics + // Fall back on old API if new is not implemented but old is. + // Note the old API has somewhat different semantics. if(s->iformat->read_seek || 1) return av_seek_frame(s, stream_index, ts, flags | ((uint64_t)ts - min_ts > (uint64_t)max_ts - ts ? AVSEEK_FLAG_BACKWARD : 0)); |