Originally committed as revision 11734 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-02-01 13:55:15 +00:00
parent 0ff4670a21
commit 07311324a3
1 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ static const uint8_t fallback_cquant[] = {
* \param width width of the video frame * \param width width of the video frame
* \param height height of the video frame * \param height height of the video frame
*/ */
static void copy_frame(AVFrame *f, uint8_t *src, static void copy_frame(AVFrame *f, const uint8_t *src,
int width, int height) { int width, int height) {
AVPicture pic; AVPicture pic;
avpicture_fill(&pic, src, PIX_FMT_YUV420P, width, height); avpicture_fill(&pic, src, PIX_FMT_YUV420P, width, height);
@ -80,7 +80,7 @@ static void copy_frame(AVFrame *f, uint8_t *src,
* \brief extract quantization tables from codec data into our context * \brief extract quantization tables from codec data into our context
*/ */
static int get_quant(AVCodecContext *avctx, NuvContext *c, static int get_quant(AVCodecContext *avctx, NuvContext *c,
uint8_t *buf, int size) { const uint8_t *buf, int size) {
int i; int i;
if (size < 2 * 64 * 4) { if (size < 2 * 64 * 4) {
av_log(avctx, AV_LOG_ERROR, "insufficient rtjpeg quant data\n"); av_log(avctx, AV_LOG_ERROR, "insufficient rtjpeg quant data\n");