Mercurial > libavcodec.hg
changeset 10235:14353a40db5e libavcodec
Cosmetics: Fix typo.
author | cehoyos |
---|---|
date | Wed, 23 Sep 2009 10:07:29 +0000 |
parents | c2fc56bdee95 |
children | 0e9a50fbed9f |
files | h264.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/h264.c Wed Sep 23 09:58:44 2009 +0000 +++ b/h264.c Wed Sep 23 10:07:29 2009 +0000 @@ -7088,7 +7088,7 @@ sps->num_units_in_tick = get_bits_long(&s->gb, 32); sps->time_scale = get_bits_long(&s->gb, 32); if(sps->num_units_in_tick-1 > 0x7FFFFFFEU || sps->time_scale-1 > 0x7FFFFFFEU){ - av_log(h->s.avctx, AV_LOG_ERROR, "time_scale/num_units_in_tick inavlid or unsupported (%d/%d)\n", sps->time_scale, sps->num_units_in_tick); + av_log(h->s.avctx, AV_LOG_ERROR, "time_scale/num_units_in_tick invalid or unsupported (%d/%d)\n", sps->time_scale, sps->num_units_in_tick); return -1; } sps->fixed_frame_rate_flag = get_bits1(&s->gb);