|
|
|
@ -2784,6 +2784,75 @@ static void of_add_attachments(AVFormatContext *oc, OptionsContext *o) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void of_add_programs(AVFormatContext *oc, const OptionsContext *o) |
|
|
|
|
{ |
|
|
|
|
/* process manually set programs */ |
|
|
|
|
for (int i = 0; i < o->nb_program; i++) { |
|
|
|
|
const char *p = o->program[i].u.str; |
|
|
|
|
int progid = i+1; |
|
|
|
|
AVProgram *program; |
|
|
|
|
|
|
|
|
|
while(*p) { |
|
|
|
|
const char *p2 = av_get_token(&p, ":"); |
|
|
|
|
const char *to_dealloc = p2; |
|
|
|
|
char *key; |
|
|
|
|
if (!p2) |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
if(*p) p++; |
|
|
|
|
|
|
|
|
|
key = av_get_token(&p2, "="); |
|
|
|
|
if (!key || !*p2) { |
|
|
|
|
av_freep(&to_dealloc); |
|
|
|
|
av_freep(&key); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
p2++; |
|
|
|
|
|
|
|
|
|
if (!strcmp(key, "program_num")) |
|
|
|
|
progid = strtol(p2, NULL, 0); |
|
|
|
|
av_freep(&to_dealloc); |
|
|
|
|
av_freep(&key); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
program = av_new_program(oc, progid); |
|
|
|
|
|
|
|
|
|
p = o->program[i].u.str; |
|
|
|
|
while(*p) { |
|
|
|
|
const char *p2 = av_get_token(&p, ":"); |
|
|
|
|
const char *to_dealloc = p2; |
|
|
|
|
char *key; |
|
|
|
|
if (!p2) |
|
|
|
|
break; |
|
|
|
|
if(*p) p++; |
|
|
|
|
|
|
|
|
|
key = av_get_token(&p2, "="); |
|
|
|
|
if (!key) { |
|
|
|
|
av_log(NULL, AV_LOG_FATAL, |
|
|
|
|
"No '=' character in program string %s.\n", |
|
|
|
|
p2); |
|
|
|
|
exit_program(1); |
|
|
|
|
} |
|
|
|
|
if (!*p2) |
|
|
|
|
exit_program(1); |
|
|
|
|
p2++; |
|
|
|
|
|
|
|
|
|
if (!strcmp(key, "title")) { |
|
|
|
|
av_dict_set(&program->metadata, "title", p2, 0); |
|
|
|
|
} else if (!strcmp(key, "program_num")) { |
|
|
|
|
} else if (!strcmp(key, "st")) { |
|
|
|
|
int st_num = strtol(p2, NULL, 0); |
|
|
|
|
av_program_add_stream_index(oc, progid, st_num); |
|
|
|
|
} else { |
|
|
|
|
av_log(NULL, AV_LOG_FATAL, "Unknown program key %s.\n", key); |
|
|
|
|
exit_program(1); |
|
|
|
|
} |
|
|
|
|
av_freep(&to_dealloc); |
|
|
|
|
av_freep(&key); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static int open_output_file(OptionsContext *o, const char *filename) |
|
|
|
|
{ |
|
|
|
|
AVFormatContext *oc; |
|
|
|
@ -3073,71 +3142,7 @@ static int open_output_file(OptionsContext *o, const char *filename) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* process manually set programs */ |
|
|
|
|
for (i = 0; i < o->nb_program; i++) { |
|
|
|
|
const char *p = o->program[i].u.str; |
|
|
|
|
int progid = i+1; |
|
|
|
|
AVProgram *program; |
|
|
|
|
|
|
|
|
|
while(*p) { |
|
|
|
|
const char *p2 = av_get_token(&p, ":"); |
|
|
|
|
const char *to_dealloc = p2; |
|
|
|
|
char *key; |
|
|
|
|
if (!p2) |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
if(*p) p++; |
|
|
|
|
|
|
|
|
|
key = av_get_token(&p2, "="); |
|
|
|
|
if (!key || !*p2) { |
|
|
|
|
av_freep(&to_dealloc); |
|
|
|
|
av_freep(&key); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
p2++; |
|
|
|
|
|
|
|
|
|
if (!strcmp(key, "program_num")) |
|
|
|
|
progid = strtol(p2, NULL, 0); |
|
|
|
|
av_freep(&to_dealloc); |
|
|
|
|
av_freep(&key); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
program = av_new_program(oc, progid); |
|
|
|
|
|
|
|
|
|
p = o->program[i].u.str; |
|
|
|
|
while(*p) { |
|
|
|
|
const char *p2 = av_get_token(&p, ":"); |
|
|
|
|
const char *to_dealloc = p2; |
|
|
|
|
char *key; |
|
|
|
|
if (!p2) |
|
|
|
|
break; |
|
|
|
|
if(*p) p++; |
|
|
|
|
|
|
|
|
|
key = av_get_token(&p2, "="); |
|
|
|
|
if (!key) { |
|
|
|
|
av_log(NULL, AV_LOG_FATAL, |
|
|
|
|
"No '=' character in program string %s.\n", |
|
|
|
|
p2); |
|
|
|
|
exit_program(1); |
|
|
|
|
} |
|
|
|
|
if (!*p2) |
|
|
|
|
exit_program(1); |
|
|
|
|
p2++; |
|
|
|
|
|
|
|
|
|
if (!strcmp(key, "title")) { |
|
|
|
|
av_dict_set(&program->metadata, "title", p2, 0); |
|
|
|
|
} else if (!strcmp(key, "program_num")) { |
|
|
|
|
} else if (!strcmp(key, "st")) { |
|
|
|
|
int st_num = strtol(p2, NULL, 0); |
|
|
|
|
av_program_add_stream_index(oc, progid, st_num); |
|
|
|
|
} else { |
|
|
|
|
av_log(NULL, AV_LOG_FATAL, "Unknown program key %s.\n", key); |
|
|
|
|
exit_program(1); |
|
|
|
|
} |
|
|
|
|
av_freep(&to_dealloc); |
|
|
|
|
av_freep(&key); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
of_add_programs(oc, o); |
|
|
|
|
|
|
|
|
|
/* process manually set metadata */ |
|
|
|
|
for (i = 0; i < o->nb_metadata; i++) { |
|
|
|
|