diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-25 23:53:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-13 20:42:21 +0100 |
commit | 63d744e2be39466e3a734c2987cd713e0bac101e (patch) | |
tree | ccea7c1ea4dd0e8a160472cd67a053874864208a /libavformat | |
parent | f099d3d1d5466bd63f4ab36270d169ff9ea613b8 (diff) | |
download | ffmpeg-63d744e2be39466e3a734c2987cd713e0bac101e.tar.gz |
av_log_missing_feature() ---> avpriv_report_missing_feature()
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mpegts.c | 2 | ||||
-rw-r--r-- | libavformat/oggparseskeleton.c | 4 | ||||
-rw-r--r-- | libavformat/spdifdec.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 61b8b55c42..418833e35b 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1091,7 +1091,7 @@ static int parse_MP4SLDescrTag(MP4DescrParseContext *d, int64_t off, int len) descr->sl.au_seq_num_len = (lengths >> 7) & 0x1f; descr->sl.packet_seq_num_len = (lengths >> 2) & 0x1f; } else { - av_log_missing_feature(d->s, "Predefined SLConfigDescriptor\n", 0); + avpriv_report_missing_feature(d->s, "Predefined SLConfigDescriptor"); } return 0; } diff --git a/libavformat/oggparseskeleton.c b/libavformat/oggparseskeleton.c index 2de067d84e..f437c69444 100644 --- a/libavformat/oggparseskeleton.c +++ b/libavformat/oggparseskeleton.c @@ -75,8 +75,8 @@ static int skeleton_header(AVFormatContext *s, int idx) target_idx = ogg_find_stream(ogg, AV_RL32(buf+12)); start_granule = AV_RL64(buf+36); if (os->start_granule != OGG_NOGRANULE_VALUE) { - av_log_missing_feature(s, - "Multiple fisbone for the same stream", 0); + avpriv_report_missing_feature(s, + "Multiple fisbone for the same stream"); return 1; } if (target_idx >= 0 && start_granule != OGG_NOGRANULE_VALUE) { diff --git a/libavformat/spdifdec.c b/libavformat/spdifdec.c index 6d37c94f75..c8d4a3f430 100644 --- a/libavformat/spdifdec.c +++ b/libavformat/spdifdec.c @@ -213,7 +213,7 @@ static int spdif_read_packet(AVFormatContext *s, AVPacket *pkt) st->codec->codec_type = AVMEDIA_TYPE_AUDIO; st->codec->codec_id = codec_id; } else if (codec_id != s->streams[0]->codec->codec_id) { - av_log_missing_feature(s, "Codec change in IEC 61937", 0); + avpriv_report_missing_feature(s, "Codec change in IEC 61937"); return AVERROR_PATCHWELCOME; } |