Browse Source

main() --> main(void)

Originally committed as revision 11079 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 18 years ago
parent
commit
f8a80fd69d
15 changed files with 15 additions and 15 deletions
  1. +1
    -1
      libavcodec/cabac.c
  2. +1
    -1
      libavcodec/eval.c
  3. +1
    -1
      libavcodec/h264.c
  4. +1
    -1
      libavcodec/rangecoder.c
  5. +1
    -1
      libavcodec/snow.c
  6. +1
    -1
      libavutil/adler32.c
  7. +1
    -1
      libavutil/aes.c
  8. +1
    -1
      libavutil/crc.c
  9. +1
    -1
      libavutil/integer.c
  10. +1
    -1
      libavutil/lls.c
  11. +1
    -1
      libavutil/mathematics.c
  12. +1
    -1
      libavutil/md5.c
  13. +1
    -1
      libavutil/sha1.c
  14. +1
    -1
      libavutil/softfloat.c
  15. +1
    -1
      libavutil/tree.c

+ 1
- 1
libavcodec/cabac.c View File

@@ -184,7 +184,7 @@ void ff_init_cabac_states(CABACContext *c){

#include "avcodec.h"

int main(){
int main(void){
CABACContext c;
uint8_t b[9*SIZE];
uint8_t r[9*SIZE];


+ 1
- 1
libavcodec/eval.c View File

@@ -451,7 +451,7 @@ static const char *const_names[]={
"E",
0
};
main(){
main(void){
int i;
printf("%f == 12.7\n", ff_eval("1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)", const_values, const_names, NULL, NULL, NULL, NULL, NULL));
printf("%f == 0.931322575\n", ff_eval("80G/80Gi", const_values, const_names, NULL, NULL, NULL, NULL, NULL));


+ 1
- 1
libavcodec/h264.c View File

@@ -7879,7 +7879,7 @@ static inline void fill_mb_avail(H264Context *h){
#undef random
#define COUNT 8000
#define SIZE (COUNT*40)
int main(){
int main(void){
int i;
uint8_t temp[SIZE];
PutBitContext pb;


+ 1
- 1
libavcodec/rangecoder.c View File

@@ -111,7 +111,7 @@ int ff_rac_terminate(RangeCoder *c){

#if 0 //selftest
#define SIZE 10240
int main(){
int main(void){
RangeCoder c;
uint8_t b[9*SIZE];
uint8_t r[9*SIZE];


+ 1
- 1
libavcodec/snow.c View File

@@ -4755,7 +4755,7 @@ AVCodec snow_encoder = {
#undef printf
#undef random

int main(){
int main(void){
int width=256;
int height=256;
int buffer[2][width*height];


+ 1
- 1
libavutil/adler32.c View File

@@ -54,7 +54,7 @@ unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, unsigne
#include "log.h"
#define LEN 7001
volatile int checksum;
int main(){
int main(void){
int i;
char data[LEN];
av_log_level = AV_LOG_DEBUG;


+ 1
- 1
libavutil/aes.c View File

@@ -194,7 +194,7 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt) {
#ifdef TEST
#include "log.h"

int main(){
int main(void){
int i,j;
AVAES ae, ad, b;
uint8_t rkey[2][16]= {


+ 1
- 1
libavutil/crc.c View File

@@ -107,7 +107,7 @@ uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t le

#ifdef TEST
#undef printf
main(){
main(void){
uint8_t buf[1999];
int i;
int p[4][4]={{1, 32, AV_CRC_32_IEEE_LE, 0x3D5CDD04},


+ 1
- 1
libavutil/integer.c View File

@@ -171,7 +171,7 @@ const uint8_t ff_log2_tab[256]={
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
};

main(){
main(void){
int64_t a,b;

for(a=7; a<256*256*256; a+=13215){


+ 1
- 1
libavutil/lls.c View File

@@ -113,7 +113,7 @@ double av_evaluate_lls(LLSModel *m, double *param, int order){
#include <stdlib.h>
#include <stdio.h>

int main(){
int main(void){
LLSModel m;
int i, order;



+ 1
- 1
libavutil/mathematics.c View File

@@ -113,7 +113,7 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq){
#if 0
#include "integer.h"
#undef printf
main(){
main(void){
int64_t a,b,c,d,e;

for(a=7; a<(1LL<<62); a+=a/3+1){


+ 1
- 1
libavutil/md5.c View File

@@ -164,7 +164,7 @@ void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len){
#ifdef TEST
#include <stdio.h>
#undef printf
main(){
main(void){
uint64_t md5val;
int i;
uint8_t in[1000];


+ 1
- 1
libavutil/sha1.c View File

@@ -149,7 +149,7 @@ void av_sha1_final(AVSHA1* ctx, uint8_t digest[20]){
#include <stdio.h>
#undef printf

int main(){
int main(void){
int i, k;
AVSHA1 ctx;
unsigned char digest[20];


+ 1
- 1
libavutil/softfloat.c View File

@@ -27,7 +27,7 @@

#undef printf

int main(){
int main(void){
SoftFloat one= av_int2sf(1, 0);
SoftFloat sf1, sf2;
double d1, d2;


+ 1
- 1
libavutil/tree.c View File

@@ -132,7 +132,7 @@ int cmp(const void *a, const void *b){
return a-b;
}

int main(){
int main(void){
int i,j,k;
AVTreeNode *root= NULL;



Loading…
Cancel
Save