Merge commit 'e8ff7972064631afbdf240ec6bfd9dec30cf2ce8' into release/1.1
* commit 'e8ff7972064631afbdf240ec6bfd9dec30cf2ce8': eamad: use the bytestream2 API instead of AV_RL Conflicts: libavcodec/eamad.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		@@ -29,6 +29,7 @@
 | 
				
			|||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "avcodec.h"
 | 
					#include "avcodec.h"
 | 
				
			||||||
 | 
					#include "bytestream.h"
 | 
				
			||||||
#include "get_bits.h"
 | 
					#include "get_bits.h"
 | 
				
			||||||
#include "dsputil.h"
 | 
					#include "dsputil.h"
 | 
				
			||||||
#include "aandcttab.h"
 | 
					#include "aandcttab.h"
 | 
				
			||||||
@@ -232,32 +233,34 @@ static int decode_frame(AVCodecContext *avctx,
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    const uint8_t *buf = avpkt->data;
 | 
					    const uint8_t *buf = avpkt->data;
 | 
				
			||||||
    int buf_size       = avpkt->size;
 | 
					    int buf_size       = avpkt->size;
 | 
				
			||||||
    const uint8_t *buf_end = buf+buf_size;
 | 
					 | 
				
			||||||
    MadContext *s     = avctx->priv_data;
 | 
					    MadContext *s     = avctx->priv_data;
 | 
				
			||||||
 | 
					    GetByteContext gb;
 | 
				
			||||||
    int width, height, ret;
 | 
					    int width, height, ret;
 | 
				
			||||||
    int chunk_type;
 | 
					    int chunk_type;
 | 
				
			||||||
    int inter;
 | 
					    int inter;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (buf_size < 26) {
 | 
					    bytestream2_init(&gb, buf, buf_size);
 | 
				
			||||||
        av_log(avctx, AV_LOG_ERROR, "Input buffer too small\n");
 | 
					
 | 
				
			||||||
        *got_frame = 0;
 | 
					    chunk_type = bytestream2_get_le32(&gb);
 | 
				
			||||||
 | 
					    inter = (chunk_type == MADm_TAG || chunk_type == MADe_TAG);
 | 
				
			||||||
 | 
					    bytestream2_skip(&gb, 10);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    av_reduce(&avctx->time_base.num, &avctx->time_base.den,
 | 
				
			||||||
 | 
					              bytestream2_get_le16(&gb), 1000, 1<<30);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    width  = bytestream2_get_le16(&gb);
 | 
				
			||||||
 | 
					    height = bytestream2_get_le16(&gb);
 | 
				
			||||||
 | 
					    bytestream2_skip(&gb, 1);
 | 
				
			||||||
 | 
					    calc_quant_matrix(s, bytestream2_get_byte(&gb));
 | 
				
			||||||
 | 
					    bytestream2_skip(&gb, 2);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (bytestream2_get_bytes_left(&gb) < 2) {
 | 
				
			||||||
 | 
					        av_log(avctx, AV_LOG_ERROR, "Input data too small\n");
 | 
				
			||||||
        return AVERROR_INVALIDDATA;
 | 
					        return AVERROR_INVALIDDATA;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    chunk_type = AV_RL32(&buf[0]);
 | 
					 | 
				
			||||||
    inter = (chunk_type == MADm_TAG || chunk_type == MADe_TAG);
 | 
					 | 
				
			||||||
    buf += 8;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    av_reduce(&avctx->time_base.num, &avctx->time_base.den,
 | 
					 | 
				
			||||||
              AV_RL16(&buf[6]), 1000, 1<<30);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    width  = AV_RL16(&buf[8]);
 | 
					 | 
				
			||||||
    height = AV_RL16(&buf[10]);
 | 
					 | 
				
			||||||
    calc_quant_matrix(s, buf[13]);
 | 
					 | 
				
			||||||
    buf += 16;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (avctx->width != width || avctx->height != height) {
 | 
					    if (avctx->width != width || avctx->height != height) {
 | 
				
			||||||
        if((width * height)/2048*7 > buf_end-buf)
 | 
					        if((width * height)/2048*7 > bytestream2_get_bytes_left(&gb))
 | 
				
			||||||
            return AVERROR_INVALIDDATA;
 | 
					            return AVERROR_INVALIDDATA;
 | 
				
			||||||
        if ((ret = av_image_check_size(width, height, 0, avctx)) < 0)
 | 
					        if ((ret = av_image_check_size(width, height, 0, avctx)) < 0)
 | 
				
			||||||
            return ret;
 | 
					            return ret;
 | 
				
			||||||
@@ -292,13 +295,13 @@ static int decode_frame(AVCodecContext *avctx,
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    av_fast_padded_malloc(&s->bitstream_buf, &s->bitstream_buf_size,
 | 
					    av_fast_padded_malloc(&s->bitstream_buf, &s->bitstream_buf_size,
 | 
				
			||||||
                          buf_end - buf);
 | 
					                          bytestream2_get_bytes_left(&gb));
 | 
				
			||||||
    if (!s->bitstream_buf)
 | 
					    if (!s->bitstream_buf)
 | 
				
			||||||
        return AVERROR(ENOMEM);
 | 
					        return AVERROR(ENOMEM);
 | 
				
			||||||
    s->dsp.bswap16_buf(s->bitstream_buf, (const uint16_t*)buf, (buf_end-buf)/2);
 | 
					    s->dsp.bswap16_buf(s->bitstream_buf, (const uint16_t *)(buf + bytestream2_tell(&gb)),
 | 
				
			||||||
    memset((uint8_t*)s->bitstream_buf + (buf_end-buf), 0, FF_INPUT_BUFFER_PADDING_SIZE);
 | 
					                         bytestream2_get_bytes_left(&gb) / 2);
 | 
				
			||||||
    init_get_bits(&s->gb, s->bitstream_buf, 8*(buf_end-buf));
 | 
					    memset((uint8_t*)s->bitstream_buf + bytestream2_get_bytes_left(&gb), 0, FF_INPUT_BUFFER_PADDING_SIZE);
 | 
				
			||||||
 | 
					    init_get_bits(&s->gb, s->bitstream_buf, 8*(bytestream2_get_bytes_left(&gb)));
 | 
				
			||||||
    for (s->mb_y=0; s->mb_y < (avctx->height+15)/16; s->mb_y++)
 | 
					    for (s->mb_y=0; s->mb_y < (avctx->height+15)/16; s->mb_y++)
 | 
				
			||||||
        for (s->mb_x=0; s->mb_x < (avctx->width +15)/16; s->mb_x++)
 | 
					        for (s->mb_x=0; s->mb_x < (avctx->width +15)/16; s->mb_x++)
 | 
				
			||||||
            if(decode_mb(s, inter) < 0)
 | 
					            if(decode_mb(s, inter) < 0)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user