From 2bb6eba21d1843d67127be031aab7576dbe4c200 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sat, 17 Jan 2009 12:21:01 +0000 Subject: remove ff_get_fourcc() and use AV_RL32() instead Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/asv1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/asv1.c') diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c index 7e8699bcc7..ee91f61f47 100644 --- a/libavcodec/asv1.c +++ b/libavcodec/asv1.c @@ -584,7 +584,7 @@ static av_cold int encode_init(AVCodecContext *avctx){ avctx->extradata= av_mallocz(8); avctx->extradata_size=8; ((uint32_t*)avctx->extradata)[0]= le2me_32(a->inv_qscale); - ((uint32_t*)avctx->extradata)[1]= le2me_32(ff_get_fourcc("ASUS")); + ((uint32_t*)avctx->extradata)[1]= le2me_32(AV_RL32("ASUS")); for(i=0; i<64; i++){ int q= 32*scale*ff_mpeg1_default_intra_matrix[i]; -- cgit v1.2.3