diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2014-09-06 12:06:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-06 19:38:37 +0200 |
commit | b76d6eb3bd70b38c1d02b257462bc7ed102550fb (patch) | |
tree | 44a31dc82bfe7584c0c5a03a1cbc24def5c4f7c0 | |
parent | b2c0b80f62912f932cc3bb04621408601a9ed4d5 (diff) | |
download | ffmpeg-b76d6eb3bd70b38c1d02b257462bc7ed102550fb.tar.gz |
avformat/mpegts: fix spelling error
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 20a2d309c2..c7e8bb52d9 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -156,7 +156,7 @@ struct MpegTSContext { }; #define MPEGTS_OPTIONS \ - { "resync_size", "Size limit for looking up a new syncronization.", offsetof(MpegTSContext, resync_size), AV_OPT_TYPE_INT, { .i64 = MAX_RESYNC_SIZE}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM } + { "resync_size", "Size limit for looking up a new synchronization.", offsetof(MpegTSContext, resync_size), AV_OPT_TYPE_INT, { .i64 = MAX_RESYNC_SIZE}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM } static const AVOption options[] = { MPEGTS_OPTIONS, |