Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-17 16:30:10 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-08-17 17:11:09 +0400
commit0a141b0e49ba3989a28f5f006a978bdab92a9217 (patch)
tree1e0114a601e5c66138f0697d5a664da68961d1ec /libavcodec/dxa.c
parent2c25e83b1d022ab36842d77749024b3d720a4227 (diff)
avcodec/dxa: Support printing picture debug info
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dxa.c')
-rw-r--r--libavcodec/dxa.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/dxa.c b/libavcodec/dxa.c
index 8f8e1a772d..0c90264e0d 100644
--- a/libavcodec/dxa.c
+++ b/libavcodec/dxa.c
@@ -246,6 +246,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
return AVERROR_UNKNOWN;
}
}
+
+ if (avctx->debug & FF_DEBUG_PICT_INFO)
+ av_log(avctx, AV_LOG_DEBUG, "compr:%2d, dsize:%d\n", compr, (int)dsize);
+
switch(compr){
case -1:
frame->key_frame = 0;