mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
4c677df27c
* qatar/master: (22 commits) frwu: Employ more meaningful return values. fraps: Use av_fast_padded_malloc() instead of av_realloc() mjpegdec: use av_fast_padded_malloc() eatqi: use av_fast_padded_malloc() asv1: use av_fast_padded_malloc() avcodec: Add av_fast_padded_malloc(). swscale: enable dithering in MMX functions. swscale: make rgb24 function macros slightly smaller. avcodec.h: Remove some disabled cruft. swscale: remove obsolete comment. swscale-test: Drop unused argc and argv arguments from main(). zmbv: Employ more meaningful return values. zmbvenc: Employ more meaningful return values. vc1: prevent null pointer dereference on broken files zmbv: check av_realloc() return values and avoid memleaks on ENOMEM truespeech: align buffer ac3: Do not read past the end of ff_ac3_band_start_tab. dv: Fix small stack overread related to CVE-2011-3929 and CVE-2011-3936. dv: Fix null pointer dereference due to ach=0 dv: check stype ... Conflicts: doc/APIchanges libavcodec/asv1.c libavcodec/avcodec.h libavcodec/eatqi.c libavcodec/fraps.c libavcodec/frwu.c libavcodec/zmbv.c libavformat/dv.c libswscale/swscale.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
101 lines
2.6 KiB
C
101 lines
2.6 KiB
C
/*
|
|
* Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#include "libavutil/mem.h"
|
|
|
|
#include "get_bits.h"
|
|
#include "golomb.h"
|
|
#include "put_bits.h"
|
|
|
|
#undef fprintf
|
|
#define COUNT 8191
|
|
#define SIZE (COUNT * 4)
|
|
|
|
int main(void)
|
|
{
|
|
int i, ret = 0;
|
|
uint8_t *temp;
|
|
PutBitContext pb;
|
|
GetBitContext gb;
|
|
|
|
temp = av_malloc(SIZE);
|
|
if (!temp)
|
|
return 2;
|
|
|
|
init_put_bits(&pb, temp, SIZE);
|
|
for (i = 0; i < COUNT; i++)
|
|
set_ue_golomb(&pb, i);
|
|
flush_put_bits(&pb);
|
|
|
|
init_get_bits(&gb, temp, 8 * SIZE);
|
|
for (i = 0; i < COUNT; i++) {
|
|
int j, s = show_bits(&gb, 25);
|
|
|
|
j = get_ue_golomb(&gb);
|
|
if (j != i) {
|
|
fprintf(stderr, "get_ue_golomb: expected %d, got %d. bits: %7x\n",
|
|
i, j, s);
|
|
ret = 1;
|
|
}
|
|
}
|
|
|
|
#define EXTEND(i) (i << 3 | i & 7)
|
|
init_put_bits(&pb, temp, SIZE);
|
|
for (i = 0; i < COUNT; i++)
|
|
set_ue_golomb(&pb, EXTEND(i));
|
|
flush_put_bits(&pb);
|
|
|
|
init_get_bits(&gb, temp, 8 * SIZE);
|
|
for (i = 0; i < COUNT; i++) {
|
|
int j, s = show_bits_long(&gb, 32);
|
|
|
|
j = get_ue_golomb_long(&gb);
|
|
if (j != EXTEND(i)) {
|
|
fprintf(stderr, "get_ue_golomb_long: expected %d, got %d. "
|
|
"bits: %8x\n", EXTEND(i), j, s);
|
|
ret = 1;
|
|
}
|
|
}
|
|
|
|
init_put_bits(&pb, temp, SIZE);
|
|
for (i = 0; i < COUNT; i++)
|
|
set_se_golomb(&pb, i - COUNT / 2);
|
|
flush_put_bits(&pb);
|
|
|
|
init_get_bits(&gb, temp, 8 * SIZE);
|
|
for (i = 0; i < COUNT; i++) {
|
|
int j, s = show_bits(&gb, 25);
|
|
|
|
j = get_se_golomb(&gb);
|
|
if (j != i - COUNT / 2) {
|
|
fprintf(stderr, "get_se_golomb: expected %d, got %d. bits: %7x\n",
|
|
i - COUNT / 2, j, s);
|
|
ret = 1;
|
|
}
|
|
}
|
|
|
|
av_free(temp);
|
|
|
|
return ret;
|
|
}
|