diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-07-24 23:44:45 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-07-24 23:44:45 +0000 |
commit | 008f085172255497ab08700f1a60d89a1c3385ca (patch) | |
tree | 0737d436d7f0aa50d031eb08d57f0812ba0b7456 | |
parent | 6b17c988e52a799d836147f1f3f635da40e4ba8f (diff) | |
download | ffmpeg-008f085172255497ab08700f1a60d89a1c3385ca.tar.gz |
vcr2 cleanup
Originally committed as revision 2081 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpeg12.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 1ece21d388..46c0162588 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -929,7 +929,7 @@ static int mpeg_decode_mb(MpegEncContext *s, case I_TYPE: if (get_bits1(&s->gb) == 0) { if (get_bits1(&s->gb) == 0){ - fprintf("invalid mb type in I Frame at %d %d\n", s->mb_x, s->mb_y); + fprintf(stderr, "invalid mb type in I Frame at %d %d\n", s->mb_x, s->mb_y); return -1; } mb_type = MB_TYPE_QUANT | MB_TYPE_INTRA; @@ -2154,8 +2154,7 @@ static int vcr2_init_sequence(AVCodecContext *avctx) { Mpeg1Context *s1 = avctx->priv_data; MpegEncContext *s = &s1->mpeg_enc_ctx; - int i, v, j; - float aspect; + int i, v; /* start new mpeg1 context decoding */ s->out_format = FMT_MPEG1; @@ -2182,13 +2181,12 @@ static int vcr2_init_sequence(AVCodecContext *avctx) s->chroma_inter_matrix[j] = v; } - /* we set mpeg2 parameters so that it emulates mpeg1 */ s->progressive_sequence = 1; s->progressive_frame = 1; s->picture_structure = PICT_FRAME; s->frame_pred_frame_dct = 1; s->mpeg2 = 1; - avctx->sub_id = 2; /* indicates mpeg1 */ + avctx->sub_id = 2; /* indicates mpeg2 */ return 0; } |