Browse Source

mpeg12: fix av_log level and context

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
801a2a1df0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/mpeg12.c

+ 2
- 2
libavcodec/mpeg12.c View File

@@ -2137,9 +2137,9 @@ static void mpeg_decode_user_data(AVCodecContext *avctx,
}

/* for(i=0; !(!p[i-2] && !p[i-1] && p[i]==1) && i<buf_size; i++){
av_log(0,0, "%c", p[i]);
av_log(avctx, AV_LOG_ERROR, "%c", p[i]);
}
av_log(0,0, "\n");*/
av_log(avctx, AV_LOG_ERROR, "\n");*/
}

/* we parse the DTG active format information */


Loading…
Cancel
Save