mpegvideo: skip ff_print_debug_info() for VDPAU

Based on code by: MEANX / gruntster (Avidemux Rev 7990 — 2012-05-30 13:02:27)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-09-12 18:01:36 +02:00
parent bc3d5173cc
commit 75f3e0ad95
1 changed files with 3 additions and 1 deletions

View File

@ -1512,9 +1512,11 @@ static void draw_arrow(uint8_t *buf, int sx, int sy, int ex,
*/ */
void ff_print_debug_info(MpegEncContext *s, AVFrame *pict) void ff_print_debug_info(MpegEncContext *s, AVFrame *pict)
{ {
if (s->avctx->hwaccel || !pict || !pict->mb_type) if ( s->avctx->hwaccel || !pict || !pict->mb_type
|| (s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU))
return; return;
if (s->avctx->debug & (FF_DEBUG_SKIP | FF_DEBUG_QP | FF_DEBUG_MB_TYPE)) { if (s->avctx->debug & (FF_DEBUG_SKIP | FF_DEBUG_QP | FF_DEBUG_MB_TYPE)) {
int x,y; int x,y;