diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-21 23:13:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-21 23:13:53 +0200 |
commit | 248b1ff26b7ccd4cc2e1ad9220f203015a129a10 (patch) | |
tree | dbd695a80637ec85f069a713fdab9701b9550a8b /libavformat | |
parent | 8f37a1e8dc93df5530df45a6f6fcf2d8dd3722e0 (diff) | |
download | ffmpeg-248b1ff26b7ccd4cc2e1ad9220f203015a129a10.tar.gz |
Fix various uses of av_log_missing_feature()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/oggdec.c | 2 | ||||
-rw-r--r-- | libavformat/spdifdec.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c index a36dfae234..0fce8986b1 100644 --- a/libavformat/oggdec.c +++ b/libavformat/oggdec.c @@ -175,7 +175,7 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial) uint8_t *buf; if (ogg->nstreams != 1) { - av_log_missing_feature(s, "Changing stream parameters in multistream ogg is", 0); + av_log_missing_feature(s, "Changing stream parameters in multistream ogg", 0); return AVERROR_PATCHWELCOME; } diff --git a/libavformat/spdifdec.c b/libavformat/spdifdec.c index dce33461fe..ad138abb13 100644 --- a/libavformat/spdifdec.c +++ b/libavformat/spdifdec.c @@ -92,7 +92,7 @@ static int spdif_get_offset_and_codec(AVFormatContext *s, default: if (s) { /* be silent during a probe */ av_log(s, AV_LOG_WARNING, "Data type 0x%04x", data_type); - av_log_missing_feature(s, " in IEC 61937 is", 1); + av_log_missing_feature(s, " in IEC 61937", 1); } return AVERROR_PATCHWELCOME; } |