24 #include "libavutil/time.h"
25 #include "libavformat/avformat.h"
29 fprintf(stderr,
"%s [-b bytespersec] input_url output_url\n", argv0);
33 int main(
int argc,
char **argv)
36 const char *input_url = NULL, *output_url = NULL;
37 int64_t stream_pos = 0;
45 for (i = 1; i < argc; i++) {
46 if (!strcmp(argv[i],
"-b")) {
47 bps = atoi(argv[i + 1]);
49 }
else if (!input_url) {
51 }
else if (!output_url) {
54 return usage(argv[0], 1);
58 return usage(argv[0], 1);
63 fprintf(stderr,
"Unable to open %s: %s\n", input_url, errbuf);
69 fprintf(stderr,
"Unable to open %s: %s\n", output_url, errbuf);
int av_usleep(unsigned usec)
Sleep for a period of time.
static int64_t start_time
int avformat_network_init(void)
Do global initialization of network components.
int64_t av_gettime(void)
Get the current time in microseconds.
#define AV_TIME_BASE
Internal time base represented as integer.
int avformat_network_deinit(void)
Undo the initialization done by avformat_network_init.
static int usage(const char *argv0, int ret)
int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
Put a description of the AVERROR code errnum in errbuf.
int main(int argc, char **argv)
void av_register_all(void)
Initialize libavformat and register all the muxers, demuxers and protocols.