You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
Add av_ prefix to bswap macros
Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -588,8 +588,8 @@ static av_cold int encode_init(AVCodecContext *avctx){
|
||||
|
||||
avctx->extradata= av_mallocz(8);
|
||||
avctx->extradata_size=8;
|
||||
((uint32_t*)avctx->extradata)[0]= le2ne_32(a->inv_qscale);
|
||||
((uint32_t*)avctx->extradata)[1]= le2ne_32(AV_RL32("ASUS"));
|
||||
((uint32_t*)avctx->extradata)[0]= av_le2ne32(a->inv_qscale);
|
||||
((uint32_t*)avctx->extradata)[1]= av_le2ne32(AV_RL32("ASUS"));
|
||||
|
||||
for(i=0; i<64; i++){
|
||||
int q= 32*scale*ff_mpeg1_default_intra_matrix[i];
|
||||
|
||||
Reference in New Issue
Block a user