summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-03-13 21:17:05 +0100
committerDiego Biurrun <diego@biurrun.de>2013-03-13 21:20:12 +0100
commit6d97484d72e33f7dde9493a9ead1a72e2f029605 (patch)
tree55dd3090fc63aaf22da92145fe8310cfe0cf9c78 /libavcodec/h264.c
parent1ae07959ab39a96eee6496b418f377f9085ce4a5 (diff)
downloadffmpeg-streaming-6d97484d72e33f7dde9493a9ead1a72e2f029605.zip
ffmpeg-streaming-6d97484d72e33f7dde9493a9ead1a72e2f029605.tar.gz
avcodec: av_log_ask_for_sample() ---> avpriv_request_sample()
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 5308fc3..2e9487c 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -3356,8 +3356,8 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
h->droppable = last_pic_droppable;
return AVERROR_INVALIDDATA;
} else if (last_pic_droppable != h->droppable) {
- av_log_ask_for_sample(h->avctx,
- "Found reference and non-reference fields in the same frame.\n");
+ avpriv_request_sample(h->avctx,
+ "Found reference and non-reference fields in the same frame, which");
h->picture_structure = last_pic_structure;
h->droppable = last_pic_droppable;
return AVERROR_PATCHWELCOME;
OpenPOWER on IntegriCloud