summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-04-23 16:39:03 +0200
committerDiego Biurrun <diego@biurrun.de>2011-04-23 19:12:23 +0200
commit43fb279f5643225799841f512d2dad4690186165 (patch)
tree02d9da40c0a873700c1f64e4a16167bb316794cc
parent6252040e773c30efa21c743124d5e813320a0ec2 (diff)
Replace more FFmpeg instances by Libav or ffmpeg.
-rw-r--r--doc/general.texi2
-rw-r--r--doc/issue_tracker.txt2
-rw-r--r--ffserver.c2
-rw-r--r--libavcodec/avcodec.h6
-rw-r--r--libavcodec/dca.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/doc/general.texi b/doc/general.texi
index 303159eba7..e68e83e5f2 100644
--- a/doc/general.texi
+++ b/doc/general.texi
@@ -268,7 +268,7 @@ library:
@section Image Formats
-FFmpeg can read and write images for each frame of a video sequence. The
+Libav can read and write images for each frame of a video sequence. The
following image formats are supported:
@multitable @columnfractions .4 .1 .1 .4
diff --git a/doc/issue_tracker.txt b/doc/issue_tracker.txt
index 5a15a9b665..e5733ec9d5 100644
--- a/doc/issue_tracker.txt
+++ b/doc/issue_tracker.txt
@@ -39,7 +39,7 @@ NOTE: issue = (bug report || patch || feature request)
Type:
-----
bug
- An error, flaw, mistake, failure, or fault in FFmpeg or libav* that
+ An error, flaw, mistake, failure, or fault in ffmpeg or libav* that
prevents it from behaving as intended.
feature request
diff --git a/ffserver.c b/ffserver.c
index d341182a4f..9cb65da017 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -2265,7 +2265,7 @@ static int http_prepare_data(HTTPContext *c)
/*
* HACK to avoid mpeg ps muxer to spit many underflow errors
- * Default value from FFmpeg
+ * Default value from Libav
* Try to set it use configuration option
*/
c->fmt_ctx.preload = (int)(0.5*AV_TIME_BASE);
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 14f00bb5d0..ec31f666d1 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -960,7 +960,7 @@ typedef struct AVPanScan{
int64_t reordered_opaque;\
\
/**\
- * hardware accelerator private data (FFmpeg allocated)\
+ * hardware accelerator private data (Libav-allocated)\
* - encoding: unused\
* - decoding: Set by libavcodec\
*/\
@@ -2633,8 +2633,8 @@ typedef struct AVCodecContext {
* Hardware accelerator context.
* For some hardware accelerators, a global context needs to be
* provided by the user. In that case, this holds display-dependent
- * data FFmpeg cannot instantiate itself. Please refer to the
- * FFmpeg HW accelerator documentation to know how to fill this
+ * data Libav cannot instantiate itself. Please refer to the
+ * Libav HW accelerator documentation to know how to fill this
* is. e.g. for VA API, this is a struct vaapi_context.
* - encoding: unused
* - decoding: Set by user
diff --git a/libavcodec/dca.c b/libavcodec/dca.c
index e3c64660db..525832f802 100644
--- a/libavcodec/dca.c
+++ b/libavcodec/dca.c
@@ -1798,7 +1798,7 @@ static int dca_decode_frame(AVCodecContext * avctx,
/* There is nothing that prevents a dts frame to change channel configuration
- but FFmpeg doesn't support that so only set the channels if it is previously
+ but Libav doesn't support that so only set the channels if it is previously
unset. Ideally during the first probe for channels the crc should be checked
and only set avctx->channels when the crc is ok. Right now the decoder could
set the channels based on a broken first frame.*/