diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-29 00:19:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-29 00:19:43 +0200 |
commit | 3f5095f213a02ff2b9bec08a9eddb9d2655e97bb (patch) | |
tree | 228e3f78b7aefd7fd0eeb13c53e918f5ce3d46c1 /libavformat | |
parent | 755f7929c6aa919918df534ae68cc78441b186e7 (diff) | |
download | ffmpeg-3f5095f213a02ff2b9bec08a9eddb9d2655e97bb.tar.gz |
avformat/hlsenc: fix outter typo
Found-by: beastd
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/hlsenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index b984e031ef..1d70621573 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -300,8 +300,8 @@ static int hls_write_header(AVFormatContext *s) av_assert0(s->nb_streams == hls->avf->nb_streams); for (i = 0; i < s->nb_streams; i++) { AVStream *inner_st = hls->avf->streams[i]; - AVStream *outter_st = s->streams[i]; - avpriv_set_pts_info(outter_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_base.den); + AVStream *outer_st = s->streams[i]; + avpriv_set_pts_info(outer_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_base.den); } fail: |