tools: K&R reformatting cosmetics

This commit is contained in:
Diego Biurrun 2012-01-25 15:03:18 +01:00
parent 50639cbefe
commit 4e81b5f517
9 changed files with 158 additions and 133 deletions

View File

@ -21,6 +21,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include "libavformat/avformat.h" #include "libavformat/avformat.h"
static int usage(const char *argv0, int ret) static int usage(const char *argv0, int ret)
@ -87,6 +88,7 @@ int main(int argc, char **argv)
avio_flush(output); avio_flush(output);
avio_close(output); avio_close(output);
fail: fail:
avio_close(input); avio_close(input);
avformat_network_deinit(); avformat_network_deinit();

View File

@ -26,37 +26,32 @@ int main(int argc, char *argv[])
z_stream zstream; z_stream zstream;
struct stat statbuf; struct stat statbuf;
if (argc < 3) if (argc < 3) {
{
printf("Usage: %s <infile.swf> <outfile.swf>\n", argv[0]); printf("Usage: %s <infile.swf> <outfile.swf>\n", argv[0]);
return 1; return 1;
} }
fd_in = open(argv[1], O_RDONLY); fd_in = open(argv[1], O_RDONLY);
if (fd_in < 0) if (fd_in < 0) {
{
perror("Error opening input file"); perror("Error opening input file");
return 1; return 1;
} }
fd_out = open(argv[2], O_WRONLY | O_CREAT, 00644); fd_out = open(argv[2], O_WRONLY | O_CREAT, 00644);
if (fd_out < 0) if (fd_out < 0) {
{
perror("Error opening output file"); perror("Error opening output file");
close(fd_in); close(fd_in);
return 1; return 1;
} }
if (read(fd_in, &buf_in, 8) != 8) if (read(fd_in, &buf_in, 8) != 8) {
{
printf("Header error\n"); printf("Header error\n");
close(fd_in); close(fd_in);
close(fd_out); close(fd_out);
return 1; return 1;
} }
if (buf_in[0] != 'C' || buf_in[1] != 'W' || buf_in[2] != 'S') if (buf_in[0] != 'C' || buf_in[1] != 'W' || buf_in[2] != 'S') {
{
printf("Not a compressed flash file\n"); printf("Not a compressed flash file\n");
return 1; return 1;
} }
@ -65,7 +60,8 @@ int main(int argc, char *argv[])
comp_len = statbuf.st_size; comp_len = statbuf.st_size;
uncomp_len = buf_in[4] | (buf_in[5] << 8) | (buf_in[6] << 16) | (buf_in[7] << 24); uncomp_len = buf_in[4] | (buf_in[5] << 8) | (buf_in[6] << 16) | (buf_in[7] << 24);
printf("Compressed size: %d Uncompressed size: %d\n", comp_len-4, uncomp_len-4); printf("Compressed size: %d Uncompressed size: %d\n",
comp_len - 4, uncomp_len - 4);
// write out modified header // write out modified header
buf_in[0] = 'F'; buf_in[0] = 'F';
@ -79,8 +75,7 @@ int main(int argc, char *argv[])
zstream.opaque = NULL; zstream.opaque = NULL;
inflateInit(&zstream); inflateInit(&zstream);
for (i = 0; i < comp_len-8;) for (i = 0; i < comp_len - 8;) {
{
int ret, len = read(fd_in, &buf_in, 1024); int ret, len = read(fd_in, &buf_in, 1024);
dbgprintf("read %d bytes\n", len); dbgprintf("read %d bytes\n", len);
@ -93,18 +88,18 @@ int main(int argc, char *argv[])
zstream.avail_out = 65536; zstream.avail_out = 65536;
ret = inflate(&zstream, Z_SYNC_FLUSH); ret = inflate(&zstream, Z_SYNC_FLUSH);
if (ret != Z_STREAM_END && ret != Z_OK) if (ret != Z_STREAM_END && ret != Z_OK) {
{
printf("Error while decompressing: %d\n", ret); printf("Error while decompressing: %d\n", ret);
inflateEnd(&zstream); inflateEnd(&zstream);
return 1; return 1;
} }
dbgprintf("a_in: %d t_in: %lu a_out: %d t_out: %lu -- %lu out\n", dbgprintf("a_in: %d t_in: %lu a_out: %d t_out: %lu -- %lu out\n",
zstream.avail_in, zstream.total_in, zstream.avail_out, zstream.total_out, zstream.avail_in, zstream.total_in, zstream.avail_out,
zstream.total_out-last_out); zstream.total_out, zstream.total_out - last_out);
if (write(fd_out, &buf_out, zstream.total_out - last_out) < zstream.total_out - last_out) { if (write(fd_out, &buf_out, zstream.total_out - last_out) <
zstream.total_out - last_out) {
perror("Error writing output file"); perror("Error writing output file");
return 1; return 1;
} }
@ -115,8 +110,7 @@ int main(int argc, char *argv[])
break; break;
} }
if (zstream.total_out != uncomp_len-8) if (zstream.total_out != uncomp_len - 8) {
{
printf("Size mismatch (%lu != %d), updating header...\n", printf("Size mismatch (%lu != %d), updating header...\n",
zstream.total_out, uncomp_len - 8); zstream.total_out, uncomp_len - 8);

View File

@ -63,19 +63,25 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
char dst_filter_ctx_label[128]; char dst_filter_ctx_label[128];
const AVFilterContext *dst_filter_ctx = link->dst; const AVFilterContext *dst_filter_ctx = link->dst;
snprintf(dst_filter_ctx_label, sizeof(dst_filter_ctx_label), "%s (%s)", snprintf(dst_filter_ctx_label, sizeof(dst_filter_ctx_label),
"%s (%s)",
dst_filter_ctx->name, dst_filter_ctx->name,
dst_filter_ctx->filter->name); dst_filter_ctx->filter->name);
fprintf(outfile, "\"%s\" -> \"%s\"", filter_ctx_label, dst_filter_ctx_label); fprintf(outfile, "\"%s\" -> \"%s\"",
filter_ctx_label, dst_filter_ctx_label);
if (link->type == AVMEDIA_TYPE_VIDEO) { if (link->type == AVMEDIA_TYPE_VIDEO) {
fprintf(outfile, " [ label= \"fmt:%s w:%d h:%d tb:%d/%d\" ]", fprintf(outfile,
" [ label= \"fmt:%s w:%d h:%d tb:%d/%d\" ]",
av_pix_fmt_descriptors[link->format].name, av_pix_fmt_descriptors[link->format].name,
link->w, link->h, link->time_base.num, link->time_base.den); link->w, link->h, link->time_base.num,
link->time_base.den);
} else if (link->type == AVMEDIA_TYPE_AUDIO) { } else if (link->type == AVMEDIA_TYPE_AUDIO) {
char buf[255]; char buf[255];
av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout); av_get_channel_layout_string(buf, sizeof(buf), -1,
fprintf(outfile, " [ label= \"fmt:%s sr:%"PRId64" cl:%s\" ]", link->channel_layout);
fprintf(outfile,
" [ label= \"fmt:%s sr:%"PRId64 " cl:%s\" ]",
av_get_sample_fmt_name(link->format), av_get_sample_fmt_name(link->format),
link->sample_rate, buf); link->sample_rate, buf);
} }
@ -118,7 +124,8 @@ int main(int argc, char **argv)
infilename = "/dev/stdin"; infilename = "/dev/stdin";
infile = fopen(infilename, "r"); infile = fopen(infilename, "r");
if (!infile) { if (!infile) {
fprintf(stderr, "Impossible to open input file '%s': %s\n", infilename, strerror(errno)); fprintf(stderr, "Impossible to open input file '%s': %s\n",
infilename, strerror(errno));
return 1; return 1;
} }
@ -126,7 +133,8 @@ int main(int argc, char **argv)
outfilename = "/dev/stdout"; outfilename = "/dev/stdout";
outfile = fopen(outfilename, "w"); outfile = fopen(outfilename, "w");
if (!outfile) { if (!outfile) {
fprintf(stderr, "Impossible to open output file '%s': %s\n", outfilename, strerror(errno)); fprintf(stderr, "Impossible to open output file '%s': %s\n",
outfilename, strerror(errno));
return 1; return 1;
} }

View File

@ -35,6 +35,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/stat.h> #include <sys/stat.h>
#include "libavformat/avformat.h" #include "libavformat/avformat.h"
#include "libavutil/intreadwrite.h" #include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h" #include "libavutil/mathematics.h"
@ -149,10 +150,9 @@ static int read_tfra(struct VideoFiles *files, int start_index, AVIOContext *f)
version = avio_r8(f); version = avio_r8(f);
avio_rb24(f); avio_rb24(f);
track_id = avio_rb32(f); /* track id */ track_id = avio_rb32(f); /* track id */
for (i = start_index; i < files->nb_files && !vf; i++) { for (i = start_index; i < files->nb_files && !vf; i++)
if (files->files[i]->track_id == track_id) if (files->files[i]->track_id == track_id)
vf = files->files[i]; vf = files->files[i];
}
if (!vf) { if (!vf) {
/* Ok, continue parsing the next atom */ /* Ok, continue parsing the next atom */
ret = 0; ret = 0;
@ -187,6 +187,7 @@ static int read_tfra(struct VideoFiles *files, int start_index, AVIOContext *f)
vf->offsets[vf->chunks - 1].duration = vf->duration - vf->offsets[vf->chunks - 1].duration = vf->duration -
vf->offsets[vf->chunks - 1].time; vf->offsets[vf->chunks - 1].time;
ret = 0; ret = 0;
fail: fail:
avio_seek(f, pos + size, SEEK_SET); avio_seek(f, pos + size, SEEK_SET);
return ret; return ret;
@ -254,6 +255,7 @@ static int get_video_private_data(struct VideoFile *vf, AVCodecContext *codec)
avio_wb32(io, 0x00000001); avio_wb32(io, 0x00000001);
avio_write(io, &codec->extradata[11 + sps_size], pps_size); avio_write(io, &codec->extradata[11 + sps_size], pps_size);
err = 0; err = 0;
fail: fail:
vf->codec_private_size = avio_close_dyn_buf(io, &vf->codec_private); vf->codec_private_size = avio_close_dyn_buf(io, &vf->codec_private);
return err; return err;
@ -307,8 +309,9 @@ static int handle_file(struct VideoFiles *files, const char *file, int split)
vf->is_video = st->codec->codec_type == AVMEDIA_TYPE_VIDEO; vf->is_video = st->codec->codec_type == AVMEDIA_TYPE_VIDEO;
if (!vf->is_audio && !vf->is_video) { if (!vf->is_audio && !vf->is_video) {
fprintf(stderr, "Track %d in %s is neither video nor audio, " fprintf(stderr,
"skipping\n", vf->track_id, file); "Track %d in %s is neither video nor audio, skipping\n",
vf->track_id, file);
av_freep(&files->files[files->nb_files]); av_freep(&files->files[files->nb_files]);
continue; continue;
} }
@ -414,7 +417,8 @@ static void output_client_manifest(struct VideoFiles *files,
if (files->video_file >= 0) { if (files->video_file >= 0) {
struct VideoFile *vf = files->files[files->video_file]; struct VideoFile *vf = files->files[files->video_file];
int index = 0; int index = 0;
fprintf(out, "\t<StreamIndex Type=\"video\" QualityLevels=\"%d\" " fprintf(out,
"\t<StreamIndex Type=\"video\" QualityLevels=\"%d\" "
"Chunks=\"%d\" " "Chunks=\"%d\" "
"Url=\"QualityLevels({bitrate})/Fragments(video={start time})\">\n", "Url=\"QualityLevels({bitrate})/Fragments(video={start time})\">\n",
files->nb_video_files, vf->chunks); files->nb_video_files, vf->chunks);
@ -422,7 +426,8 @@ static void output_client_manifest(struct VideoFiles *files,
vf = files->files[i]; vf = files->files[i];
if (!vf->is_video) if (!vf->is_video)
continue; continue;
fprintf(out, "\t\t<QualityLevel Index=\"%d\" Bitrate=\"%d\" " fprintf(out,
"\t\t<QualityLevel Index=\"%d\" Bitrate=\"%d\" "
"FourCC=\"%s\" MaxWidth=\"%d\" MaxHeight=\"%d\" " "FourCC=\"%s\" MaxWidth=\"%d\" MaxHeight=\"%d\" "
"CodecPrivateData=\"", "CodecPrivateData=\"",
index, vf->bitrate, vf->fourcc, vf->width, vf->height); index, vf->bitrate, vf->fourcc, vf->width, vf->height);
@ -440,7 +445,8 @@ static void output_client_manifest(struct VideoFiles *files,
if (files->audio_file >= 0) { if (files->audio_file >= 0) {
struct VideoFile *vf = files->files[files->audio_file]; struct VideoFile *vf = files->files[files->audio_file];
int index = 0; int index = 0;
fprintf(out, "\t<StreamIndex Type=\"audio\" QualityLevels=\"%d\" " fprintf(out,
"\t<StreamIndex Type=\"audio\" QualityLevels=\"%d\" "
"Chunks=\"%d\" " "Chunks=\"%d\" "
"Url=\"QualityLevels({bitrate})/Fragments(audio={start time})\">\n", "Url=\"QualityLevels({bitrate})/Fragments(audio={start time})\">\n",
files->nb_audio_files, vf->chunks); files->nb_audio_files, vf->chunks);
@ -448,7 +454,8 @@ static void output_client_manifest(struct VideoFiles *files,
vf = files->files[i]; vf = files->files[i];
if (!vf->is_audio) if (!vf->is_audio)
continue; continue;
fprintf(out, "\t\t<QualityLevel Index=\"%d\" Bitrate=\"%d\" " fprintf(out,
"\t\t<QualityLevel Index=\"%d\" Bitrate=\"%d\" "
"FourCC=\"%s\" SamplingRate=\"%d\" Channels=\"%d\" " "FourCC=\"%s\" SamplingRate=\"%d\" Channels=\"%d\" "
"BitsPerSample=\"16\" PacketSize=\"%d\" " "BitsPerSample=\"16\" PacketSize=\"%d\" "
"AudioTag=\"%d\" CodecPrivateData=\"", "AudioTag=\"%d\" CodecPrivateData=\"",

View File

@ -50,11 +50,13 @@ int main(int argc, char **argv)
} }
if (avfilter_open(&filter_ctx, filter, NULL) < 0) { if (avfilter_open(&filter_ctx, filter, NULL) < 0) {
fprintf(stderr, "Inpossible to open filter with name '%s'\n", filter_name); fprintf(stderr, "Inpossible to open filter with name '%s'\n",
filter_name);
return 1; return 1;
} }
if (avfilter_init_filter(filter_ctx, filter_args, NULL) < 0) { if (avfilter_init_filter(filter_ctx, filter_args, NULL) < 0) {
fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n", filter_name, filter_args); fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n",
filter_name, filter_args);
return 1; return 1;
} }

View File

@ -24,6 +24,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "libavformat/avformat.h" #include "libavformat/avformat.h"
#define PKTFILESUFF "_%08" PRId64 "_%02d_%010" PRId64 "_%06d_%c.bin" #define PKTFILESUFF "_%08" PRId64 "_%02d_%010" PRId64 "_%06d_%c.bin"
@ -99,8 +100,11 @@ int main(int argc, char **argv)
while ((err = av_read_frame(fctx, &pkt)) >= 0) { while ((err = av_read_frame(fctx, &pkt)) >= 0) {
int fd; int fd;
snprintf(pktfilename, PATH_MAX-1, fntemplate, pktnum, pkt.stream_index, pkt.pts, pkt.size, (pkt.flags & AV_PKT_FLAG_KEY)?'K':'_'); snprintf(pktfilename, PATH_MAX - 1, fntemplate, pktnum,
printf(PKTFILESUFF"\n", pktnum, pkt.stream_index, pkt.pts, pkt.size, (pkt.flags & AV_PKT_FLAG_KEY)?'K':'_'); pkt.stream_index, pkt.pts, pkt.size,
(pkt.flags & AV_PKT_FLAG_KEY) ? 'K' : '_');
printf(PKTFILESUFF "\n", pktnum, pkt.stream_index, pkt.pts, pkt.size,
(pkt.flags & AV_PKT_FLAG_KEY) ? 'K' : '_');
//printf("open(\"%s\")\n", pktfilename); //printf("open(\"%s\")\n", pktfilename);
if (!nowrite) { if (!nowrite) {
fd = open(pktfilename, O_WRONLY | O_CREAT, 0644); fd = open(pktfilename, O_WRONLY | O_CREAT, 0644);

View File

@ -39,7 +39,8 @@ static void probe(AVProbeData *pd, int type, int p, int size)
int score = fmt->read_probe(pd); int score = fmt->read_probe(pd);
if (score > score_array[i] && score > AVPROBE_SCORE_MAX / 4) { if (score > score_array[i] && score > AVPROBE_SCORE_MAX / 4) {
score_array[i] = score; score_array[i] = score;
fprintf(stderr, "Failure of %s probing code with score=%d type=%d p=%X size=%d\n", fprintf(stderr,
"Failure of %s probing code with score=%d type=%d p=%X size=%d\n",
fmt->name, score, type, p, size); fmt->name, score, type, p, size);
failures++; failures++;
} }
@ -75,9 +76,8 @@ int main(void)
init_put_bits(&pb, pd.buf, size); init_put_bits(&pb, pd.buf, size);
switch (type) { switch (type) {
case 0: case 0:
for (i = 0; i < size * 8; i++) { for (i = 0; i < size * 8; i++)
put_bits(&pb, 1, (av_lfg_get(&state) & 0xFFFFFFFF) > p << 20); put_bits(&pb, 1, (av_lfg_get(&state) & 0xFFFFFFFF) > p << 20);
}
break; break;
case 1: case 1:
for (i = 0; i < size * 8; i++) { for (i = 0; i < size * 8; i++) {
@ -100,12 +100,18 @@ int main(void)
int c = 0; int c = 0;
while (p & 63) { while (p & 63) {
c = (av_lfg_get(&state) & 0xFFFFFFFF) >> 24; c = (av_lfg_get(&state) & 0xFFFFFFFF) >> 24;
if (c >= 'a' && c <= 'z' && (p & 1)) break; if (c >= 'a' && c <= 'z' && (p & 1))
else if(c >= 'A' && c <= 'Z' && (p & 2)) break; break;
else if(c >= '0' && c <= '9' && (p & 4)) break; else if (c >= 'A' && c <= 'Z' && (p & 2))
else if(c == ' ' && (p & 8)) break; break;
else if(c == 0 && (p & 16)) break; else if (c >= '0' && c <= '9' && (p & 4))
else if(c == 1 && (p & 32)) break; break;
else if (c == ' ' && (p & 8))
break;
else if (c == 0 && (p & 16))
break;
else if (c == 1 && (p & 32))
break;
} }
pd.buf[i] = c; pd.buf[i] = c;
} }

View File

@ -138,7 +138,6 @@ int main(int argc, char *argv[])
} }
start_offset = ftello(infile); start_offset = ftello(infile);
} else { } else {
/* 64-bit special case */ /* 64-bit special case */
if (atom_size == 1) { if (atom_size == 1) {
if (fread(atom_bytes, ATOM_PREAMBLE_SIZE, 1, infile) != 1) { if (fread(atom_bytes, ATOM_PREAMBLE_SIZE, 1, infile) != 1) {

View File

@ -23,7 +23,8 @@
#include <inttypes.h> #include <inttypes.h>
static uint32_t state; static uint32_t state;
static uint32_t ran(void){ static uint32_t ran(void)
{
return state = state * 1664525 + 1013904223; return state = state * 1664525 + 1013904223;
} }
@ -55,7 +56,8 @@ int main(int argc, char** argv)
int pos = ran() * (uint64_t) length / UINT32_MAX; int pos = ran() * (uint64_t) length / UINT32_MAX;
fseek(f, pos, SEEK_SET); fseek(f, pos, SEEK_SET);
if(maxburst<0) burst= -maxburst; if (maxburst < 0)
burst = -maxburst;
if (pos + burst > length) if (pos + burst > length)
continue; continue;
@ -63,7 +65,8 @@ int main(int argc, char** argv)
while (burst--) { while (burst--) {
int val = ran() * 256ULL / UINT32_MAX; int val = ran() * 256ULL / UINT32_MAX;
if(maxburst<0) val=0; if (maxburst < 0)
val = 0;
fwrite(&val, 1, 1, f); fwrite(&val, 1, 1, f);
} }