On Wed, 20 Jun 2012, Alex Converse wrote:
--- libavcodec/h264.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 025a0dd..1724fe6 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -4375,7 +4375,7 @@ again: if (ff_h264_decode_seq_parameter_set(h) < 0 && h->is_avc && (nalsize != consumed) && nalsize) { av_log(h->s.avctx, AV_LOG_DEBUG, - "SPS decoding failure, try parsing the coomplete NAL\n"); + "SPS decoding failure, trying again with the complete NAL\n"); init_get_bits(&s->gb, buf + buf_index + 1 - consumed, 8 * (nalsize - 1)); ff_h264_decode_seq_parameter_set(h); -- 1.7.7.3
LGTM // Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
