diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-03-13 21:17:05 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-13 21:20:12 +0100 |
commit | 6d97484d72e33f7dde9493a9ead1a72e2f029605 (patch) | |
tree | 55dd3090fc63aaf22da92145fe8310cfe0cf9c78 /libavcodec/utvideodec.c | |
parent | 1ae07959ab39a96eee6496b418f377f9085ce4a5 (diff) | |
download | ffmpeg-6d97484d72e33f7dde9493a9ead1a72e2f029605.tar.gz |
avcodec: av_log_ask_for_sample() ---> avpriv_request_sample()
Diffstat (limited to 'libavcodec/utvideodec.c')
-rw-r--r-- | libavcodec/utvideodec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c index 06f3108eeb..cf9d2d8da7 100644 --- a/libavcodec/utvideodec.c +++ b/libavcodec/utvideodec.c @@ -376,7 +376,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, c->frame_pred = (c->frame_info >> 8) & 3; if (c->frame_pred == PRED_GRADIENT) { - av_log_ask_for_sample(avctx, "Frame uses gradient prediction\n"); + avpriv_request_sample(avctx, "Frame with gradient prediction"); return AVERROR_PATCHWELCOME; } @@ -491,7 +491,7 @@ static av_cold int decode_init(AVCodecContext *avctx) c->flags = AV_RL32(avctx->extradata + 12); if (c->frame_info_size != 4) - av_log_ask_for_sample(avctx, "Frame info is not 4 bytes\n"); + avpriv_request_sample(avctx, "Frame info not 4 bytes"); av_log(avctx, AV_LOG_DEBUG, "Encoding parameters %08X\n", c->flags); c->slices = (c->flags >> 24) + 1; c->compression = c->flags & 1; |