summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-03-15 17:13:52 +0000
committerPaul B Mahol <onemda@gmail.com>2013-03-15 18:10:28 +0000
commita9b424879f101b56cf75c2db889477bba188fe20 (patch)
treea9e67fe3fba92feaca7bdeb8122ebe2772f339ae
parent3d751b1ef6619b20631b17c880aa96f2dd3a11dd (diff)
lavc & lavf: replace deprecated av_log* functions
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r--libavcodec/012v.c2
-rw-r--r--libavcodec/adpcm.c4
-rw-r--r--libavcodec/atrac1.c2
-rw-r--r--libavcodec/cook.c2
-rw-r--r--libavcodec/dcadec.c6
-rw-r--r--libavcodec/exr.c2
-rw-r--r--libavcodec/iff.c4
-rw-r--r--libavcodec/mjpegdec.c2
-rw-r--r--libavcodec/mpegaudiodec.c2
-rw-r--r--libavcodec/mvcdec.c2
-rw-r--r--libavcodec/paf.c2
-rw-r--r--libavcodec/qdm2.c2
-rw-r--r--libavcodec/ra288.c2
-rw-r--r--libavcodec/sanm.c6
-rw-r--r--libavcodec/sgirledec.c2
-rw-r--r--libavcodec/vc1dec.c2
-rw-r--r--libavcodec/vcr1.c2
-rw-r--r--libavformat/astdec.c2
-rw-r--r--libavformat/avr.c4
-rw-r--r--libavformat/brstm.c8
-rw-r--r--libavformat/electronicarts.c16
-rw-r--r--libavformat/epafdec.c2
-rw-r--r--libavformat/icodec.c7
-rw-r--r--libavformat/iff.c4
-rw-r--r--libavformat/lvfdec.c4
-rw-r--r--libavformat/lxfdec.c2
-rw-r--r--libavformat/mvdec.c16
-rw-r--r--libavformat/nistspheredec.c4
-rw-r--r--libavformat/oggdec.c2
-rw-r--r--libavformat/pmpdec.c2
-rw-r--r--libavformat/wvenc.c2
31 files changed, 61 insertions, 60 deletions
diff --git a/libavcodec/012v.c b/libavcodec/012v.c
index bb915c2e8b..58e3cd6fbd 100644
--- a/libavcodec/012v.c
+++ b/libavcodec/012v.c
@@ -30,7 +30,7 @@ static av_cold int zero12v_decode_init(AVCodecContext *avctx)
avctx->bits_per_raw_sample = 10;
if (avctx->codec_tag == MKTAG('a', '1', '2', 'v'))
- av_log_ask_for_sample(avctx, "Samples with actual transparency needed\n");
+ avpriv_request_sample(avctx, "transparency");
return 0;
}
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 3d6115c5c2..3f8cfbcf53 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -323,7 +323,7 @@ static int xa_decode(AVCodecContext *avctx, int16_t *out0, int16_t *out1,
shift = 12 - (in[4+i*2] & 15);
filter = in[4+i*2] >> 4;
if (filter >= FF_ARRAY_ELEMS(xa_adpcm_table)) {
- av_log_ask_for_sample(avctx, "unknown XA-ADPCM filter %d\n", filter);
+ avpriv_request_sample(avctx, "unknown XA-ADPCM filter %d", filter);
filter=0;
}
f0 = xa_adpcm_table[filter][0];
@@ -352,7 +352,7 @@ static int xa_decode(AVCodecContext *avctx, int16_t *out0, int16_t *out1,
shift = 12 - (in[5+i*2] & 15);
filter = in[5+i*2] >> 4;
if (filter >= FF_ARRAY_ELEMS(xa_adpcm_table)) {
- av_log_ask_for_sample(avctx, "unknown XA-ADPCM filter %d\n", filter);
+ avpriv_request_sample(avctx, "unknown XA-ADPCM filter %d", filter);
filter=0;
}
diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c
index ff7dd3ee48..7c1d1ebccd 100644
--- a/libavcodec/atrac1.c
+++ b/libavcodec/atrac1.c
@@ -342,7 +342,7 @@ static av_cold int atrac1_decode_init(AVCodecContext *avctx)
}
if (avctx->block_align <= 0) {
- av_log_ask_for_sample(avctx, "unsupported block align\n");
+ av_log(avctx, AV_LOG_ERROR, "Unsupported block align.");
return AVERROR_PATCHWELCOME;
}
diff --git a/libavcodec/cook.c b/libavcodec/cook.c
index ffdb13c1ab..08cd4017fc 100644
--- a/libavcodec/cook.c
+++ b/libavcodec/cook.c
@@ -1202,7 +1202,7 @@ static av_cold int cook_decode_init(AVCodecContext *avctx)
return AVERROR_PATCHWELCOME;
}
if (q->subpacket[s].subbands == 0) {
- av_log_ask_for_sample(avctx, "subbands is 0\n");
+ avpriv_request_sample(avctx, "subbands = 0");
return AVERROR_PATCHWELCOME;
}
q->subpacket[s].gains1.now = q->subpacket[s].gain_1;
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c
index 724f0f8246..cf4412c5cc 100644
--- a/libavcodec/dcadec.c
+++ b/libavcodec/dcadec.c
@@ -739,7 +739,7 @@ static int dca_parse_frame_header(DCAContext *s)
if (s->lfe == 3) {
s->lfe = 0;
- av_log_ask_for_sample(s->avctx, "LFE is 3\n");
+ avpriv_request_sample(s->avctx, "LFE = 3");
return AVERROR_PATCHWELCOME;
}
@@ -1012,7 +1012,7 @@ static int dca_subframe_header(DCAContext *s, int base_channel, int block_index)
/* Scale factor index */
quant7 = get_bits(&s->gb, 8);
if (quant7 > 127) {
- av_log_ask_for_sample(s->avctx, "LFEScaleIndex larger than 127\n");
+ avpriv_request_sample(s->avctx, "LFEScaleIndex larger than 127");
return AVERROR_INVALIDDATA;
}
s->lfe_scale_factor = scale_factor_quant7[quant7];
@@ -2167,7 +2167,7 @@ static int dca_decode_frame(AVCodecContext *avctx, void *data,
}
if (s->xch_base_channel < 2) {
- av_log_ask_for_sample(avctx, "XCh with fewer than 2 base channels is not supported\n");
+ avpriv_request_sample(avctx, "XCh with fewer than 2 base channels");
continue;
}
diff --git a/libavcodec/exr.c b/libavcodec/exr.c
index 4e7c19ce1b..af1bee0aae 100644
--- a/libavcodec/exr.c
+++ b/libavcodec/exr.c
@@ -697,7 +697,7 @@ static int decode_frame(AVCodecContext *avctx,
avctx->pix_fmt = AV_PIX_FMT_RGB48;
break;
case EXR_UINT:
- av_log_missing_feature(avctx, "32-bit unsigned int", 1);
+ avpriv_request_sample(avctx, "32-bit unsigned int");
return AVERROR_PATCHWELCOME;
default:
av_log(avctx, AV_LOG_ERROR, "Missing channel list\n");
diff --git a/libavcodec/iff.c b/libavcodec/iff.c
index 822a981643..716a7314e2 100644
--- a/libavcodec/iff.c
+++ b/libavcodec/iff.c
@@ -345,7 +345,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
} else if (avctx->bits_per_coded_sample == 32) {
avctx->pix_fmt = AV_PIX_FMT_BGR32;
} else {
- av_log_ask_for_sample(avctx, "unknown bits_per_coded_sample\n");
+ avpriv_request_sample(avctx, "unknown bits_per_coded_sample");
return AVERROR_PATCHWELCOME;
}
}
@@ -646,7 +646,7 @@ static void decode_deep_tvdc32(uint8_t *dst, const uint8_t *src, int src_size, i
static int unsupported(AVCodecContext *avctx)
{
IffContext *s = avctx->priv_data;
- av_log_ask_for_sample(avctx, "unsupported bitmap (compression %i, bpp %i, ham %i)\n", s->compression, s->bpp, s->ham);
+ avpriv_request_sample(avctx, "bitmap (compression %i, bpp %i, ham %i)", s->compression, s->bpp, s->ham);
return AVERROR_INVALIDDATA;
}
diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c
index 78ba8e840a..5880fec4b8 100644
--- a/libavcodec/mjpegdec.c
+++ b/libavcodec/mjpegdec.c
@@ -330,7 +330,7 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
if (s->interlaced && (s->bottom_field == !s->interlace_polarity)) {
if (s->progressive) {
- av_log_ask_for_sample(s->avctx, "progressively coded interlaced pictures not supported\n");
+ avpriv_request_sample(s->avctx, "progressively coded interlaced picture");
return AVERROR_INVALIDDATA;
}
} else{
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c
index f7fdeb5334..4fffb6c878 100644
--- a/libavcodec/mpegaudiodec.c
+++ b/libavcodec/mpegaudiodec.c
@@ -209,7 +209,7 @@ static void ff_compute_band_indexes(MPADecodeContext *s, GranuleDef *g)
if (g->block_type == 2) {
if (g->switch_point) {
if(s->sample_rate_index == 8)
- av_log_ask_for_sample(s->avctx, "switch point in 8khz\n");
+ avpriv_request_sample(s->avctx, "switch point in 8khz");
/* if switched mode, we handle the 36 first samples as
long blocks. For 8000Hz, we handle the 72 first
exponents as long blocks */
diff --git a/libavcodec/mvcdec.c b/libavcodec/mvcdec.c
index 54e975717f..c4385fe5a5 100644
--- a/libavcodec/mvcdec.c
+++ b/libavcodec/mvcdec.c
@@ -150,7 +150,7 @@ static int decode_mvc2(AVCodecContext *avctx, GetByteContext *gb, uint8_t *dst_s
av_log(avctx, AV_LOG_WARNING, "dimension mismatch\n");
if (bytestream2_get_byteu(gb)) {
- av_log_ask_for_sample(avctx, "bitmap feature\n");
+ avpriv_request_sample(avctx, "bitmap feature");
return AVERROR_PATCHWELCOME;
}
diff --git a/libavcodec/paf.c b/libavcodec/paf.c
index 5ff09b9816..789231498c 100644
--- a/libavcodec/paf.c
+++ b/libavcodec/paf.c
@@ -342,7 +342,7 @@ static int paf_vid_decode(AVCodecContext *avctx, void *data,
}
break;
default:
- av_log_ask_for_sample(avctx, "unknown/invalid code\n");
+ avpriv_request_sample(avctx, "unknown/invalid code");
return AVERROR_INVALIDDATA;
}
diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c
index 977528e295..108c327d53 100644
--- a/libavcodec/qdm2.c
+++ b/libavcodec/qdm2.c
@@ -646,7 +646,7 @@ static void fill_coding_method_array (sb_int8_array tone_level_idx, sb_int8_arra
if (!superblocktype_2_3) {
/* This case is untested, no samples available */
- av_log_ask_for_sample(NULL, "!superblocktype_2_3");
+ avpriv_request_sample(NULL, "!superblocktype_2_3");
return;
for (ch = 0; ch < nb_channels; ch++)
for (sb = 0; sb < 30; sb++) {
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index 7269783345..393ea0bfbf 100644
--- a/libavcodec/ra288.c
+++ b/libavcodec/ra288.c
@@ -68,7 +68,7 @@ static av_cold int ra288_decode_init(AVCodecContext *avctx)
avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
if (avctx->block_align <= 0) {
- av_log_ask_for_sample(avctx, "unsupported block align\n");
+ av_log(avctx, AV_LOG_ERROR, "unsupported block align\n");
return AVERROR_PATCHWELCOME;
}
diff --git a/libavcodec/sanm.c b/libavcodec/sanm.c
index 66ff52257f..f217ef36bb 100644
--- a/libavcodec/sanm.c
+++ b/libavcodec/sanm.c
@@ -760,7 +760,7 @@ static int process_frame_obj(SANMVideoContext *ctx)
return old_codec47(ctx, top, left, w, h);
break;
default:
- av_log_ask_for_sample(ctx->avctx, "unknown subcodec %d\n", codec);
+ avpriv_request_sample(ctx->avctx, "unknown subcodec %d", codec);
return AVERROR_PATCHWELCOME;
}
}
@@ -784,7 +784,7 @@ static int decode_0(SANMVideoContext *ctx)
static int decode_nop(SANMVideoContext *ctx)
{
- av_log_ask_for_sample(ctx->avctx, "unknown/unsupported compression type\n");
+ avpriv_request_sample(ctx->avctx, "unknown/unsupported compression type");
return AVERROR_PATCHWELCOME;
}
@@ -1271,7 +1271,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
return ret;
}
} else {
- av_log_ask_for_sample(avctx, "subcodec %d is not implemented\n",
+ avpriv_request_sample(avctx, "subcodec %d",
header.codec);
return AVERROR_PATCHWELCOME;
}
diff --git a/libavcodec/sgirledec.c b/libavcodec/sgirledec.c
index d49a957b8a..9d6cdbab73 100644
--- a/libavcodec/sgirledec.c
+++ b/libavcodec/sgirledec.c
@@ -101,7 +101,7 @@ static int decode_sgirle8(AVCodecContext *avctx, uint8_t *dst, const uint8_t *sr
v -= length;
} while (v > 0);
} else {
- av_log_ask_for_sample(avctx, "unknown opcode\n");
+ avpriv_request_sample(avctx, "opcode %d", v);
return AVERROR_PATCHWELCOME;
}
}
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c
index d7b2f9c7d1..aea2bbb897 100644
--- a/libavcodec/vc1dec.c
+++ b/libavcodec/vc1dec.c
@@ -5287,7 +5287,7 @@ static av_cold int vc1_decode_init(AVCodecContext *avctx)
v->output_height > 1 << 14) return -1;
if ((v->sprite_width&1) || (v->sprite_height&1)) {
- av_log_ask_for_sample(avctx, "odd sprites are not supported\n");
+ avpriv_request_sample(avctx, "odd sprites support");
return AVERROR_PATCHWELCOME;
}
}
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c
index e9c988e90a..60bfcce41e 100644
--- a/libavcodec/vcr1.c
+++ b/libavcodec/vcr1.c
@@ -38,7 +38,7 @@ static av_cold int vcr1_decode_init(AVCodecContext *avctx)
avctx->pix_fmt = AV_PIX_FMT_YUV410P;
if (avctx->width % 8 || avctx->height%4) {
- av_log_ask_for_sample(avctx, "odd dimensions are not supported\n");
+ avpriv_request_sample(avctx, "odd dimensions support");
return AVERROR_PATCHWELCOME;
}
return 0;
diff --git a/libavformat/astdec.c b/libavformat/astdec.c
index fb5a34fddd..886274410d 100644
--- a/libavformat/astdec.c
+++ b/libavformat/astdec.c
@@ -50,7 +50,7 @@ static int ast_read_header(AVFormatContext *s)
depth = avio_rb16(s->pb);
if (depth != 16) {
- av_log_ask_for_sample(s, "unsupported depth %d\n", depth);
+ avpriv_request_sample(s, "depth %d", depth);
return AVERROR_INVALIDDATA;
}
diff --git a/libavformat/avr.c b/libavformat/avr.c
index 71a107c3ac..473136ec3c 100644
--- a/libavformat/avr.c
+++ b/libavformat/avr.c
@@ -51,7 +51,7 @@ static int avr_read_header(AVFormatContext *s)
} else if (chan == 0xFFFFu) {
st->codec->channels = 2;
} else {
- av_log_ask_for_sample(s, "unknown number of channels\n");
+ avpriv_request_sample(s, "chan %d", chan);
return AVERROR_PATCHWELCOME;
}
@@ -78,7 +78,7 @@ static int avr_read_header(AVFormatContext *s)
} else if (sign == 0xFFFFu && bps == 16) {
st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
} else {
- av_log_ask_for_sample(s, "unknown bits per sample\n");
+ avpriv_request_sample(s, "bits per sample %d", bps);
return AVERROR_PATCHWELCOME;
}
diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index 82f3027620..7781b3c559 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -75,7 +75,7 @@ static int read_header(AVFormatContext *s)
return AVERROR_INVALIDDATA;
}
if (bom == 0xFFFE) {
- av_log_ask_for_sample(s, "unsupported byte order\n");
+ avpriv_request_sample(s, "little endian byte order");
return AVERROR_PATCHWELCOME;
}
@@ -110,7 +110,7 @@ static int read_header(AVFormatContext *s)
case 1: codec = AV_CODEC_ID_PCM_S16BE_PLANAR; break;
case 2: codec = AV_CODEC_ID_ADPCM_THP; break;
default:
- av_log_ask_for_sample(s, "unsupported codec: %d\n", codec);
+ avpriv_request_sample(s, "codec %d", codec);
return AVERROR_PATCHWELCOME;
}
@@ -220,8 +220,8 @@ static int read_header(AVFormatContext *s)
}
avio_skip(s->pb, start - avio_tell(s->pb));
- if (major!=1 || minor)
- av_log_ask_for_sample(s, "Version %d.%d\n", major, minor);
+ if (major != 1 || minor)
+ avpriv_request_sample(s, "Version %d.%d", major, minor);
return 0;
default:
diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c
index 5b821a9cf5..cf7a271263 100644
--- a/libavformat/electronicarts.c
+++ b/libavformat/electronicarts.c
@@ -184,7 +184,7 @@ static int process_audio_header_elements(AVFormatContext *s)
case 3: ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R3; break;
case -1: break;
default:
- av_log_ask_for_sample(s, "unsupported stream type; revision=%i\n", revision);
+ avpriv_request_sample(s, "stream type; revision=%i", revision);
return 0;
}
switch (revision2) {
@@ -195,7 +195,7 @@ static int process_audio_header_elements(AVFormatContext *s)
case 2: ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R1; break;
case 3: ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R2; break;
default:
- av_log_ask_for_sample(s, "unsupported stream type; revision=%i, revision2=%i\n", revision, revision2);
+ avpriv_request_sample(s, "stream type; revision=%i, revision2=%i", revision, revision2);
return 0;
}
break;
@@ -203,12 +203,12 @@ static int process_audio_header_elements(AVFormatContext *s)
case -1: break;
default:
ea->audio_codec = AV_CODEC_ID_NONE;
- av_log_ask_for_sample(s, "unsupported stream type; revision2=%i\n", revision2);
+ avpriv_request_sample(s, "stream type; revision2=%i", revision2);
return 0;
}
break;
default:
- av_log_ask_for_sample(s, "unsupported stream type; compression_type=%i\n", compression_type);
+ avpriv_request_sample(s, "stream type; compression_type=%i", compression_type);
return 0;
}
@@ -244,7 +244,7 @@ static int process_audio_header_eacs(AVFormatContext *s)
case 1: ea->audio_codec = AV_CODEC_ID_PCM_MULAW; ea->bytes = 1; break;
case 2: ea->audio_codec = AV_CODEC_ID_ADPCM_IMA_EA_EACS; break;
default:
- av_log_ask_for_sample(s, "unsupported stream type; audio compression_type=%i\n", compression_type);
+ avpriv_request_sample(s, "stream type; audio compression_type=%i", compression_type);
}
return 1;
@@ -332,7 +332,7 @@ static int process_ea_header(AVFormatContext *s) {
switch (blockid) {
case ISNh_TAG:
if (avio_rl32(pb) != EACS_TAG) {
- av_log_ask_for_sample(s, "unknown 1SNh headerid\n");
+ avpriv_request_sample(s, "unknown 1SNh headerid");
return 0;
}
err = process_audio_header_eacs(s);
@@ -344,7 +344,7 @@ static int process_ea_header(AVFormatContext *s) {
if (blockid == GSTR_TAG) {
avio_skip(pb, 4);
} else if ((blockid & 0xFFFF)!=PT00_TAG) {
- av_log_ask_for_sample(s, "unknown SCHl headerid\n");
+ avpriv_request_sample(s, "unknown SCHl headerid");
return 0;
}
err = process_audio_header_elements(s);
@@ -531,7 +531,7 @@ static int ea_read_packet(AVFormatContext *s,
chunk_size -= 12;
}
if (partial_packet) {
- av_log_ask_for_sample(s, "video header followed by audio packet not supported.\n");
+ avpriv_request_sample(s, "video header followed by audio packet");
av_free_packet(pkt);
partial_packet = 0;
}
diff --git a/libavformat/epafdec.c b/libavformat/epafdec.c
index ffb8b95ec4..c737892325 100644
--- a/libavformat/epafdec.c
+++ b/libavformat/epafdec.c
@@ -77,7 +77,7 @@ static int epaf_read_header(AVFormatContext *s)
st->codec->codec_id = AV_CODEC_ID_PCM_S8;
break;
case 1:
- av_log_missing_feature(s, "24-bit Paris PCM format", 1);
+ avpriv_request_sample(s, "24-bit Paris PCM format");
default:
return AVERROR_INVALIDDATA;
}
diff --git a/libavformat/icodec.c b/libavformat/icodec.c
index 37909aab72..fa308da722 100644
--- a/libavformat/icodec.c
+++ b/libavformat/icodec.c
@@ -53,7 +53,7 @@ static int read_header(AVFormatContext *s)
{
IcoDemuxContext *ico = s->priv_data;
AVIOContext *pb = s->pb;
- int i;
+ int i, codec;
avio_skip(pb, 4);
ico->nb_images = avio_rl16(pb);
@@ -88,7 +88,8 @@ static int read_header(AVFormatContext *s)
if (avio_seek(pb, ico->images[i].offset, SEEK_SET) < 0)
break;
- switch(avio_rl32(pb)) {
+ codec = avio_rl32(pb);
+ switch (codec) {
case MKTAG(0x89, 'P', 'N', 'G'):
st->codec->codec_id = AV_CODEC_ID_PNG;
st->codec->width = 0;
@@ -106,7 +107,7 @@ static int read_header(AVFormatContext *s)
st->codec->height = tmp / 2;
break;
default:
- av_log_ask_for_sample(s, "unsupported codec\n");
+ avpriv_request_sample(s, "codec %d", codec);
return AVERROR_INVALIDDATA;
}
}
diff --git a/libavformat/iff.c b/libavformat/iff.c
index 100d981cab..5b0d3ff18d 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -298,7 +298,7 @@ static int iff_read_header(AVFormatContext *s)
else if (fmt_size == sizeof(deep_abgr) && !memcmp(fmt, deep_abgr, sizeof(deep_abgr)))
st->codec->pix_fmt = AV_PIX_FMT_ABGR;
else {
- av_log_ask_for_sample(s, "unsupported color format\n");
+ avpriv_request_sample(s, "color format %.16s", fmt);
return AVERROR_PATCHWELCOME;
}
break;
@@ -364,7 +364,7 @@ static int iff_read_header(AVFormatContext *s)
} else if (iff->maud_bits == 8 && iff->maud_compression == 3) {
st->codec->codec_id = AV_CODEC_ID_PCM_MULAW;
} else {
- av_log_ask_for_sample(s, "unsupported compression %d and bit depth %d\n", iff->maud_compression, iff->maud_bits);
+ avpriv_request_sample(s, "compression %d and bit depth %d", iff->maud_compression, iff->maud_bits);
return AVERROR_PATCHWELCOME;
}
diff --git a/libavformat/lvfdec.c b/libavformat/lvfdec.c
index 08a089135e..f8dda58571 100644
--- a/libavformat/lvfdec.c
+++ b/libavformat/lvfdec.c
@@ -41,7 +41,7 @@ static int lvf_read_header(AVFormatContext *s)
if (!nb_streams)
return AVERROR_INVALIDDATA;
if (nb_streams > 2) {
- av_log_ask_for_sample(s, "too many streams\n");
+ avpriv_request_sample(s, "%d streams", nb_streams);
return AVERROR_PATCHWELCOME;
}
@@ -87,7 +87,7 @@ static int lvf_read_header(AVFormatContext *s)
avio_seek(s->pb, 2048 + 8, SEEK_SET);
return 0;
default:
- av_log_ask_for_sample(s, "unknown id\n");
+ avpriv_request_sample(s, "id %d", id);
return AVERROR_PATCHWELCOME;
}
diff --git a/libavformat/lxfdec.c b/libavformat/lxfdec.c
index 90c49749a6..876f988ef5 100644
--- a/libavformat/lxfdec.c
+++ b/libavformat/lxfdec.c
@@ -130,7 +130,7 @@ static int get_packet_header(AVFormatContext *s)
version = bytestream_get_le32(&p);
header_size = bytestream_get_le32(&p);
if (version > 1)
- av_log_ask_for_sample(s, "Unknown format version %i\n", version);
+ avpriv_request_sample(s, "format version %i", version);
if (header_size < (version ? 72 : 60) ||
header_size > LXF_MAX_PACKET_HEADER_SIZE ||
(header_size & 3)) {
diff --git a/libavformat/mvdec.c b/libavformat/mvdec.c
index 103a40af6d..5525233db5 100644
--- a/libavformat/mvdec.c
+++ b/libavformat/mvdec.c
@@ -172,7 +172,7 @@ static int parse_video_var(AVFormatContext *avctx, AVStream *st, const char *nam
} else if (!strcmp(str, "MVC2")) {
st->codec->codec_id = AV_CODEC_ID_MVC2;
} else {
- av_log_ask_for_sample(avctx, "unknown video compression %s\n", str);
+ avpriv_request_sample(avctx, "video compression %s", str);
}
av_free(str);
} else if (!strcmp(name, "FPS")) {
@@ -214,7 +214,7 @@ static void read_table(AVFormatContext *avctx, AVStream *st, int (*parse)(AVForm
name[sizeof(name) - 1] = 0;
size = avio_rb32(pb);
if (parse(avctx, st, name, size) < 0) {
- av_log_ask_for_sample(avctx, "unknown variable %s\n", name);
+ avpriv_request_sample(avctx, "variable %s", name);
avio_skip(pb, size);
}
}
@@ -274,7 +274,7 @@ static int mv_read_header(AVFormatContext *avctx)
vst->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
break;
default:
- av_log_ask_for_sample(avctx, "unknown video compression %i\n", v);
+ avpriv_request_sample(avctx, "video compression %i", v);
break;
}
vst->codec->codec_tag = 0;
@@ -293,7 +293,7 @@ static int mv_read_header(AVFormatContext *avctx)
if (v == AUDIO_FORMAT_SIGNED) {
ast->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
} else {
- av_log_ask_for_sample(avctx, "unknown audio compression (format %i)\n", v);
+ avpriv_request_sample(avctx, "audio compression (format %i)", v);
}
avio_skip(pb, 12);
@@ -317,7 +317,7 @@ static int mv_read_header(AVFormatContext *avctx)
read_table(avctx, NULL, parse_global_var);
if (mv->nb_audio_tracks > 1) {
- av_log_ask_for_sample(avctx, "multiple audio streams\n");
+ avpriv_request_sample(avctx, "multiple audio streams support");
return AVERROR_PATCHWELCOME;
} else if (mv->nb_audio_tracks) {
ast = avformat_new_stream(avctx, NULL);
@@ -329,7 +329,7 @@ static int mv_read_header(AVFormatContext *avctx)
if (ast->codec->codec_tag == 100 && ast->codec->codec_id == AUDIO_FORMAT_SIGNED && ast->codec->bits_per_coded_sample == 16) {
ast->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
} else {
- av_log_ask_for_sample(avctx, "unknown audio compression %i (format %i, width %i)\n",
+ avpriv_request_sample(avctx, "audio compression %i (format %i, width %i)",
ast->codec->codec_tag, ast->codec->codec_id, ast->codec->bits_per_coded_sample);
ast->codec->codec_id = AV_CODEC_ID_NONE;
}
@@ -341,7 +341,7 @@ static int mv_read_header(AVFormatContext *avctx)
}
if (mv->nb_video_tracks > 1) {
- av_log_ask_for_sample(avctx, "multiple video streams\n");
+ avpriv_request_sample(avctx, "multiple video streams support");
return AVERROR_PATCHWELCOME;
} else if (mv->nb_video_tracks) {
vst = avformat_new_stream(avctx, NULL);
@@ -357,7 +357,7 @@ static int mv_read_header(AVFormatContext *avctx)
if (mv->nb_video_tracks)
read_index(pb, vst);
} else {
- av_log_ask_for_sample(avctx, "unknown version %i\n", version);
+ avpriv_request_sample(avctx, "version %i", version);
return AVERROR_PATCHWELCOME;
}
diff --git a/libavformat/nistspheredec.c b/libavformat/nistspheredec.c
index 59c202003b..c09df9ccc1 100644
--- a/libavformat/nistspheredec.c
+++ b/libavformat/nistspheredec.c
@@ -70,7 +70,7 @@ static int nist_read_header(AVFormatContext *s)
!av_strcasecmp(coding, "mu-law")) {
st->codec->codec_id = AV_CODEC_ID_PCM_MULAW;
} else {
- av_log_ask_for_sample(s, "unsupported coding: %s\n", coding);
+ avpriv_request_sample(s, "coding %s", coding);
}
avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
@@ -93,7 +93,7 @@ static int nist_read_header(AVFormatContext *s)
} else if (!av_strcasecmp(format, "10")) {
be = 1;
} else if (av_strcasecmp(format, "1")) {
- av_log_ask_for_sample(s, "unsupported sample byte format: %s\n", format);
+ avpriv_request_sample(s, "sample byte format %s", format);
return AVERROR_PATCHWELCOME;
}
} else if (!memcmp(buffer, "sample_coding", 13)) {
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c
index 5cb03fe13a..fdb5e96f00 100644
--- a/libavformat/oggdec.c
+++ b/libavformat/oggdec.c
@@ -195,7 +195,7 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial, int nsegs)
if (i >= ogg->nstreams)
return ogg_new_stream(s, serial);
} else if (ogg->nstreams != 1) {
- av_log_missing_feature(s, "Changing stream parameters in multistream ogg", 0);
+ avpriv_report_missing_feature(s, "Changing stream parameters in multistream ogg");
return AVERROR_PATCHWELCOME;
}
diff --git a/libavformat/pmpdec.c b/libavformat/pmpdec.c
index e0394a9513..2fe6c46e13 100644
--- a/libavformat/pmpdec.c
+++ b/libavformat/pmpdec.c
@@ -139,7 +139,7 @@ static int pmp_packet(AVFormatContext *s, AVPacket *pkt)
int num_packets;
pmp->audio_packets = avio_r8(pb);
if (!pmp->audio_packets) {
- av_log_ask_for_sample(s, "0 audio packets\n");
+ avpriv_request_sample(s, "0 audio packets");
return AVERROR_PATCHWELCOME;
}
num_packets = (pmp->num_streams - 1) * pmp->audio_packets + 1;
diff --git a/libavformat/wvenc.c b/libavformat/wvenc.c
index 3cc0a50c2d..03d471ecb6 100644
--- a/libavformat/wvenc.c
+++ b/libavformat/wvenc.c
@@ -45,7 +45,7 @@ static int write_header(AVFormatContext *s)
return AVERROR(EINVAL);
}
if (codec->extradata_size > 0) {
- av_log_missing_feature(s, "remuxing from matroska container", 0);
+ avpriv_report_missing_feature(s, "remuxing from matroska container");
return AVERROR_PATCHWELCOME;
}
avpriv_set_pts_info(s->streams[0], 64, 1, codec->sample_rate);