diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-04-25 18:29:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-04-25 18:29:06 +0000 |
commit | 644a92626a94d6f24110309cb2dc7d9ec3e79f25 (patch) | |
tree | 536101865dc2b937f4e4587909c299dc6f434b84 /libavcodec/asv1.c | |
parent | 3ca4b65479f587d5d79080699d16cdd5c9ec7e0a (diff) | |
download | ffmpeg-644a92626a94d6f24110309cb2dc7d9ec3e79f25.tar.gz |
PIX_FMT_NONE and related fixes
Originally committed as revision 4161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/asv1.c')
-rw-r--r-- | libavcodec/asv1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c index 4ab2518ab7..13976db619 100644 --- a/libavcodec/asv1.c +++ b/libavcodec/asv1.c @@ -557,6 +557,7 @@ static int decode_init(AVCodecContext *avctx){ common_init(avctx); init_vlcs(a); ff_init_scantable(a->dsp.idct_permutation, &a->scantable, scantab); + avctx->pix_fmt= PIX_FMT_YUV420P; a->inv_qscale= ((uint8_t*)avctx->extradata)[0]; if(a->inv_qscale == 0){ |