diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-10-01 13:43:48 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-10-01 13:43:48 +0200 |
commit | ad0560fe7491a85c3e71d5a3d6a0443f10b33ab1 (patch) | |
tree | 649361a2fa01f5fa9a8531720da0936d084aad24 /libavformat | |
parent | cc41167aede4c101ad17eeffa8f39bb6c23d3dad (diff) | |
download | ffmpeg-ad0560fe7491a85c3e71d5a3d6a0443f10b33ab1.tar.gz |
mxf: Remove a typo
Introduced in 93370d1216
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mxfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index d666b47449..5ca398e58d 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -1533,7 +1533,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf) avpriv_set_pts_info(st, 64, descriptor->sample_rate.den, descriptor->sample_rate.num); } else { av_log(mxf->fc, AV_LOG_WARNING, "invalid sample rate (%d/%d) " - "found for stream #%, time base forced to 1/48000\n", + "found for stream #%d, time base forced to 1/48000\n", descriptor->sample_rate.num, descriptor->sample_rate.den, st->index); avpriv_set_pts_info(st, 64, 1, 48000); |