Commit 032ba74e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  ARM: fix Thumb PIC on Apple
  nut: add do {} while (0) to GET_V
  tiffenc: Check av_malloc() results.
  tiffenc: Simplify pixel format setup using AVPixFmtDescriptor.
  Use atexit() instead of defining a custom exit_program() interface.
  msvc: Fix detection of VFW & Avisynth required libs

Conflicts:
	ffmpeg.c
	ffmpeg_opt.c
	ffplay.c
	ffprobe.c
	ffserver.c
	libavcodec/tiffenc.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents dd78e109 7bda4ed7
...@@ -126,7 +126,7 @@ double parse_number_or_die(const char *context, const char *numstr, int type, ...@@ -126,7 +126,7 @@ double parse_number_or_die(const char *context, const char *numstr, int type,
else else
return d; return d;
av_log(NULL, AV_LOG_FATAL, error, context, numstr, min, max); av_log(NULL, AV_LOG_FATAL, error, context, numstr, min, max);
exit_program(1); exit(1);
return 0; return 0;
} }
...@@ -137,7 +137,7 @@ int64_t parse_time_or_die(const char *context, const char *timestr, ...@@ -137,7 +137,7 @@ int64_t parse_time_or_die(const char *context, const char *timestr,
if (av_parse_time(&us, timestr, is_duration) < 0) { if (av_parse_time(&us, timestr, is_duration) < 0) {
av_log(NULL, AV_LOG_FATAL, "Invalid %s specification for %s: %s\n", av_log(NULL, AV_LOG_FATAL, "Invalid %s specification for %s: %s\n",
is_duration ? "duration" : "date", context, timestr); is_duration ? "duration" : "date", context, timestr);
exit_program(1); exit(1);
} }
return us; return us;
} }
...@@ -325,7 +325,7 @@ int parse_option(void *optctx, const char *opt, const char *arg, ...@@ -325,7 +325,7 @@ int parse_option(void *optctx, const char *opt, const char *arg,
} }
} }
if (po->flags & OPT_EXIT) if (po->flags & OPT_EXIT)
exit_program(0); exit(0);
return !!(po->flags & HAS_ARG); return !!(po->flags & HAS_ARG);
} }
...@@ -351,7 +351,7 @@ void parse_options(void *optctx, int argc, char **argv, const OptionDef *options ...@@ -351,7 +351,7 @@ void parse_options(void *optctx, int argc, char **argv, const OptionDef *options
opt++; opt++;
if ((ret = parse_option(optctx, opt, argv[optindex], options)) < 0) if ((ret = parse_option(optctx, opt, argv[optindex], options)) < 0)
exit_program(1); exit(1);
optindex += ret; optindex += ret;
} else { } else {
if (parse_arg_function) if (parse_arg_function)
...@@ -511,7 +511,7 @@ int opt_loglevel(void *optctx, const char *opt, const char *arg) ...@@ -511,7 +511,7 @@ int opt_loglevel(void *optctx, const char *opt, const char *arg)
"Possible levels are numbers or:\n", arg); "Possible levels are numbers or:\n", arg);
for (i = 0; i < FF_ARRAY_ELEMS(log_levels); i++) for (i = 0; i < FF_ARRAY_ELEMS(log_levels); i++)
av_log(NULL, AV_LOG_FATAL, "\"%s\"\n", log_levels[i].name); av_log(NULL, AV_LOG_FATAL, "\"%s\"\n", log_levels[i].name);
exit_program(1); exit(1);
} }
av_log_set_level(level); av_log_set_level(level);
return 0; return 0;
...@@ -557,7 +557,7 @@ int opt_max_alloc(void *optctx, const char *opt, const char *arg) ...@@ -557,7 +557,7 @@ int opt_max_alloc(void *optctx, const char *opt, const char *arg)
max = strtol(arg, &tail, 10); max = strtol(arg, &tail, 10);
if (*tail) { if (*tail) {
av_log(NULL, AV_LOG_FATAL, "Invalid max_alloc \"%s\".\n", arg); av_log(NULL, AV_LOG_FATAL, "Invalid max_alloc \"%s\".\n", arg);
exit_program(1); exit(1);
} }
av_max_alloc(max); av_max_alloc(max);
return 0; return 0;
...@@ -909,7 +909,7 @@ static unsigned get_codecs_sorted(const AVCodecDescriptor ***rcodecs) ...@@ -909,7 +909,7 @@ static unsigned get_codecs_sorted(const AVCodecDescriptor ***rcodecs)
nb_codecs++; nb_codecs++;
if (!(codecs = av_calloc(nb_codecs, sizeof(*codecs)))) { if (!(codecs = av_calloc(nb_codecs, sizeof(*codecs)))) {
av_log(0, AV_LOG_ERROR, "Out of memory\n"); av_log(0, AV_LOG_ERROR, "Out of memory\n");
exit_program(1); exit(1);
} }
desc = NULL; desc = NULL;
while ((desc = avcodec_descriptor_next(desc))) while ((desc = avcodec_descriptor_next(desc)))
...@@ -1467,13 +1467,13 @@ void *grow_array(void *array, int elem_size, int *size, int new_size) ...@@ -1467,13 +1467,13 @@ void *grow_array(void *array, int elem_size, int *size, int new_size)
{ {
if (new_size >= INT_MAX / elem_size) { if (new_size >= INT_MAX / elem_size) {
av_log(NULL, AV_LOG_ERROR, "Array too big.\n"); av_log(NULL, AV_LOG_ERROR, "Array too big.\n");
exit_program(1); exit(1);
} }
if (*size < new_size) { if (*size < new_size) {
uint8_t *tmp = av_realloc(array, new_size*elem_size); uint8_t *tmp = av_realloc(array, new_size*elem_size);
if (!tmp) { if (!tmp) {
av_log(NULL, AV_LOG_ERROR, "Could not alloc buffer.\n"); av_log(NULL, AV_LOG_ERROR, "Could not alloc buffer.\n");
exit_program(1); exit(1);
} }
memset(tmp + *size*elem_size, 0, (new_size-*size) * elem_size); memset(tmp + *size*elem_size, 0, (new_size-*size) * elem_size);
*size = new_size; *size = new_size;
......
...@@ -410,15 +410,9 @@ int cmdutils_read_file(const char *filename, char **bufptr, size_t *size); ...@@ -410,15 +410,9 @@ int cmdutils_read_file(const char *filename, char **bufptr, size_t *size);
FILE *get_preset_file(char *filename, size_t filename_size, FILE *get_preset_file(char *filename, size_t filename_size,
const char *preset_name, int is_path, const char *codec_name); const char *preset_name, int is_path, const char *codec_name);
/**
* Do all the necessary cleanup and abort.
* This function is implemented in the avtools, not cmdutils.
*/
av_noreturn void exit_program(int ret);
/** /**
* Realloc array to hold new_size elements of elem_size. * Realloc array to hold new_size elements of elem_size.
* Calls exit_program() on failure. * Calls exit() on failure.
* *
* @param elem_size size in bytes of each element * @param elem_size size in bytes of each element
* @param size new element count will be written here * @param size new element count will be written here
......
...@@ -2410,6 +2410,8 @@ msvc_flags(){ ...@@ -2410,6 +2410,8 @@ msvc_flags(){
-fno-common) ;; -fno-common) ;;
-fno-signed-zeros) ;; -fno-signed-zeros) ;;
-lz) echo zlib.lib ;; -lz) echo zlib.lib ;;
-lavifil32) echo vfw32.lib ;;
-lavicap32) echo vfw32.lib user32.lib ;;
-l*) echo ${flag#-l}.lib ;; -l*) echo ${flag#-l}.lib ;;
*) echo $flag ;; *) echo $flag ;;
esac esac
......
...@@ -378,7 +378,7 @@ static int decode_interrupt_cb(void *ctx) ...@@ -378,7 +378,7 @@ static int decode_interrupt_cb(void *ctx)
const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL }; const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
void av_noreturn exit_program(int ret) static void exit_program()
{ {
int i, j; int i, j;
...@@ -456,8 +456,6 @@ void av_noreturn exit_program(int ret) ...@@ -456,8 +456,6 @@ void av_noreturn exit_program(int ret)
(int) received_sigterm); (int) received_sigterm);
exit (255); exit (255);
} }
exit(ret);
} }
void assert_avoptions(AVDictionary *m) void assert_avoptions(AVDictionary *m)
...@@ -465,7 +463,7 @@ void assert_avoptions(AVDictionary *m) ...@@ -465,7 +463,7 @@ void assert_avoptions(AVDictionary *m)
AVDictionaryEntry *t; AVDictionaryEntry *t;
if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) { if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key); av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
exit_program(1); exit(1);
} }
} }
...@@ -482,7 +480,7 @@ static void assert_codec_experimental(AVCodecContext *c, int encoder) ...@@ -482,7 +480,7 @@ static void assert_codec_experimental(AVCodecContext *c, int encoder)
if (!(codec->capabilities & CODEC_CAP_EXPERIMENTAL)) if (!(codec->capabilities & CODEC_CAP_EXPERIMENTAL))
av_log(NULL, AV_LOG_FATAL, "Or use the non experimental %s '%s'.\n", av_log(NULL, AV_LOG_FATAL, "Or use the non experimental %s '%s'.\n",
codec_string, codec->name); codec_string, codec->name);
exit_program(1); exit(1);
} }
} }
...@@ -564,7 +562,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost) ...@@ -564,7 +562,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
avctx->codec ? avctx->codec->name : "copy"); avctx->codec ? avctx->codec->name : "copy");
print_error("", a); print_error("", a);
if (exit_on_error) if (exit_on_error)
exit_program(1); exit(1);
} }
*pkt = new_pkt; *pkt = new_pkt;
...@@ -586,7 +584,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost) ...@@ -586,7 +584,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
ret = av_interleaved_write_frame(s, pkt); ret = av_interleaved_write_frame(s, pkt);
if (ret < 0) { if (ret < 0) {
print_error("av_interleaved_write_frame()", ret); print_error("av_interleaved_write_frame()", ret);
exit_program(1); exit(1);
} }
} }
...@@ -637,7 +635,7 @@ static void do_audio_out(AVFormatContext *s, OutputStream *ost, ...@@ -637,7 +635,7 @@ static void do_audio_out(AVFormatContext *s, OutputStream *ost,
update_benchmark(NULL); update_benchmark(NULL);
if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) { if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n"); av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n");
exit_program(1); exit(1);
} }
update_benchmark("encode_audio %d.%d", ost->file_index, ost->index); update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
...@@ -716,7 +714,7 @@ static void do_subtitle_out(AVFormatContext *s, ...@@ -716,7 +714,7 @@ static void do_subtitle_out(AVFormatContext *s,
if (sub->pts == AV_NOPTS_VALUE) { if (sub->pts == AV_NOPTS_VALUE) {
av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n"); av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
if (exit_on_error) if (exit_on_error)
exit_program(1); exit(1);
return; return;
} }
...@@ -752,7 +750,7 @@ static void do_subtitle_out(AVFormatContext *s, ...@@ -752,7 +750,7 @@ static void do_subtitle_out(AVFormatContext *s,
subtitle_out_max_size, sub); subtitle_out_max_size, sub);
if (subtitle_out_size < 0) { if (subtitle_out_size < 0) {
av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n"); av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
exit_program(1); exit(1);
} }
av_init_packet(&pkt); av_init_packet(&pkt);
...@@ -895,7 +893,7 @@ static void do_video_out(AVFormatContext *s, ...@@ -895,7 +893,7 @@ static void do_video_out(AVFormatContext *s,
update_benchmark("encode_video %d.%d", ost->file_index, ost->index); update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
if (ret < 0) { if (ret < 0) {
av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n"); av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
exit_program(1); exit(1);
} }
if (got_packet) { if (got_packet) {
...@@ -955,7 +953,7 @@ static void do_video_stats(AVFormatContext *os, OutputStream *ost, ...@@ -955,7 +953,7 @@ static void do_video_stats(AVFormatContext *os, OutputStream *ost,
vstats_file = fopen(vstats_filename, "w"); vstats_file = fopen(vstats_filename, "w");
if (!vstats_file) { if (!vstats_file) {
perror("fopen"); perror("fopen");
exit_program(1); exit(1);
} }
} }
...@@ -1288,7 +1286,7 @@ static void flush_encoders(void) ...@@ -1288,7 +1286,7 @@ static void flush_encoders(void)
update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index); update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
if (ret < 0) { if (ret < 0) {
av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc); av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
exit_program(1); exit(1);
} }
*size += pkt.size; *size += pkt.size;
if (ost->logfile && enc->stats_out) { if (ost->logfile && enc->stats_out) {
...@@ -1481,7 +1479,7 @@ static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output) ...@@ -1481,7 +1479,7 @@ static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
av_log(NULL, AV_LOG_FATAL, "Unable to find default channel " av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
"layout for Input Stream #%d.%d\n", ist->file_index, "layout for Input Stream #%d.%d\n", ist->file_index,
ist->st->index); ist->st->index);
exit_program(1); exit(1);
} }
decoded_frame->channel_layout = avctx->channel_layout; decoded_frame->channel_layout = avctx->channel_layout;
...@@ -1509,7 +1507,7 @@ static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output) ...@@ -1509,7 +1507,7 @@ static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
int j; int j;
if (configure_filtergraph(fg) < 0) { if (configure_filtergraph(fg) < 0) {
av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n"); av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
exit_program(1); exit(1);
} }
for (j = 0; j < fg->nb_outputs; j++) { for (j = 0; j < fg->nb_outputs; j++) {
OutputStream *ost = fg->outputs[j]->ost; OutputStream *ost = fg->outputs[j]->ost;
...@@ -1624,7 +1622,7 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output) ...@@ -1624,7 +1622,7 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
if (ist_in_filtergraph(filtergraphs[i], ist) && if (ist_in_filtergraph(filtergraphs[i], ist) &&
configure_filtergraph(filtergraphs[i]) < 0) { configure_filtergraph(filtergraphs[i]) < 0) {
av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n"); av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
exit_program(1); exit(1);
} }
} }
...@@ -1660,7 +1658,7 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output) ...@@ -1660,7 +1658,7 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
} else } else
if(av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame, AV_BUFFERSRC_FLAG_PUSH)<0) { if(av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame, AV_BUFFERSRC_FLAG_PUSH)<0) {
av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n"); av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n");
exit_program(1); exit(1);
} }
} }
...@@ -1859,7 +1857,7 @@ static void print_sdp(void) ...@@ -1859,7 +1857,7 @@ static void print_sdp(void)
AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files); AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
if (!avc) if (!avc)
exit_program(1); exit(1);
for (i = 0; i < nb_output_files; i++) for (i = 0; i < nb_output_files; i++)
avc[i] = output_files[i]->ctx; avc[i] = output_files[i]->ctx;
...@@ -1927,7 +1925,7 @@ static void parse_forced_key_frames(char *kf, OutputStream *ost, ...@@ -1927,7 +1925,7 @@ static void parse_forced_key_frames(char *kf, OutputStream *ost,
ost->forced_kf_pts = av_malloc(sizeof(*ost->forced_kf_pts) * n); ost->forced_kf_pts = av_malloc(sizeof(*ost->forced_kf_pts) * n);
if (!ost->forced_kf_pts) { if (!ost->forced_kf_pts) {
av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n"); av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
exit_program(1); exit(1);
} }
p = kf; p = kf;
...@@ -2093,7 +2091,7 @@ static int transcode_init(void) ...@@ -2093,7 +2091,7 @@ static int transcode_init(void)
case AVMEDIA_TYPE_AUDIO: case AVMEDIA_TYPE_AUDIO:
if (audio_volume != 256) { if (audio_volume != 256) {
av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n"); av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
exit_program(1); exit(1);
} }
codec->channel_layout = icodec->channel_layout; codec->channel_layout = icodec->channel_layout;
codec->sample_rate = icodec->sample_rate; codec->sample_rate = icodec->sample_rate;
...@@ -2240,7 +2238,7 @@ static int transcode_init(void) ...@@ -2240,7 +2238,7 @@ static int transcode_init(void)
if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) { if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n", av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
logfilename); logfilename);
exit_program(1); exit(1);
} }
codec->stats_in = logbuffer; codec->stats_in = logbuffer;
} }
...@@ -2249,7 +2247,7 @@ static int transcode_init(void) ...@@ -2249,7 +2247,7 @@ static int transcode_init(void)
if (!f) { if (!f) {
av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n", av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
logfilename, strerror(errno)); logfilename, strerror(errno));
exit_program(1); exit(1);
} }
ost->logfile = f; ost->logfile = f;
} }
...@@ -2724,7 +2722,7 @@ static int process_input(int file_index) ...@@ -2724,7 +2722,7 @@ static int process_input(int file_index)
if (ret != AVERROR_EOF) { if (ret != AVERROR_EOF) {
print_error(is->filename, ret); print_error(is->filename, ret);
if (exit_on_error) if (exit_on_error)
exit_program(1); exit(1);
} }
ifile->eof_reached = 1; ifile->eof_reached = 1;
...@@ -2845,7 +2843,7 @@ static int process_input(int file_index) ...@@ -2845,7 +2843,7 @@ static int process_input(int file_index)
av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n", av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
ist->file_index, ist->st->index, buf); ist->file_index, ist->st->index, buf);
if (exit_on_error) if (exit_on_error)
exit_program(1); exit(1);
} }
discard_packet: discard_packet:
...@@ -3119,6 +3117,8 @@ int main(int argc, char **argv) ...@@ -3119,6 +3117,8 @@ int main(int argc, char **argv)
OptionsContext o = { 0 }; OptionsContext o = { 0 };
int64_t ti; int64_t ti;
atexit(exit_program);
reset_options(&o, 0); reset_options(&o, 0);
setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */ setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
...@@ -3153,29 +3153,29 @@ int main(int argc, char **argv) ...@@ -3153,29 +3153,29 @@ int main(int argc, char **argv)
if (nb_output_files <= 0 && nb_input_files == 0) { if (nb_output_files <= 0 && nb_input_files == 0) {
show_usage(); show_usage();
av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name); av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
exit_program(1); exit(1);
} }
/* file converter / grab */ /* file converter / grab */
if (nb_output_files <= 0) { if (nb_output_files <= 0) {
av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n"); av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
exit_program(1); exit(1);
} }
// if (nb_input_files == 0) { // if (nb_input_files == 0) {
// av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n"); // av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
// exit_program(1); // exit(1);
// } // }
current_time = ti = getutime(); current_time = ti = getutime();
if (transcode() < 0) if (transcode() < 0)
exit_program(1); exit(1);
ti = getutime() - ti; ti = getutime() - ti;
if (do_benchmark) { if (do_benchmark) {
int maxrss = getmaxrss() / 1024; int maxrss = getmaxrss() / 1024;
printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss); printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);
} }
exit_program(0); exit(0);
return 0; return 0;
} }
...@@ -106,7 +106,7 @@ static char *choose_pix_fmts(OutputStream *ost) ...@@ -106,7 +106,7 @@ static char *choose_pix_fmts(OutputStream *ost)
int len; int len;
if (avio_open_dyn_buf(&s) < 0) if (avio_open_dyn_buf(&s) < 0)
exit_program(1); exit(1);
p = ost->enc->pix_fmts; p = ost->enc->pix_fmts;
if (ost->st->codec->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL) { if (ost->st->codec->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL) {
...@@ -146,7 +146,7 @@ static char *choose_ ## var ## s(OutputStream *ost) \ ...@@ -146,7 +146,7 @@ static char *choose_ ## var ## s(OutputStream *ost) \
int len; \ int len; \
\ \
if (avio_open_dyn_buf(&s) < 0) \ if (avio_open_dyn_buf(&s) < 0) \
exit_program(1); \ exit(1); \
\ \
for (p = ost->enc->supported_list; *p != none; p++) { \ for (p = ost->enc->supported_list; *p != none; p++) { \
get_name(*p); \ get_name(*p); \
...@@ -176,13 +176,13 @@ FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost) ...@@ -176,13 +176,13 @@ FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost)
FilterGraph *fg = av_mallocz(sizeof(*fg)); FilterGraph *fg = av_mallocz(sizeof(*fg));
if (!fg) if (!fg)
exit_program(1); exit(1);
fg->index = nb_filtergraphs; fg->index = nb_filtergraphs;
fg->outputs = grow_array(fg->outputs, sizeof(*fg->outputs), &fg->nb_outputs, fg->outputs = grow_array(fg->outputs, sizeof(*fg->outputs), &fg->nb_outputs,
fg->nb_outputs + 1); fg->nb_outputs + 1);
if (!(fg->outputs[0] = av_mallocz(sizeof(*fg->outputs[0])))) if (!(fg->outputs[0] = av_mallocz(sizeof(*fg->outputs[0]))))
exit_program(1); exit(1);
fg->outputs[0]->ost = ost; fg->outputs[0]->ost = ost;
fg->outputs[0]->graph = fg; fg->outputs[0]->graph = fg;
...@@ -191,7 +191,7 @@ FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost) ...@@ -191,7 +191,7 @@ FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost)
fg->inputs = grow_array(fg->inputs, sizeof(*fg->inputs), &fg->nb_inputs, fg->inputs = grow_array(fg->inputs, sizeof(*fg->inputs), &fg->nb_inputs,
fg->nb_inputs + 1); fg->nb_inputs + 1);
if (!(fg->inputs[0] = av_mallocz(sizeof(*fg->inputs[0])))) if (!(fg->inputs[0] = av_mallocz(sizeof(*fg->inputs[0]))))
exit_program(1); exit(1);
fg->inputs[0]->ist = ist; fg->inputs[0]->ist = ist;
fg->inputs[0]->graph = fg; fg->inputs[0]->graph = fg;
...@@ -216,7 +216,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) ...@@ -216,7 +216,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
if (type != AVMEDIA_TYPE_VIDEO && type != AVMEDIA_TYPE_AUDIO) { if (type != AVMEDIA_TYPE_VIDEO && type != AVMEDIA_TYPE_AUDIO) {
av_log(NULL, AV_LOG_FATAL, "Only video and audio filters supported " av_log(NULL, AV_LOG_FATAL, "Only video and audio filters supported "
"currently.\n"); "currently.\n");
exit_program(1); exit(1);
} }
if (in->name) { if (in->name) {
...@@ -228,7 +228,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) ...@@ -228,7 +228,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
if (file_idx < 0 || file_idx >= nb_input_files) { if (file_idx < 0 || file_idx >= nb_input_files) {
av_log(NULL, AV_LOG_FATAL, "Invalid file index %d in filtergraph description %s.\n", av_log(NULL, AV_LOG_FATAL, "Invalid file index %d in filtergraph description %s.\n",
file_idx, fg->graph_desc); file_idx, fg->graph_desc);
exit_program(1); exit(1);
} }
s = input_files[file_idx]->ctx; s = input_files[file_idx]->ctx;
...@@ -246,7 +246,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) ...@@ -246,7 +246,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
if (!st) { if (!st) {
av_log(NULL, AV_LOG_FATAL, "Stream specifier '%s' in filtergraph description %s " av_log(NULL, AV_LOG_FATAL, "Stream specifier '%s' in filtergraph description %s "
"matches no streams.\n", p, fg->graph_desc); "matches no streams.\n", p, fg->graph_desc);
exit_program(1); exit(1);
} }
ist = input_streams[input_files[file_idx]->ist_index + st->index]; ist = input_streams[input_files[file_idx]->ist_index + st->index];
} else { } else {
...@@ -260,7 +260,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) ...@@ -260,7 +260,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for " av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for "
"unlabeled input pad %d on filter %s\n", in->pad_idx, "unlabeled input pad %d on filter %s\n", in->pad_idx,
in->filter_ctx->name); in->filter_ctx->name);
exit_program(1); exit(1);
} }
} }
av_assert0(ist); av_assert0(ist);
...@@ -272,7 +272,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) ...@@ -272,7 +272,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
fg->inputs = grow_array(fg->inputs, sizeof(*fg->inputs), fg->inputs = grow_array(fg->inputs, sizeof(*fg->inputs),
&fg->nb_inputs, fg->nb_inputs + 1); &fg->nb_inputs, fg->nb_inputs + 1);
if (!(fg->inputs[fg->nb_inputs - 1] = av_mallocz(sizeof(*fg->inputs[0])))) if (!(fg->inputs[fg->nb_inputs - 1] = av_mallocz(sizeof(*fg->inputs[0]))))
exit_program(1); exit(1);
fg->inputs[fg->nb_inputs - 1]->ist = ist; fg->inputs[fg->nb_inputs - 1]->ist = ist;
fg->inputs[fg->nb_inputs - 1]->graph = fg; fg->inputs[fg->nb_inputs - 1]->graph = fg;
...@@ -477,7 +477,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter, ...@@ -477,7 +477,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter,
AVIOContext *pb; \ AVIOContext *pb; \
\ \
if (avio_open_dyn_buf(&pb) < 0) \ if (avio_open_dyn_buf(&pb) < 0) \
exit_program(1); \ exit(1); \
\ \
avio_printf(pb, "%s", ctx->filter->name); \ avio_printf(pb, "%s", ctx->filter->name); \
if (nb_pads > 1) \ if (nb_pads > 1) \
...@@ -752,7 +752,7 @@ int configure_filtergraph(FilterGraph *fg) ...@@ -752,7 +752,7 @@ int configure_filtergraph(FilterGraph *fg)
fg->outputs = grow_array(fg->outputs, sizeof(*fg->outputs), fg->outputs = grow_array(fg->outputs, sizeof(*fg->outputs),
&fg->nb_outputs, fg->nb_outputs + 1); &fg->nb_outputs, fg->nb_outputs + 1);
if (!(fg->outputs[fg->nb_outputs - 1] = av_mallocz(sizeof(*fg->outputs[0])))) if (!(fg->outputs[fg->nb_outputs - 1] = av_mallocz(sizeof(*fg->outputs[0]))))
exit_program(1); exit(1);
fg->outputs[fg->nb_outputs - 1]->graph = fg; fg->outputs[fg->nb_outputs - 1]->graph = fg;
fg->outputs[fg->nb_outputs - 1]->out_tmp = cur; fg->outputs[fg->nb_outputs - 1]->out_tmp = cur;
cur = cur->next; cur = cur->next;
......
This diff is collapsed.
...@@ -300,10 +300,7 @@ static AVPacket flush_pkt; ...@@ -300,10 +300,7 @@ static AVPacket flush_pkt;
static SDL_Surface *screen; static SDL_Surface *screen;
void av_noreturn exit_program(int ret) static int packet_queue_put(PacketQueue *q, AVPacket *pkt);
{
exit(ret);
}
static int packet_queue_put_private(PacketQueue *q, AVPacket *pkt) static int packet_queue_put_private(PacketQueue *q, AVPacket *pkt)
{ {
...@@ -2988,7 +2985,7 @@ static void opt_input_file(void *optctx, const char *filename) ...@@ -2988,7 +2985,7 @@ static void opt_input_file(void *optctx, const char *filename)
if (input_filename) { if (input_filename) {
fprintf(stderr, "Argument '%s' provided as input filename, but '%s' was already specified.\n", fprintf(stderr, "Argument '%s' provided as input filename, but '%s' was already specified.\n",
filename, input_filename); filename, input_filename);
exit_program(1); exit(1);
} }
if (!strcmp(filename, "-")) if (!strcmp(filename, "-"))
filename = "pipe:"; filename = "pipe:";
......
...@@ -141,10 +141,9 @@ static const char unit_bit_per_second_str[] = "bit/s"; ...@@ -141,10 +141,9 @@ static const char unit_bit_per_second_str[] = "bit/s";
static uint64_t *nb_streams_packets; static uint64_t *nb_streams_packets;
static uint64_t *nb_streams_frames; static uint64_t *nb_streams_frames;
void av_noreturn exit_program(int ret) static void exit_program()
{ {
av_dict_free(&fmt_entries_to_show); av_dict_free(&fmt_entries_to_show);
exit(ret);
} }
struct unit_value { struct unit_value {
...@@ -2093,6 +2092,8 @@ int main(int argc, char **argv) ...@@ -2093,6 +2092,8 @@ int main(int argc, char **argv)
int ret; int ret;
av_log_set_flags(AV_LOG_SKIP_REPEATED); av_log_set_flags(AV_LOG_SKIP_REPEATED);
atexit(exit_program);
options = real_options; options = real_options;
parse_loglevel(argc, argv, options); parse_loglevel(argc, argv, options);
av_register_all(); av_register_all();
......
...@@ -329,11 +329,6 @@ static AVLFG random_state; ...@@ -329,11 +329,6 @@ static AVLFG random_state;
static FILE *logfile = NULL; static FILE *logfile = NULL;
/* FIXME: make ffserver work with IPv6 */ /* FIXME: make ffserver work with IPv6 */
void av_noreturn exit_program(int ret)
{
exit(ret);
}
/* resolve host with also IP address parsing */ /* resolve host with also IP address parsing */
static int resolve_host(struct in_addr *sin_addr, const char *hostname) static int resolve_host(struct in_addr *sin_addr, const char *hostname)
{ {
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include "libavutil/imgutils.h" #include "libavutil/imgutils.h"
#include "libavutil/log.h" #include "libavutil/log.h"
#include "libavutil/opt.h" #include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avcodec.h" #include "avcodec.h"
#include "config.h" #include "config.h"
...@@ -250,6 +251,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -250,6 +251,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
int ret = -1; int ret = -1;
int is_yuv = 0, alpha = 0; int is_yuv = 0, alpha = 0;
int shift_h, shift_v; int shift_h, shift_v;
const AVPixFmtDescriptor* pfd;
*p = *pict; *p = *pict;
...@@ -260,6 +262,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -260,6 +262,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
avctx->bits_per_coded_sample = avctx->bits_per_coded_sample =
s->bpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[avctx->pix_fmt]); s->bpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[avctx->pix_fmt]);
s->bpp_tab_size = av_pix_fmt_descriptors[avctx->pix_fmt].nb_components;
switch (avctx->pix_fmt) { switch (avctx->pix_fmt) {
case PIX_FMT_RGBA64LE: case PIX_FMT_RGBA64LE:
...@@ -302,7 +305,6 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -302,7 +305,6 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
return -1; return -1;
} }
s->bpp_tab_size = av_pix_fmt_descriptors[avctx->pix_fmt].nb_components;
for (i = 0; i < s->bpp_tab_size; i++) for (i = 0; i < s->bpp_tab_size; i++)
bpp_tab[i] = av_pix_fmt_descriptors[avctx->pix_fmt].comp[i].depth_minus1 + 1; bpp_tab[i] = av_pix_fmt_descriptors[avctx->pix_fmt].comp[i].depth_minus1 + 1;
...@@ -346,6 +348,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -346,6 +348,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
if (is_yuv){ if (is_yuv){
av_fast_padded_malloc(&s->yuv_line, &s->yuv_line_size, bytes_per_row); av_fast_padded_malloc(&s->yuv_line, &s->yuv_line_size, bytes_per_row);
if (s->yuv_line == NULL){ if (s->yuv_line == NULL){
av_log(s->avctx, AV_LOG_ERROR, "Not enough memory\n");
ret = AVERROR(ENOMEM); ret = AVERROR(ENOMEM);
goto fail; goto fail;
} }
...@@ -359,6 +362,10 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -359,6 +362,10 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
zlen = bytes_per_row * s->rps; zlen = bytes_per_row * s->rps;
zbuf = av_malloc(zlen); zbuf = av_malloc(zlen);
if (!zbuf) {
ret = AVERROR(ENOMEM);
goto fail;
}
s->strip_offsets[0] = ptr - pkt->data; s->strip_offsets[0] = ptr - pkt->data;
zn = 0; zn = 0;
for (j = 0; j < s->rps; j++) { for (j = 0; j < s->rps; j++) {
...@@ -383,8 +390,13 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -383,8 +390,13 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
} else } else
#endif #endif
{ {
if(s->compr == TIFF_LZW) if (s->compr == TIFF_LZW) {
s->lzws = av_malloc(ff_lzw_encode_state_size); s->lzws = av_malloc(ff_lzw_encode_state_size);
if (!s->lzws) {
ret = AVERROR(ENOMEM);
goto fail;
}
}
for (i = 0; i < s->height; i++) { for (i = 0; i < s->height; i++) {
if (s->strip_sizes[i / s->rps] == 0) { if (s->strip_sizes[i / s->rps] == 0) {
if(s->compr == TIFF_LZW){ if(s->compr == TIFF_LZW){
......
...@@ -188,13 +188,15 @@ static int nut_probe(AVProbeData *p) ...@@ -188,13 +188,15 @@ static int nut_probe(AVProbeData *p)
return 0; return 0;
} }
#define GET_V(dst, check) \ #define GET_V(dst, check) \
tmp = ffio_read_varlen(bc); \ do { \
if (!(check)) { \ tmp = ffio_read_varlen(bc); \
av_log(s, AV_LOG_ERROR, "Error " #dst " is (%"PRId64")\n", tmp); \ if (!(check)) { \
return -1; \ av_log(s, AV_LOG_ERROR, "Error " #dst " is (%"PRId64")\n", tmp); \
} \ return -1; \
dst = tmp; } \
dst = tmp; \
} while (0)
static int skip_reserved(AVIOContext *bc, int64_t pos) static int skip_reserved(AVIOContext *bc, int64_t pos)
{ {
...@@ -221,8 +223,8 @@ static int decode_main_header(NUTContext *nut) ...@@ -221,8 +223,8 @@ static int decode_main_header(NUTContext *nut)
end = get_packetheader(nut, bc, 1, MAIN_STARTCODE); end = get_packetheader(nut, bc, 1, MAIN_STARTCODE);
end += avio_tell(bc); end += avio_tell(bc);
GET_V(tmp, tmp >= 2 && tmp <= 3) GET_V(tmp, tmp >= 2 && tmp <= 3);
GET_V(stream_count, tmp > 0 && tmp <= NUT_MAX_STREAMS) GET_V(stream_count, tmp > 0 && tmp <= NUT_MAX_STREAMS);
nut->max_distance = ffio_read_varlen(bc); nut->max_distance = ffio_read_varlen(bc);
if (nut->max_distance > 65536) { if (nut->max_distance > 65536) {
...@@ -230,12 +232,12 @@ static int decode_main_header(NUTContext *nut) ...@@ -230,12 +232,12 @@ static int decode_main_header(NUTContext *nut)
nut->max_distance = 65536; nut->max_distance = 65536;
} }
GET_V(nut->time_base_count, tmp > 0 && tmp < INT_MAX / sizeof(AVRational)) GET_V(nut->time_base_count, tmp > 0 && tmp < INT_MAX / sizeof(AVRational));
nut->time_base = av_malloc(nut->time_base_count * sizeof(AVRational)); nut->time_base = av_malloc(nut->time_base_count * sizeof(AVRational));
for (i = 0; i < nut->time_base_count; i++) { for (i = 0; i < nut->time_base_count; i++) {
GET_V(nut->time_base[i].num, tmp > 0 && tmp < (1ULL << 31)) GET_V(nut->time_base[i].num, tmp > 0 && tmp < (1ULL << 31));
GET_V(nut->time_base[i].den, tmp > 0 && tmp < (1ULL << 31)) GET_V(nut->time_base[i].den, tmp > 0 && tmp < (1ULL << 31));
if (av_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1) { if (av_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1) {
av_log(s, AV_LOG_ERROR, "time base invalid\n"); av_log(s, AV_LOG_ERROR, "time base invalid\n");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
...@@ -303,7 +305,7 @@ static int decode_main_header(NUTContext *nut) ...@@ -303,7 +305,7 @@ static int decode_main_header(NUTContext *nut)
if (end > avio_tell(bc) + 4) { if (end > avio_tell(bc) + 4) {
int rem = 1024; int rem = 1024;
GET_V(nut->header_count, tmp < 128U) GET_V(nut->header_count, tmp < 128U);
nut->header_count++; nut->header_count++;
for (i = 1; i < nut->header_count; i++) { for (i = 1; i < nut->header_count; i++) {
uint8_t *hdr; uint8_t *hdr;
...@@ -400,8 +402,8 @@ static int decode_stream_header(NUTContext *nut) ...@@ -400,8 +402,8 @@ static int decode_stream_header(NUTContext *nut)
} }
if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
GET_V(st->codec->width, tmp > 0) GET_V(st->codec->width, tmp > 0);
GET_V(st->codec->height, tmp > 0) GET_V(st->codec->height, tmp > 0);
st->sample_aspect_ratio.num = ffio_read_varlen(bc); st->sample_aspect_ratio.num = ffio_read_varlen(bc);
st->sample_aspect_ratio.den = ffio_read_varlen(bc); st->sample_aspect_ratio.den = ffio_read_varlen(bc);
if ((!st->sample_aspect_ratio.num) != (!st->sample_aspect_ratio.den)) { if ((!st->sample_aspect_ratio.num) != (!st->sample_aspect_ratio.den)) {
...@@ -411,9 +413,9 @@ static int decode_stream_header(NUTContext *nut) ...@@ -411,9 +413,9 @@ static int decode_stream_header(NUTContext *nut)
} }
ffio_read_varlen(bc); /* csp type */ ffio_read_varlen(bc); /* csp type */
} else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) { } else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
GET_V(st->codec->sample_rate, tmp > 0) GET_V(st->codec->sample_rate, tmp > 0);
ffio_read_varlen(bc); // samplerate_den ffio_read_varlen(bc); // samplerate_den
GET_V(st->codec->channels, tmp > 0) GET_V(st->codec->channels, tmp > 0);
} }
if (skip_reserved(bc, end) || ffio_get_checksum(bc)) { if (skip_reserved(bc, end) || ffio_get_checksum(bc)) {
av_log(s, AV_LOG_ERROR, av_log(s, AV_LOG_ERROR,
...@@ -458,7 +460,7 @@ static int decode_info_header(NUTContext *nut) ...@@ -458,7 +460,7 @@ static int decode_info_header(NUTContext *nut)
end = get_packetheader(nut, bc, 1, INFO_STARTCODE); end = get_packetheader(nut, bc, 1, INFO_STARTCODE);
end += avio_tell(bc); end += avio_tell(bc);
GET_V(stream_id_plus1, tmp <= s->nb_streams) GET_V(stream_id_plus1, tmp <= s->nb_streams);
chapter_id = get_s(bc); chapter_id = get_s(bc);
chapter_start = ffio_read_varlen(bc); chapter_start = ffio_read_varlen(bc);
chapter_len = ffio_read_varlen(bc); chapter_len = ffio_read_varlen(bc);
...@@ -608,7 +610,7 @@ static int find_and_decode_index(NUTContext *nut) ...@@ -608,7 +610,7 @@ static int find_and_decode_index(NUTContext *nut)
end += avio_tell(bc); end += avio_tell(bc);
ffio_read_varlen(bc); // max_pts ffio_read_varlen(bc); // max_pts
GET_V(syncpoint_count, tmp < INT_MAX / 8 && tmp > 0) GET_V(syncpoint_count, tmp < INT_MAX / 8 && tmp > 0);
syncpoints = av_malloc(sizeof(int64_t) * syncpoint_count); syncpoints = av_malloc(sizeof(int64_t) * syncpoint_count);
has_keyframe = av_malloc(sizeof(int8_t) * (syncpoint_count + 1)); has_keyframe = av_malloc(sizeof(int8_t) * (syncpoint_count + 1));
for (i = 0; i < syncpoint_count; i++) { for (i = 0; i < syncpoint_count; i++) {
...@@ -773,7 +775,7 @@ static int decode_frame_header(NUTContext *nut, int64_t *pts, int *stream_id, ...@@ -773,7 +775,7 @@ static int decode_frame_header(NUTContext *nut, int64_t *pts, int *stream_id,
if (flags & FLAG_CODED) if (flags & FLAG_CODED)
flags ^= ffio_read_varlen(bc); flags ^= ffio_read_varlen(bc);
if (flags & FLAG_STREAM_ID) { if (flags & FLAG_STREAM_ID) {
GET_V(*stream_id, tmp < s->nb_streams) GET_V(*stream_id, tmp < s->nb_streams);
} }
stc = &nut->stream[*stream_id]; stc = &nut->stream[*stream_id];
if (flags & FLAG_CODED_PTS) { if (flags & FLAG_CODED_PTS) {
......
...@@ -141,7 +141,9 @@ ELF .size \name, . - \name ...@@ -141,7 +141,9 @@ ELF .size \name, . - \name
ldr \rd, .Lpicoff\@ ldr \rd, .Lpicoff\@
.Lpic\@: .Lpic\@:
.if \indir .if \indir
ldr \rd, [pc, \rd] A ldr \rd, [pc, \rd]
T add \rd, pc
T ldr \rd, [\rd]
.else .else
add \rd, pc add \rd, pc
.endif .endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment