| ... | ... |
@@ -2997,7 +2997,7 @@ static const OptionDef options[] = {
|
| 2997 | 2997 |
#endif |
| 2998 | 2998 |
{ "rdftspeed", OPT_INT | HAS_ARG| OPT_AUDIO | OPT_EXPERT, {(void*)&rdftspeed}, "rdft speed", "msecs" },
|
| 2999 | 2999 |
{ "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default}, "generic catch all option", "" },
|
| 3000 |
- { "i", 0, {NULL}, "ffmpeg compatibility dummy option", ""},
|
|
| 3000 |
+ { "i", 0, {NULL}, "avconv compatibility dummy option", ""},
|
|
| 3001 | 3001 |
{ NULL, },
|
| 3002 | 3002 |
}; |
| 3003 | 3003 |
|
| ... | ... |
@@ -223,8 +223,8 @@ typedef struct FFStream {
|
| 223 | 223 |
char title[512]; |
| 224 | 224 |
char copyright[512]; |
| 225 | 225 |
char comment[512]; |
| 226 |
- pid_t pid; /* Of ffmpeg process */ |
|
| 227 |
- time_t pid_start; /* Of ffmpeg process */ |
|
| 226 |
+ pid_t pid; /* of avconv process */ |
|
| 227 |
+ time_t pid_start; /* of avconv process */ |
|
| 228 | 228 |
char **child_argv; |
| 229 | 229 |
struct FFStream *next; |
| 230 | 230 |
unsigned bandwidth; /* bandwidth, in kbits/s */ |
| ... | ... |
@@ -474,7 +474,7 @@ static void start_children(FFStream *feed) |
| 474 | 474 |
slash = pathname; |
| 475 | 475 |
else |
| 476 | 476 |
slash++; |
| 477 |
- strcpy(slash, "ffmpeg"); |
|
| 477 |
+ strcpy(slash, "avconv"); |
|
| 478 | 478 |
|
| 479 | 479 |
http_log("Launch commandline: ");
|
| 480 | 480 |
http_log("%s ", pathname);
|
| ... | ... |
@@ -137,7 +137,7 @@ static av_cold int xvid_encode_init(AVCodecContext *avctx) {
|
| 137 | 137 |
xvid_enc_create_t xvid_enc_create; |
| 138 | 138 |
xvid_enc_plugin_t plugins[7]; |
| 139 | 139 |
|
| 140 |
- /* Bring in VOP flags from ffmpeg command-line */ |
|
| 140 |
+ /* Bring in VOP flags from avconv command-line */ |
|
| 141 | 141 |
x->vop_flags = XVID_VOP_HALFPEL; /* Bare minimum quality */ |
| 142 | 142 |
if( xvid_flags & CODEC_FLAG_4MV ) |
| 143 | 143 |
x->vop_flags |= XVID_VOP_INTER4V; /* Level 3 */ |
| ... | ... |
@@ -191,7 +191,7 @@ static av_cold int xvid_encode_init(AVCodecContext *avctx) {
|
| 191 | 191 |
break; |
| 192 | 192 |
} |
| 193 | 193 |
|
| 194 |
- /* Bring in VOL flags from ffmpeg command-line */ |
|
| 194 |
+ /* Bring in VOL flags from avconv command-line */ |
|
| 195 | 195 |
x->vol_flags = 0; |
| 196 | 196 |
if( xvid_flags & CODEC_FLAG_GMC ) {
|
| 197 | 197 |
x->vol_flags |= XVID_VOL_GMC; |
| ... | ... |
@@ -669,7 +669,7 @@ static int xvid_ff_2pass_create(xvid_plg_create_t * param, |
| 669 | 669 |
/* This is because we can safely prevent a buffer overflow */ |
| 670 | 670 |
log[0] = 0; |
| 671 | 671 |
snprintf(log, BUFFER_REMAINING(log), |
| 672 |
- "# ffmpeg 2-pass log file, using xvid codec\n"); |
|
| 672 |
+ "# avconv 2-pass log file, using xvid codec\n"); |
|
| 673 | 673 |
snprintf(BUFFER_CAT(log), BUFFER_REMAINING(log), |
| 674 | 674 |
"# Do not modify. libxvidcore version: %d.%d.%d\n\n", |
| 675 | 675 |
XVID_VERSION_MAJOR(XVID_VERSION), |
| ... | ... |
@@ -1,5 +1,5 @@ |
| 1 | 1 |
/* |
| 2 |
- * HTTP protocol for ffmpeg client |
|
| 2 |
+ * HTTP protocol for avconv client |
|
| 3 | 3 |
* Copyright (c) 2000, 2001 Fabrice Bellard |
| 4 | 4 |
* |
| 5 | 5 |
* This file is part of Libav. |
| ... | ... |
@@ -31,7 +31,7 @@ |
| 31 | 31 |
#include "url.h" |
| 32 | 32 |
#include "libavutil/opt.h" |
| 33 | 33 |
|
| 34 |
-/* XXX: POST protocol is not completely implemented because ffmpeg uses |
|
| 34 |
+/* XXX: POST protocol is not completely implemented because avconv uses |
|
| 35 | 35 |
only a subset of it. */ |
| 36 | 36 |
|
| 37 | 37 |
/* used for protocol handling */ |
| ... | ... |
@@ -35,7 +35,7 @@ |
| 35 | 35 |
#define MODE_MOV 0x02 |
| 36 | 36 |
#define MODE_3GP 0x04 |
| 37 | 37 |
#define MODE_PSP 0x08 // example working PSP command line: |
| 38 |
-// ffmpeg -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4 |
|
| 38 |
+// avconv -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4 |
|
| 39 | 39 |
#define MODE_3G2 0x10 |
| 40 | 40 |
#define MODE_IPOD 0x20 |
| 41 | 41 |
|
| ... | ... |
@@ -71,7 +71,11 @@ |
| 71 | 71 |
* so the header seems to not be mandatory. (for streaming). |
| 72 | 72 |
* |
| 73 | 73 |
* index slice duration check (excepts nsvtrailer.nsv): |
| 74 |
- * for f in [^n]*.nsv; do DUR="$(ffmpeg -i "$f" 2>/dev/null | grep 'NSVf duration' | cut -d ' ' -f 4)"; IC="$(ffmpeg -i "$f" 2>/dev/null | grep 'INDEX ENTRIES' | cut -d ' ' -f 2)"; echo "duration $DUR, slite time $(($DUR/$IC))"; done |
|
| 74 |
+ * for f in [^n]*.nsv; do |
|
| 75 |
+ * DUR="$(avconv -i "$f" 2> /dev/null | grep 'NSVf duration' | cut -d ' ' -f 4)" |
|
| 76 |
+ * IC="$(avconv -i "$f" 2> /dev/null | grep 'INDEX ENTRIES' | cut -d ' ' -f 2)" |
|
| 77 |
+ * echo "duration $DUR, slite time $(($DUR/$IC))" |
|
| 78 |
+ * done |
|
| 75 | 79 |
*/ |
| 76 | 80 |
|
| 77 | 81 |
/* |