1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

FF_DEBUG_PICT_INFO and CODEC_FLAG_GRAY support

Originally committed as revision 2577 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2003-12-08 18:26:22 +00:00
parent f0a93eb0b2
commit f8830383a9

View File

@ -2406,7 +2406,8 @@ static void render_fragments(Vp3DecodeContext *s,
}
/* transform if this block was coded */
if (s->all_fragments[i].coding_method != MODE_COPY) {
if ((s->all_fragments[i].coding_method != MODE_COPY) &&
!((s->avctx->flags & CODEC_FLAG_GRAY) && plane)) {
if ((s->all_fragments[i].coding_method == MODE_USING_GOLDEN) ||
(s->all_fragments[i].coding_method == MODE_GOLDEN_MV))
@ -2792,7 +2793,8 @@ static int vp3_decode_frame(AVCodecContext *avctx,
if (s->theora >= 0x030300)
skip_bits1(&gb);
debug_vp3(" VP3 %sframe #%d: Q index = %d\n",
if (s->avctx->debug & FF_DEBUG_PICT_INFO)
av_log(s->avctx, AV_LOG_INFO, " VP3 %sframe #%d: Q index = %d\n",
s->keyframe?"key":"", counter, s->quality_index);
counter++;