diff options
author | Diego Biurrun | 2011-04-22 19:41:59 +0200 |
---|---|---|
committer | Diego Biurrun | 2011-04-22 20:12:39 +0200 |
commit | d9dee728b8c50fb6dbff3701e1abcb2eac5895b3 (patch) | |
tree | d8edd5dc0de891aa2f920397f86a044105a8f245 /libavcodec/atrac3.c | |
parent | 44f566b79afcbbb152ec21db667ea3d2f42e8f8d (diff) |
Use av_log_ask_for_sample() to request samples from users.
Diffstat (limited to 'libavcodec/atrac3.c')
-rw-r--r-- | libavcodec/atrac3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index 563352094d..78df5f1fb3 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -186,7 +186,7 @@ static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){ obuf[i] = c ^ buf[i]; if (off) - av_log(NULL,AV_LOG_DEBUG,"Offset of %d not handled, post sample on ffmpeg-dev.\n",off); + av_log_ask_for_sample(NULL, "Offset of %d not handled.\n", off); return off; } |