* qatar/master: movenc: Simplify code by using avio_wb24 bfin: unbreak compilation Merged-by: Michael Niedermayer <michaelni@gmx.at>tags/n1.2
@@ -22,6 +22,7 @@ | |||||
#include "libavcodec/avcodec.h" | #include "libavcodec/avcodec.h" | ||||
#include "libavcodec/vp3dsp.h" | #include "libavcodec/vp3dsp.h" | ||||
#include "libavcodec/dsputil.h" | |||||
#include "dsputil_bfin.h" | #include "dsputil_bfin.h" | ||||
#include "vp3_bfin.h" | #include "vp3_bfin.h" | ||||
@@ -0,0 +1,29 @@ | |||||
/* | |||||
* This file is part of FFmpeg. | |||||
* | |||||
* FFmpeg is free software; you can redistribute it and/or | |||||
* modify it under the terms of the GNU Lesser General Public | |||||
* License as published by the Free Software Foundation; either | |||||
* version 2.1 of the License, or (at your option) any later version. | |||||
* | |||||
* FFmpeg is distributed in the hope that it will be useful, | |||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||||
* Lesser General Public License for more details. | |||||
* | |||||
* You should have received a copy of the GNU Lesser General Public | |||||
* License along with FFmpeg; if not, write to the Free Software | |||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |||||
*/ | |||||
#ifndef AVCODEC_BFIN_VP3_BFIN_H | |||||
#define AVCODEC_BFIN_VP3_BFIN_H | |||||
#include <stdint.h> | |||||
void ff_bfin_vp3_idct(int16_t *block); | |||||
void ff_bfin_vp3_idct_put(uint8_t *dest, int line_size, int16_t *block); | |||||
void ff_bfin_vp3_idct_add(uint8_t *dest, int line_size, int16_t *block); | |||||
#endif /* AVCODEC_BFIN_VP3_BFIN_H */ |
@@ -356,8 +356,7 @@ static int mov_write_esds_tag(AVIOContext *pb, MOVTrack *track) // Basic | |||||
else | else | ||||
avio_w8(pb, 0x11); // flags (= Visualstream) | avio_w8(pb, 0x11); // flags (= Visualstream) | ||||
avio_w8(pb, track->enc->rc_buffer_size>>(3+16)); // Buffersize DB (24 bits) | |||||
avio_wb16(pb, (track->enc->rc_buffer_size>>3)&0xFFFF); // Buffersize DB | |||||
avio_wb24(pb, track->enc->rc_buffer_size >> 3); // Buffersize DB | |||||
avg_bitrate = compute_avg_bitrate(track); | avg_bitrate = compute_avg_bitrate(track); | ||||
// maxbitrate (FIXME should be max rate in any 1 sec window) | // maxbitrate (FIXME should be max rate in any 1 sec window) | ||||