Browse code

Replace ffmpeg references with more accurate libav* references.

Diego Biurrun authored on 2011/10/31 02:02:42
Showing 12 changed files
... ...
@@ -36,7 +36,7 @@
36 36
  * a little more compression by exploiting the fact that adjacent pixels
37 37
  * tend to be similar.
38 38
  *
39
- * Note that this decoder could use ffmpeg's optimized VLC facilities
39
+ * Note that this decoder could use libavcodec's optimized VLC facilities
40 40
  * rather than naive, tree-based Huffman decoding. However, there are 256
41 41
  * Huffman tables. Plus, the VLC bit coding order is right -> left instead
42 42
  * or left -> right, so all of the bits would have to be reversed. Further,
... ...
@@ -241,7 +241,7 @@ static av_cold int encode_init(AVCodecContext* avc_context)
241 241
         header, comment, and tables.
242 242
 
243 243
         Each one is prefixed with a 16bit size, then they
244
-        are concatenated together into ffmpeg's extradata.
244
+        are concatenated together into libavcodec's extradata.
245 245
     */
246 246
     offset = 0;
247 247
 
... ...
@@ -27,7 +27,7 @@
27 27
 #include "avcodec.h"
28 28
 
29 29
 /*
30
- * Adapted to ffmpeg by Francois Revol <revol@free.fr>
30
+ * Adapted to libavcodec by Francois Revol <revol@free.fr>
31 31
  * (removed 68k REG stuff, changed types, added some statics and consts,
32 32
  * libavcodec api, context stuff, interlaced stereo out).
33 33
  */
... ...
@@ -1854,7 +1854,7 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){
1854 1854
         }
1855 1855
     }
1856 1856
 
1857
-    /* ffmpeg detection */
1857
+    /* libavcodec detection */
1858 1858
     e=sscanf(buf, "FFmpe%*[^b]b%d", &build)+3;
1859 1859
     if(e!=4)
1860 1860
         e=sscanf(buf, "FFmpeg v%d.%d.%d / libavcodec build: %d", &ver, &ver2, &ver3, &build);
... ...
@@ -30,8 +30,8 @@
30 30
  * Note that this decoder reads big endian RGB555 pixel values from the
31 31
  * bytestream, arranges them in the host's endian order, and outputs
32 32
  * them to the final rendered map in the same host endian order. This is
33
- * intended behavior as the ffmpeg documentation states that RGB555 pixels
34
- * shall be stored in native CPU endianness.
33
+ * intended behavior as the libavcodec documentation states that RGB555
34
+ * pixels shall be stored in native CPU endianness.
35 35
  */
36 36
 
37 37
 #include <stdio.h>
... ...
@@ -19,7 +19,7 @@
19 19
  */
20 20
 
21 21
 /* The *no_round* functions have been added by James A. Morrison, 2003,2004.
22
-   The vis code from libmpeg2 was adapted for ffmpeg by James A. Morrison.
22
+   The vis code from libmpeg2 was adapted for libavcodec by James A. Morrison.
23 23
  */
24 24
 
25 25
 #include "config.h"
... ...
@@ -2,9 +2,9 @@
2 2
  * Duck Truemotion v1 Decoding Tables
3 3
  *
4 4
  * Data in this file was originally part of VpVision from On2 which is
5
- * distributed under the GNU GPL. It is redistributed with ffmpeg under the
6
- * GNU LGPL using the common understanding that data tables necessary for
7
- * decoding algorithms are not necessarily licensable.
5
+ * distributed under the GNU GPL. It is redistributed with libavcodec under
6
+ * the GNU LGPL using the common understanding that data tables necessary
7
+ * for decoding algorithms are not necessarily copyrightable.
8 8
  *
9 9
  * This file is part of Libav.
10 10
  *
... ...
@@ -362,7 +362,7 @@ static int asf_read_stream_properties(AVFormatContext *s, int64_t size)
362 362
 
363 363
         /* Extract palette from extradata if bpp <= 8 */
364 364
         /* This code assumes that extradata contains only palette */
365
-        /* This is true for all paletted codecs implemented in ffmpeg */
365
+        /* This is true for all paletted codecs implemented in libavcodec */
366 366
         if (st->codec->extradata_size && (st->codec->bits_per_coded_sample <= 8)) {
367 367
             int av_unused i;
368 368
 #if HAVE_BIGENDIAN
... ...
@@ -35,7 +35,7 @@
35 35
 /* if we don't know the size in advance */
36 36
 #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
37 37
 
38
-/* The ffmpeg codecs we support, and the IDs they have in the file */
38
+/* The libavcodec codecs we support, and the IDs they have in the file */
39 39
 static const AVCodecTag codec_au_tags[] = {
40 40
     { CODEC_ID_PCM_MULAW, 1 },
41 41
     { CODEC_ID_PCM_S8, 2 },
... ...
@@ -1,5 +1,5 @@
1 1
 /*
2
- * Various simple utilities for ffmpeg system
2
+ * various simple utilities for libavformat
3 3
  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4 4
  *
5 5
  * This file is part of Libav.
... ...
@@ -96,7 +96,7 @@ static const uint8_t* dv_extract_pack(uint8_t* frame, enum dv_pack_type t)
96 96
 /*
97 97
  * There's a couple of assumptions being made here:
98 98
  * 1. By default we silence erroneous (0x8000/16bit 0x800/12bit) audio samples.
99
- *    We can pass them upwards when ffmpeg will be ready to deal with them.
99
+ *    We can pass them upwards when libavcodec will be ready to deal with them.
100 100
  * 2. We don't do software emphasis.
101 101
  * 3. Audio is always returned as 16bit linear samples: 12bit nonlinear samples
102 102
  *    are converted into 16bit linear ones.
... ...
@@ -26,7 +26,7 @@
26 26
 
27 27
 #define RSO_HEADER_SIZE 8
28 28
 
29
-/* The ffmpeg codecs we support, and the IDs they have in the file */
29
+/* The libavcodec codecs we support, and the IDs they have in the file */
30 30
 extern const AVCodecTag ff_codec_rso_tags[];
31 31
 
32 32
 #endif /* AVFORMAT_RSO_H */