Mercurial > libavcodec.hg
annotate utils.c @ 2852:6f7428adc6ad libavcodec
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
| author | reimar |
|---|---|
| date | Fri, 02 Sep 2005 19:16:48 +0000 |
| parents | 22eec5a1b043 |
| children | 9211043e0784 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * utils for libavcodec | |
| 429 | 3 * Copyright (c) 2001 Fabrice Bellard. |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
4 * Copyright (c) 2003 Michel Bardiaux for the av_log API |
|
1739
07a484280a82
copyright year update of the files i touched and remembered, things look annoyingly unmaintained otherwise
michael
parents:
1730
diff
changeset
|
5 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> |
| 0 | 6 * |
| 429 | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2 of the License, or (at your option) any later version. | |
| 0 | 11 * |
| 429 | 12 * This library is distributed in the hope that it will be useful, |
| 0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Lesser General Public License for more details. | |
| 0 | 16 * |
| 429 | 17 * You should have received a copy of the GNU Lesser General Public |
| 18 * License along with this library; if not, write to the Free Software | |
| 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 0 | 20 */ |
| 1106 | 21 |
| 22 /** | |
| 23 * @file utils.c | |
| 24 * utils. | |
| 25 */ | |
| 26 | |
| 394 | 27 #include "avcodec.h" |
| 0 | 28 #include "dsputil.h" |
| 341 | 29 #include "mpegvideo.h" |
|
2002
b737b5e96ee0
use AVInteger in av_rescale() so it can finally do 64*64/64 instead of just 64*32/32
michael
parents:
1996
diff
changeset
|
30 #include "integer.h" |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
31 #include <stdarg.h> |
|
2002
b737b5e96ee0
use AVInteger in av_rescale() so it can finally do 64*64/64 instead of just 64*32/32
michael
parents:
1996
diff
changeset
|
32 #include <limits.h> |
| 0 | 33 |
|
2652
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
34 const uint8_t ff_reverse[256]={ |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
35 0x00,0x80,0x40,0xC0,0x20,0xA0,0x60,0xE0,0x10,0x90,0x50,0xD0,0x30,0xB0,0x70,0xF0, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
36 0x08,0x88,0x48,0xC8,0x28,0xA8,0x68,0xE8,0x18,0x98,0x58,0xD8,0x38,0xB8,0x78,0xF8, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
37 0x04,0x84,0x44,0xC4,0x24,0xA4,0x64,0xE4,0x14,0x94,0x54,0xD4,0x34,0xB4,0x74,0xF4, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
38 0x0C,0x8C,0x4C,0xCC,0x2C,0xAC,0x6C,0xEC,0x1C,0x9C,0x5C,0xDC,0x3C,0xBC,0x7C,0xFC, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
39 0x02,0x82,0x42,0xC2,0x22,0xA2,0x62,0xE2,0x12,0x92,0x52,0xD2,0x32,0xB2,0x72,0xF2, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
40 0x0A,0x8A,0x4A,0xCA,0x2A,0xAA,0x6A,0xEA,0x1A,0x9A,0x5A,0xDA,0x3A,0xBA,0x7A,0xFA, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
41 0x06,0x86,0x46,0xC6,0x26,0xA6,0x66,0xE6,0x16,0x96,0x56,0xD6,0x36,0xB6,0x76,0xF6, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
42 0x0E,0x8E,0x4E,0xCE,0x2E,0xAE,0x6E,0xEE,0x1E,0x9E,0x5E,0xDE,0x3E,0xBE,0x7E,0xFE, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
43 0x01,0x81,0x41,0xC1,0x21,0xA1,0x61,0xE1,0x11,0x91,0x51,0xD1,0x31,0xB1,0x71,0xF1, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
44 0x09,0x89,0x49,0xC9,0x29,0xA9,0x69,0xE9,0x19,0x99,0x59,0xD9,0x39,0xB9,0x79,0xF9, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
45 0x05,0x85,0x45,0xC5,0x25,0xA5,0x65,0xE5,0x15,0x95,0x55,0xD5,0x35,0xB5,0x75,0xF5, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
46 0x0D,0x8D,0x4D,0xCD,0x2D,0xAD,0x6D,0xED,0x1D,0x9D,0x5D,0xDD,0x3D,0xBD,0x7D,0xFD, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
47 0x03,0x83,0x43,0xC3,0x23,0xA3,0x63,0xE3,0x13,0x93,0x53,0xD3,0x33,0xB3,0x73,0xF3, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
48 0x0B,0x8B,0x4B,0xCB,0x2B,0xAB,0x6B,0xEB,0x1B,0x9B,0x5B,0xDB,0x3B,0xBB,0x7B,0xFB, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
49 0x07,0x87,0x47,0xC7,0x27,0xA7,0x67,0xE7,0x17,0x97,0x57,0xD7,0x37,0xB7,0x77,0xF7, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
50 0x0F,0x8F,0x4F,0xCF,0x2F,0xAF,0x6F,0xEF,0x1F,0x9F,0x5F,0xDF,0x3F,0xBF,0x7F,0xFF, |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
51 }; |
|
659b92488061
ff_reverse to utils.c patch by (Roine Gustafsson )roine users.sourceforge net)
michael
parents:
2637
diff
changeset
|
52 |
| 2806 | 53 static int volatile entangled_thread_counter=0; |
| 54 | |
| 2231 | 55 void avcodec_default_free_buffers(AVCodecContext *s); |
| 1994 | 56 |
| 862 | 57 void *av_mallocz(unsigned int size) |
| 394 | 58 { |
| 59 void *ptr; | |
| 908 | 60 |
| 394 | 61 ptr = av_malloc(size); |
| 62 if (!ptr) | |
| 63 return NULL; | |
| 64 memset(ptr, 0, size); | |
| 65 return ptr; | |
| 66 } | |
| 67 | |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
68 char *av_strdup(const char *s) |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
69 { |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
70 char *ptr; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
71 int len; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
72 len = strlen(s) + 1; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
73 ptr = av_malloc(len); |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
74 if (!ptr) |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
75 return NULL; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
76 memcpy(ptr, s, len); |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
77 return ptr; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
78 } |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
79 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
80 /** |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
81 * realloc which does nothing if the block is large enough |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
82 */ |
| 1057 | 83 void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size) |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
84 { |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
85 if(min_size < *size) |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
86 return ptr; |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
87 |
| 2422 | 88 *size= FFMAX(17*min_size/16 + 32, min_size); |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
89 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
90 return av_realloc(ptr, *size); |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
91 } |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
92 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
93 |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
94 static unsigned int last_static = 0; |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
95 static unsigned int allocated_static = 0; |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
96 static void** array_static = NULL; |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
97 |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
98 /** |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
99 * allocation of static arrays - do not use for normal allocation. |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
100 */ |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
101 void *av_mallocz_static(unsigned int size) |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
102 { |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
103 void *ptr = av_mallocz(size); |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
104 |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
105 if(ptr){ |
| 1901 | 106 array_static =av_fast_realloc(array_static, &allocated_static, sizeof(void*)*(last_static+1)); |
| 2422 | 107 if(!array_static) |
| 108 return NULL; | |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
109 array_static[last_static++] = ptr; |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
110 } |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
111 |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
112 return ptr; |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
113 } |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
114 |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
115 /** |
|
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
116 * same as above, but does realloc |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
117 */ |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
118 |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
119 void *av_realloc_static(void *ptr, unsigned int size) |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
120 { |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
121 int i; |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
122 if(!ptr) |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
123 return av_mallocz_static(size); |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
124 /* Look for the old ptr */ |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
125 for(i = 0; i < last_static; i++) { |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
126 if(array_static[i] == ptr) { |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
127 array_static[i] = av_realloc(array_static[i], size); |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
128 return array_static[i]; |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
129 } |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
130 } |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
131 return NULL; |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
132 |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
133 } |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
134 |
|
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2362
diff
changeset
|
135 /** |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
136 * free all static arrays and reset pointers to 0. |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
137 */ |
| 1282 | 138 void av_free_static(void) |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
139 { |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
140 while(last_static){ |
|
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
141 av_freep(&array_static[--last_static]); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
142 } |
|
1900
5cde80c5d929
static allocation rewrite (old code was plain a broken mess)
michael
parents:
1858
diff
changeset
|
143 av_freep(&array_static); |
|
902
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
144 } |
|
6acc8394960d
* two functions to handle allocation of static data more simple
kabi
parents:
862
diff
changeset
|
145 |
| 1854 | 146 /** |
|
2840
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
147 * Call av_free_static automatically before it's too late |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
148 */ |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
149 |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
150 static void do_free() __attribute__ ((destructor)); |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
151 |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
152 static void do_free() |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
153 { |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
154 av_free_static(); |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
155 } |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
156 |
|
22eec5a1b043
Call av_free_static automatically before DLL unload patch by (plaum:ipf uni-stuttgart de)
michael
parents:
2817
diff
changeset
|
157 /** |
| 1854 | 158 * Frees memory and sets the pointer to NULL. |
| 159 * @param arg pointer to the pointer which should be freed | |
| 160 */ | |
| 161 void av_freep(void *arg) | |
| 400 | 162 { |
| 1854 | 163 void **ptr= (void**)arg; |
| 400 | 164 av_free(*ptr); |
| 165 *ptr = NULL; | |
| 166 } | |
| 167 | |
| 0 | 168 /* encoder management */ |
|
2169
db8baace74d8
Minor Patch for shared libs on Mac OSX by (Bill May <wmay at cisco dot com>)
michael
parents:
2167
diff
changeset
|
169 AVCodec *first_avcodec = NULL; |
| 0 | 170 |
| 171 void register_avcodec(AVCodec *format) | |
| 172 { | |
| 173 AVCodec **p; | |
| 174 p = &first_avcodec; | |
| 175 while (*p != NULL) p = &(*p)->next; | |
| 176 *p = format; | |
| 177 format->next = NULL; | |
| 178 } | |
| 179 | |
| 2270 | 180 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){ |
| 181 s->coded_width = width; | |
| 182 s->coded_height= height; | |
| 183 s->width = -((-width )>>s->lowres); | |
| 184 s->height= -((-height)>>s->lowres); | |
| 185 } | |
| 186 | |
| 1214 | 187 typedef struct InternalBuffer{ |
| 903 | 188 int last_pic_num; |
| 1214 | 189 uint8_t *base[4]; |
| 903 | 190 uint8_t *data[4]; |
|
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
191 int linesize[4]; |
| 1214 | 192 }InternalBuffer; |
| 193 | |
| 194 #define INTERNAL_BUFFER_SIZE 32 | |
| 903 | 195 |
| 1538 | 196 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1)) |
| 197 | |
| 198 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){ | |
| 199 int w_align= 1; | |
| 200 int h_align= 1; | |
| 201 | |
| 202 switch(s->pix_fmt){ | |
| 203 case PIX_FMT_YUV420P: | |
| 204 case PIX_FMT_YUV422: | |
|
2137
ef47c0b1ff28
UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents:
2125
diff
changeset
|
205 case PIX_FMT_UYVY422: |
| 1538 | 206 case PIX_FMT_YUV422P: |
| 207 case PIX_FMT_YUV444P: | |
| 208 case PIX_FMT_GRAY8: | |
| 209 case PIX_FMT_YUVJ420P: | |
| 210 case PIX_FMT_YUVJ422P: | |
| 211 case PIX_FMT_YUVJ444P: | |
| 212 w_align= 16; //FIXME check for non mpeg style codecs and use less alignment | |
| 213 h_align= 16; | |
| 214 break; | |
| 215 case PIX_FMT_YUV411P: | |
| 2309 | 216 case PIX_FMT_UYVY411: |
| 1538 | 217 w_align=32; |
| 218 h_align=8; | |
| 219 break; | |
| 220 case PIX_FMT_YUV410P: | |
| 221 if(s->codec_id == CODEC_ID_SVQ1){ | |
| 222 w_align=64; | |
| 223 h_align=64; | |
| 224 } | |
| 2104 | 225 case PIX_FMT_RGB555: |
| 226 if(s->codec_id == CODEC_ID_RPZA){ | |
| 227 w_align=4; | |
| 228 h_align=4; | |
| 229 } | |
| 230 case PIX_FMT_PAL8: | |
| 231 if(s->codec_id == CODEC_ID_SMC){ | |
| 232 w_align=4; | |
| 233 h_align=4; | |
| 234 } | |
| 1538 | 235 break; |
|
2418
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
236 case PIX_FMT_BGR24: |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
237 if((s->codec_id == CODEC_ID_MSZH) || (s->codec_id == CODEC_ID_ZLIB)){ |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
238 w_align=4; |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
239 h_align=4; |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
240 } |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
241 break; |
| 1538 | 242 default: |
| 243 w_align= 1; | |
| 244 h_align= 1; | |
| 245 break; | |
| 246 } | |
| 247 | |
| 248 *width = ALIGN(*width , w_align); | |
| 249 *height= ALIGN(*height, h_align); | |
| 250 } | |
| 251 | |
| 2422 | 252 int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){ |
| 253 if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4) | |
| 254 return 0; | |
| 255 | |
| 256 av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h); | |
| 257 return -1; | |
| 258 } | |
| 259 | |
| 925 | 260 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 261 int i; |
| 1538 | 262 int w= s->width; |
| 263 int h= s->height; | |
| 1214 | 264 InternalBuffer *buf; |
|
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
265 int *picture_number; |
| 2422 | 266 |
| 924 | 267 assert(pic->data[0]==NULL); |
| 1214 | 268 assert(INTERNAL_BUFFER_SIZE > s->internal_buffer_count); |
| 903 | 269 |
| 2422 | 270 if(avcodec_check_dimensions(s,w,h)) |
| 271 return -1; | |
| 272 | |
| 1214 | 273 if(s->internal_buffer==NULL){ |
| 274 s->internal_buffer= av_mallocz(INTERNAL_BUFFER_SIZE*sizeof(InternalBuffer)); | |
| 275 } | |
| 276 #if 0 | |
| 277 s->internal_buffer= av_fast_realloc( | |
| 278 s->internal_buffer, | |
| 279 &s->internal_buffer_size, | |
| 280 sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/ | |
| 281 ); | |
| 282 #endif | |
| 283 | |
| 284 buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
|
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
285 picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE-1]).last_pic_num; //FIXME ugly hack |
|
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
286 (*picture_number)++; |
|
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
287 |
| 1214 | 288 if(buf->base[0]){ |
|
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
289 pic->age= *picture_number - buf->last_pic_num; |
|
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
290 buf->last_pic_num= *picture_number; |
| 903 | 291 }else{ |
| 1538 | 292 int h_chroma_shift, v_chroma_shift; |
| 2324 | 293 int pixel_size; |
| 903 | 294 |
| 295 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); | |
| 1538 | 296 |
| 903 | 297 switch(s->pix_fmt){ |
| 1291 | 298 case PIX_FMT_RGB555: |
| 299 case PIX_FMT_RGB565: | |
| 903 | 300 case PIX_FMT_YUV422: |
|
2137
ef47c0b1ff28
UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents:
2125
diff
changeset
|
301 case PIX_FMT_UYVY422: |
| 903 | 302 pixel_size=2; |
| 303 break; | |
| 304 case PIX_FMT_RGB24: | |
| 305 case PIX_FMT_BGR24: | |
| 306 pixel_size=3; | |
| 307 break; | |
| 308 case PIX_FMT_RGBA32: | |
| 309 pixel_size=4; | |
| 310 break; | |
| 311 default: | |
| 312 pixel_size=1; | |
| 313 } | |
| 1538 | 314 |
| 315 avcodec_align_dimensions(s, &w, &h); | |
| 316 | |
| 903 | 317 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ |
| 318 w+= EDGE_WIDTH*2; | |
| 319 h+= EDGE_WIDTH*2; | |
| 320 } | |
| 321 | |
| 1214 | 322 buf->last_pic_num= -256*256*256*64; |
| 903 | 323 |
| 324 for(i=0; i<3; i++){ | |
| 1165 | 325 const int h_shift= i==0 ? 0 : h_chroma_shift; |
| 326 const int v_shift= i==0 ? 0 : v_chroma_shift; | |
| 903 | 327 |
|
1798
a3da4b429984
ppc chroma mess workaround (real bug is that the motion compensation code assumes that 2*uvlinesize == linesize and fixing this would mean a slowdown)
michael
parents:
1776
diff
changeset
|
328 //FIXME next ensures that linesize= 2^x uvlinesize, thats needed because some MC code assumes it |
| 2324 | 329 buf->linesize[i]= ALIGN(pixel_size*w>>h_shift, STRIDE_ALIGN<<(h_chroma_shift-h_shift)); |
| 903 | 330 |
|
2426
1ee03f2a6cd5
av_malloc vs av_mallocz patch by (Kurosu <kurosu inforezo org>)
michael
parents:
2423
diff
changeset
|
331 buf->base[i]= av_malloc((buf->linesize[i]*h>>v_shift)+16); //FIXME 16 |
| 1214 | 332 if(buf->base[i]==NULL) return -1; |
|
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
333 memset(buf->base[i], 128, buf->linesize[i]*h>>v_shift); |
| 903 | 334 |
| 335 if(s->flags&CODEC_FLAG_EMU_EDGE) | |
| 1214 | 336 buf->data[i] = buf->base[i]; |
| 903 | 337 else |
| 2324 | 338 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), STRIDE_ALIGN); |
| 903 | 339 } |
| 340 pic->age= 256*256*256*64; | |
| 341 } | |
|
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
342 pic->type= FF_BUFFER_TYPE_INTERNAL; |
| 903 | 343 |
| 1214 | 344 for(i=0; i<4; i++){ |
| 345 pic->base[i]= buf->base[i]; | |
| 346 pic->data[i]= buf->data[i]; | |
|
1588
de5e2acd0f80
initalize various uninitalized variables and avoid coded_picture_number as its not always correct (later should be reversed after fixing the picture_number mess)
michael
parents:
1585
diff
changeset
|
347 pic->linesize[i]= buf->linesize[i]; |
| 1214 | 348 } |
| 349 s->internal_buffer_count++; | |
| 350 | |
| 903 | 351 return 0; |
| 352 } | |
| 353 | |
| 925 | 354 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 355 int i; |
| 1214 | 356 InternalBuffer *buf, *last, temp; |
| 357 | |
| 924 | 358 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
| 1396 | 359 assert(s->internal_buffer_count); |
| 1214 | 360 |
| 1455 | 361 buf = NULL; /* avoids warning */ |
| 1214 | 362 for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize |
| 363 buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 364 if(buf->data[0] == pic->data[0]) | |
| 365 break; | |
| 366 } | |
| 367 assert(i < s->internal_buffer_count); | |
| 368 s->internal_buffer_count--; | |
| 369 last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
| 370 | |
| 371 temp= *buf; | |
| 372 *buf= *last; | |
| 373 *last= temp; | |
| 374 | |
| 375 for(i=0; i<3; i++){ | |
| 903 | 376 pic->data[i]=NULL; |
| 1214 | 377 // pic->base[i]=NULL; |
| 378 } | |
| 903 | 379 //printf("R%X\n", pic->opaque); |
| 380 } | |
| 381 | |
| 1630 | 382 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){ |
| 383 AVFrame temp_pic; | |
| 384 int i; | |
| 385 | |
| 386 /* If no picture return a new buffer */ | |
| 387 if(pic->data[0] == NULL) { | |
| 388 /* We will copy from buffer, so must be readable */ | |
| 389 pic->buffer_hints |= FF_BUFFER_HINTS_READABLE; | |
| 390 return s->get_buffer(s, pic); | |
| 391 } | |
| 392 | |
| 393 /* If internal buffer type return the same buffer */ | |
| 394 if(pic->type == FF_BUFFER_TYPE_INTERNAL) | |
| 395 return 0; | |
| 396 | |
| 397 /* | |
| 398 * Not internal type and reget_buffer not overridden, emulate cr buffer | |
| 399 */ | |
| 400 temp_pic = *pic; | |
| 401 for(i = 0; i < 4; i++) | |
| 402 pic->data[i] = pic->base[i] = NULL; | |
| 403 pic->opaque = NULL; | |
| 404 /* Allocate new frame */ | |
| 405 if (s->get_buffer(s, pic)) | |
| 406 return -1; | |
| 407 /* Copy image data from old buffer to new buffer */ | |
| 408 img_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width, | |
| 409 s->height); | |
| 410 s->release_buffer(s, &temp_pic); // Release old frame | |
| 411 return 0; | |
| 412 } | |
| 413 | |
| 1799 | 414 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count){ |
| 415 int i; | |
| 416 | |
| 417 for(i=0; i<count; i++){ | |
| 418 int r= func(c, arg[i]); | |
| 419 if(ret) ret[i]= r; | |
| 420 } | |
| 421 return 0; | |
| 422 } | |
| 423 | |
| 1858 | 424 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt){ |
| 998 | 425 return fmt[0]; |
| 426 } | |
| 427 | |
| 1856 | 428 static const char* context_to_name(void* ptr) { |
| 429 AVCodecContext *avc= ptr; | |
| 430 | |
| 431 if(avc && avc->codec && avc->codec->name) | |
| 432 return avc->codec->name; | |
| 433 else | |
| 434 return "NULL"; | |
| 435 } | |
| 436 | |
| 437 static AVClass av_codec_context_class = { "AVCodecContext", context_to_name }; | |
| 438 | |
| 681 | 439 void avcodec_get_context_defaults(AVCodecContext *s){ |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
440 memset(s, 0, sizeof(AVCodecContext)); |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
441 |
| 1856 | 442 s->av_class= &av_codec_context_class; |
| 685 | 443 s->bit_rate= 800*1000; |
| 444 s->bit_rate_tolerance= s->bit_rate*10; | |
| 681 | 445 s->qmin= 2; |
| 446 s->qmax= 31; | |
|
2494
36d70fbb31c5
mb_lmin/max to limit the per mb quality for the ratecontrol independant from the frame limits
michael
parents:
2488
diff
changeset
|
447 s->mb_lmin= FF_QP2LAMBDA * 2; |
|
36d70fbb31c5
mb_lmin/max to limit the per mb quality for the ratecontrol independant from the frame limits
michael
parents:
2488
diff
changeset
|
448 s->mb_lmax= FF_QP2LAMBDA * 31; |
| 681 | 449 s->rc_eq= "tex^qComp"; |
| 450 s->qcompress= 0.5; | |
| 685 | 451 s->max_qdiff= 3; |
| 452 s->b_quant_factor=1.25; | |
| 453 s->b_quant_offset=1.25; | |
|
686
83d2c9d50d7d
fixing i_quant_factor, this should finally fix the bitrate bug with ffserver hopefully
michaelni
parents:
685
diff
changeset
|
454 s->i_quant_factor=-0.8; |
| 685 | 455 s->i_quant_offset=0.0; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
456 s->error_concealment= 3; |
| 762 | 457 s->error_resilience= 1; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
458 s->workaround_bugs= FF_BUG_AUTODETECT; |
| 2637 | 459 s->time_base= (AVRational){0,1}; |
| 762 | 460 s->gop_size= 50; |
| 461 s->me_method= ME_EPZS; | |
| 903 | 462 s->get_buffer= avcodec_default_get_buffer; |
| 463 s->release_buffer= avcodec_default_release_buffer; | |
| 998 | 464 s->get_format= avcodec_default_get_format; |
| 1799 | 465 s->execute= avcodec_default_execute; |
| 466 s->thread_count=1; | |
| 954 | 467 s->me_subpel_quality=8; |
|
1505
010f76d07a27
use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents:
1456
diff
changeset
|
468 s->lmin= FF_QP2LAMBDA * s->qmin; |
|
010f76d07a27
use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents:
1456
diff
changeset
|
469 s->lmax= FF_QP2LAMBDA * s->qmax; |
| 1548 | 470 s->sample_aspect_ratio= (AVRational){0,1}; |
| 1730 | 471 s->ildct_cmp= FF_CMP_VSAD; |
| 2167 | 472 s->profile= FF_PROFILE_UNKNOWN; |
| 473 s->level= FF_LEVEL_UNKNOWN; | |
| 2584 | 474 s->me_penalty_compensation= 256; |
| 2635 | 475 s->pix_fmt= PIX_FMT_NONE; |
| 1150 | 476 |
| 477 s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
| 478 s->inter_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
|
1585
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1582
diff
changeset
|
479 s->palctrl = NULL; |
| 1630 | 480 s->reget_buffer= avcodec_default_reget_buffer; |
| 681 | 481 } |
| 482 | |
| 483 /** | |
| 484 * allocates a AVCodecContext and set it to defaults. | |
| 485 * this can be deallocated by simply calling free() | |
| 486 */ | |
| 703 | 487 AVCodecContext *avcodec_alloc_context(void){ |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
488 AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext)); |
| 681 | 489 |
| 490 if(avctx==NULL) return NULL; | |
| 491 | |
| 492 avcodec_get_context_defaults(avctx); | |
| 493 | |
| 494 return avctx; | |
| 495 } | |
| 496 | |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
497 void avcodec_get_frame_defaults(AVFrame *pic){ |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
498 memset(pic, 0, sizeof(AVFrame)); |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
499 |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
500 pic->pts= AV_NOPTS_VALUE; |
| 2488 | 501 pic->key_frame= 1; |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
502 } |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
503 |
| 903 | 504 /** |
| 925 | 505 * allocates a AVPFrame and set it to defaults. |
| 903 | 506 * this can be deallocated by simply calling free() |
| 507 */ | |
| 925 | 508 AVFrame *avcodec_alloc_frame(void){ |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
509 AVFrame *pic= av_malloc(sizeof(AVFrame)); |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
510 |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
511 if(pic==NULL) return NULL; |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
512 |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
513 avcodec_get_frame_defaults(pic); |
| 903 | 514 |
| 515 return pic; | |
| 516 } | |
| 517 | |
| 0 | 518 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
| 519 { | |
| 2806 | 520 int ret= -1; |
| 521 | |
| 522 entangled_thread_counter++; | |
| 523 if(entangled_thread_counter != 1){ | |
| 524 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
| 525 goto end; | |
| 526 } | |
| 0 | 527 |
|
1456
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
528 if(avctx->codec) |
| 2806 | 529 goto end; |
|
1456
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
530 |
| 0 | 531 avctx->codec = codec; |
| 927 | 532 avctx->codec_id = codec->id; |
| 0 | 533 avctx->frame_number = 0; |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
534 if (codec->priv_data_size > 0) { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
535 avctx->priv_data = av_mallocz(codec->priv_data_size); |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
536 if (!avctx->priv_data) |
| 2806 | 537 goto end; |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
538 } else { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
539 avctx->priv_data = NULL; |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
540 } |
| 2270 | 541 |
| 542 if(avctx->coded_width && avctx->coded_height) | |
| 543 avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height); | |
| 544 else if(avctx->width && avctx->height) | |
| 545 avcodec_set_dimensions(avctx, avctx->width, avctx->height); | |
| 546 | |
| 2422 | 547 if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)){ |
| 548 av_freep(&avctx->priv_data); | |
| 2806 | 549 goto end; |
| 2422 | 550 } |
| 551 | |
| 0 | 552 ret = avctx->codec->init(avctx); |
| 553 if (ret < 0) { | |
| 394 | 554 av_freep(&avctx->priv_data); |
| 2806 | 555 goto end; |
| 0 | 556 } |
| 2806 | 557 ret=0; |
| 558 end: | |
| 559 entangled_thread_counter--; | |
| 560 return ret; | |
| 0 | 561 } |
| 562 | |
| 1064 | 563 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 0 | 564 const short *samples) |
| 565 { | |
| 2422 | 566 if(buf_size < FF_MIN_BUFFER_SIZE && 0){ |
| 567 av_log(avctx, AV_LOG_ERROR, "buffer smaller then minimum size\n"); | |
| 568 return -1; | |
| 569 } | |
| 2091 | 570 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){ |
| 571 int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
| 572 avctx->frame_number++; | |
| 573 return ret; | |
| 574 }else | |
| 575 return 0; | |
| 0 | 576 } |
| 577 | |
| 1064 | 578 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 925 | 579 const AVFrame *pict) |
| 0 | 580 { |
| 2422 | 581 if(buf_size < FF_MIN_BUFFER_SIZE){ |
| 582 av_log(avctx, AV_LOG_ERROR, "buffer smaller then minimum size\n"); | |
| 583 return -1; | |
| 584 } | |
| 585 if(avcodec_check_dimensions(avctx,avctx->width,avctx->height)) | |
| 586 return -1; | |
| 2091 | 587 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){ |
| 588 int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
| 589 avctx->frame_number++; | |
| 2764 | 590 emms_c(); //needed to avoid an emms_c() call before every return; |
| 814 | 591 |
| 2091 | 592 return ret; |
| 593 }else | |
| 594 return 0; | |
| 0 | 595 } |
| 596 | |
| 2756 | 597 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 598 const AVSubtitle *sub) | |
| 599 { | |
| 600 int ret; | |
| 601 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)sub); | |
| 602 avctx->frame_number++; | |
| 603 return ret; | |
| 604 } | |
| 605 | |
| 1249 | 606 /** |
| 607 * decode a frame. | |
| 608 * @param buf bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE larger then the actual read bytes | |
| 609 * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end | |
| 610 * @param buf_size the size of the buffer in bytes | |
| 611 * @param got_picture_ptr zero if no frame could be decompressed, Otherwise, it is non zero | |
| 612 * @return -1 if error, otherwise return the number of | |
| 613 * bytes used. | |
| 614 */ | |
| 925 | 615 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
| 0 | 616 int *got_picture_ptr, |
| 1064 | 617 uint8_t *buf, int buf_size) |
| 0 | 618 { |
| 619 int ret; | |
| 903 | 620 |
| 2028 | 621 *got_picture_ptr= 0; |
| 2422 | 622 if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)) |
| 623 return -1; | |
| 2453 | 624 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){ |
| 625 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, | |
| 626 buf, buf_size); | |
| 814 | 627 |
| 2764 | 628 emms_c(); //needed to avoid an emms_c() call before every return; |
| 903 | 629 |
| 2453 | 630 if (*got_picture_ptr) |
| 631 avctx->frame_number++; | |
| 632 }else | |
| 633 ret= 0; | |
| 634 | |
| 0 | 635 return ret; |
| 636 } | |
| 637 | |
| 638 /* decode an audio frame. return -1 if error, otherwise return the | |
| 639 *number of bytes used. If no frame could be decompressed, | |
| 640 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
| 641 *size in BYTES. */ | |
| 1064 | 642 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
| 0 | 643 int *frame_size_ptr, |
| 1064 | 644 uint8_t *buf, int buf_size) |
| 0 | 645 { |
| 646 int ret; | |
| 647 | |
| 2028 | 648 *frame_size_ptr= 0; |
| 2791 | 649 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){ |
| 650 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
| 651 buf, buf_size); | |
| 652 avctx->frame_number++; | |
| 653 }else | |
| 654 ret= 0; | |
| 0 | 655 return ret; |
| 656 } | |
| 657 | |
| 2756 | 658 /* decode a subtitle message. return -1 if error, otherwise return the |
| 659 *number of bytes used. If no subtitle could be decompressed, | |
| 660 *got_sub_ptr is zero. Otherwise, the subtitle is stored in *sub. */ | |
| 661 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub, | |
| 662 int *got_sub_ptr, | |
| 663 const uint8_t *buf, int buf_size) | |
| 664 { | |
| 665 int ret; | |
| 666 | |
| 667 *got_sub_ptr = 0; | |
| 668 ret = avctx->codec->decode(avctx, sub, got_sub_ptr, | |
| 669 (uint8_t *)buf, buf_size); | |
| 670 if (*got_sub_ptr) | |
| 671 avctx->frame_number++; | |
| 672 return ret; | |
| 673 } | |
| 674 | |
| 0 | 675 int avcodec_close(AVCodecContext *avctx) |
| 676 { | |
| 2806 | 677 entangled_thread_counter++; |
| 678 if(entangled_thread_counter != 1){ | |
| 679 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
| 680 entangled_thread_counter--; | |
| 681 return -1; | |
| 682 } | |
| 683 | |
| 0 | 684 if (avctx->codec->close) |
| 685 avctx->codec->close(avctx); | |
| 1994 | 686 avcodec_default_free_buffers(avctx); |
| 394 | 687 av_freep(&avctx->priv_data); |
| 0 | 688 avctx->codec = NULL; |
| 2806 | 689 entangled_thread_counter--; |
| 0 | 690 return 0; |
| 691 } | |
| 692 | |
| 693 AVCodec *avcodec_find_encoder(enum CodecID id) | |
| 694 { | |
| 695 AVCodec *p; | |
| 696 p = first_avcodec; | |
| 697 while (p) { | |
| 698 if (p->encode != NULL && p->id == id) | |
| 699 return p; | |
| 700 p = p->next; | |
| 701 } | |
| 702 return NULL; | |
| 703 } | |
| 704 | |
| 177 | 705 AVCodec *avcodec_find_encoder_by_name(const char *name) |
| 706 { | |
| 707 AVCodec *p; | |
| 708 p = first_avcodec; | |
| 709 while (p) { | |
| 710 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
| 711 return p; | |
| 712 p = p->next; | |
| 713 } | |
| 714 return NULL; | |
| 715 } | |
| 716 | |
| 0 | 717 AVCodec *avcodec_find_decoder(enum CodecID id) |
| 718 { | |
| 719 AVCodec *p; | |
| 720 p = first_avcodec; | |
| 721 while (p) { | |
| 722 if (p->decode != NULL && p->id == id) | |
| 723 return p; | |
| 724 p = p->next; | |
| 725 } | |
| 726 return NULL; | |
| 727 } | |
| 728 | |
| 729 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
| 730 { | |
| 731 AVCodec *p; | |
| 732 p = first_avcodec; | |
| 733 while (p) { | |
| 734 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
| 735 return p; | |
| 736 p = p->next; | |
| 737 } | |
| 738 return NULL; | |
| 739 } | |
| 740 | |
| 741 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
| 742 { | |
| 743 const char *codec_name; | |
| 744 AVCodec *p; | |
| 745 char buf1[32]; | |
| 337 | 746 char channels_str[100]; |
| 92 | 747 int bitrate; |
| 0 | 748 |
| 749 if (encode) | |
| 750 p = avcodec_find_encoder(enc->codec_id); | |
| 751 else | |
| 752 p = avcodec_find_decoder(enc->codec_id); | |
| 753 | |
| 754 if (p) { | |
| 755 codec_name = p->name; | |
|
1449
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
756 if (!encode && enc->codec_id == CODEC_ID_MP3) { |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
757 if (enc->sub_id == 2) |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
758 codec_name = "mp2"; |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
759 else if (enc->sub_id == 1) |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
760 codec_name = "mp1"; |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
761 } |
|
1582
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
762 } else if (enc->codec_id == CODEC_ID_MPEG2TS) { |
|
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
763 /* fake mpeg2 transport stream codec (currently not |
|
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
764 registered) */ |
|
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
765 codec_name = "mpeg2ts"; |
| 0 | 766 } else if (enc->codec_name[0] != '\0') { |
| 767 codec_name = enc->codec_name; | |
| 768 } else { | |
| 769 /* output avi tags */ | |
| 770 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
| 771 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
| 772 enc->codec_tag & 0xff, | |
| 773 (enc->codec_tag >> 8) & 0xff, | |
| 774 (enc->codec_tag >> 16) & 0xff, | |
| 775 (enc->codec_tag >> 24) & 0xff); | |
| 776 } else { | |
| 777 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
| 778 } | |
| 779 codec_name = buf1; | |
| 780 } | |
| 781 | |
| 782 switch(enc->codec_type) { | |
| 783 case CODEC_TYPE_VIDEO: | |
| 784 snprintf(buf, buf_size, | |
| 785 "Video: %s%s", | |
| 1389 | 786 codec_name, enc->mb_decision ? " (hq)" : ""); |
|
2636
2344c6713011
print pix_fmt if its known instead of if the raw codec is used
michael
parents:
2635
diff
changeset
|
787 if (enc->pix_fmt != PIX_FMT_NONE) { |
| 55 | 788 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 789 ", %s", | |
|
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
790 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
| 55 | 791 } |
| 0 | 792 if (enc->width) { |
| 793 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 794 ", %dx%d, %0.2f fps", | |
| 795 enc->width, enc->height, | |
| 2637 | 796 1/av_q2d(enc->time_base)); |
| 0 | 797 } |
| 741 | 798 if (encode) { |
| 799 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 800 ", q=%d-%d", enc->qmin, enc->qmax); | |
| 801 } | |
| 92 | 802 bitrate = enc->bit_rate; |
| 0 | 803 break; |
| 804 case CODEC_TYPE_AUDIO: | |
| 805 snprintf(buf, buf_size, | |
| 806 "Audio: %s", | |
| 807 codec_name); | |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
808 switch (enc->channels) { |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
809 case 1: |
| 337 | 810 strcpy(channels_str, "mono"); |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
811 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
812 case 2: |
| 337 | 813 strcpy(channels_str, "stereo"); |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
814 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
815 case 6: |
| 337 | 816 strcpy(channels_str, "5:1"); |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
817 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
818 default: |
| 2423 | 819 snprintf(channels_str, sizeof(channels_str), "%d channels", enc->channels); |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
820 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
821 } |
| 0 | 822 if (enc->sample_rate) { |
| 823 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 824 ", %d Hz, %s", | |
| 825 enc->sample_rate, | |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
826 channels_str); |
| 0 | 827 } |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
828 |
| 92 | 829 /* for PCM codecs, compute bitrate directly */ |
| 830 switch(enc->codec_id) { | |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
831 case CODEC_ID_PCM_S32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
832 case CODEC_ID_PCM_S32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
833 case CODEC_ID_PCM_U32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
834 case CODEC_ID_PCM_U32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
835 bitrate = enc->sample_rate * enc->channels * 32; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
836 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
837 case CODEC_ID_PCM_S24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
838 case CODEC_ID_PCM_S24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
839 case CODEC_ID_PCM_U24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
840 case CODEC_ID_PCM_U24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
841 case CODEC_ID_PCM_S24DAUD: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
842 bitrate = enc->sample_rate * enc->channels * 24; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2840
diff
changeset
|
843 break; |
| 92 | 844 case CODEC_ID_PCM_S16LE: |
| 845 case CODEC_ID_PCM_S16BE: | |
| 846 case CODEC_ID_PCM_U16LE: | |
| 847 case CODEC_ID_PCM_U16BE: | |
| 94 | 848 bitrate = enc->sample_rate * enc->channels * 16; |
| 92 | 849 break; |
| 850 case CODEC_ID_PCM_S8: | |
| 851 case CODEC_ID_PCM_U8: | |
| 852 case CODEC_ID_PCM_ALAW: | |
| 853 case CODEC_ID_PCM_MULAW: | |
| 94 | 854 bitrate = enc->sample_rate * enc->channels * 8; |
| 92 | 855 break; |
| 856 default: | |
| 857 bitrate = enc->bit_rate; | |
| 858 break; | |
| 859 } | |
| 0 | 860 break; |
|
1582
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
861 case CODEC_TYPE_DATA: |
|
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
862 snprintf(buf, buf_size, "Data: %s", codec_name); |
|
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
863 bitrate = enc->bit_rate; |
|
ece0ad14a35d
added fake codec CODEC_ID_MPEG2TS of type CODEC_TYPE_DATA (needed for simpler handling of raw transport streams in ffserver and RTP - better solutions are welcomed)
bellard
parents:
1549
diff
changeset
|
864 break; |
| 2756 | 865 case CODEC_TYPE_SUBTITLE: |
| 866 snprintf(buf, buf_size, "Subtitle: %s", codec_name); | |
| 867 bitrate = enc->bit_rate; | |
| 868 break; | |
| 0 | 869 default: |
| 2281 | 870 snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type); |
| 871 return; | |
| 0 | 872 } |
| 741 | 873 if (encode) { |
| 874 if (enc->flags & CODEC_FLAG_PASS1) | |
| 875 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 876 ", pass 1"); | |
| 877 if (enc->flags & CODEC_FLAG_PASS2) | |
| 878 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 879 ", pass 2"); | |
| 880 } | |
| 92 | 881 if (bitrate != 0) { |
| 0 | 882 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 92 | 883 ", %d kb/s", bitrate / 1000); |
| 0 | 884 } |
| 885 } | |
| 886 | |
| 362 | 887 unsigned avcodec_version( void ) |
| 888 { | |
| 889 return LIBAVCODEC_VERSION_INT; | |
| 890 } | |
| 55 | 891 |
| 379 | 892 unsigned avcodec_build( void ) |
| 893 { | |
| 894 return LIBAVCODEC_BUILD; | |
| 895 } | |
| 896 | |
| 0 | 897 /* must be called before any other functions */ |
| 898 void avcodec_init(void) | |
| 899 { | |
|
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
900 static int inited = 0; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
901 |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
902 if (inited != 0) |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
903 return; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
904 inited = 1; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
905 |
| 1201 | 906 dsputil_static_init(); |
| 0 | 907 } |
| 908 | |
| 1368 | 909 /** |
| 910 * Flush buffers, should be called when seeking or when swicthing to a different stream. | |
| 911 */ | |
| 341 | 912 void avcodec_flush_buffers(AVCodecContext *avctx) |
| 913 { | |
| 1368 | 914 if(avctx->codec->flush) |
| 915 avctx->codec->flush(avctx); | |
| 341 | 916 } |
| 917 | |
| 2231 | 918 void avcodec_default_free_buffers(AVCodecContext *s){ |
| 1214 | 919 int i, j; |
| 920 | |
| 921 if(s->internal_buffer==NULL) return; | |
| 922 | |
| 923 for(i=0; i<INTERNAL_BUFFER_SIZE; i++){ | |
| 924 InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 925 for(j=0; j<4; j++){ | |
| 926 av_freep(&buf->base[j]); | |
| 927 buf->data[j]= NULL; | |
| 928 } | |
| 929 } | |
| 930 av_freep(&s->internal_buffer); | |
| 931 | |
| 932 s->internal_buffer_count=0; | |
| 933 } | |
| 934 | |
| 1264 | 935 char av_get_pict_type_char(int pict_type){ |
| 936 switch(pict_type){ | |
| 937 case I_TYPE: return 'I'; | |
| 938 case P_TYPE: return 'P'; | |
| 939 case B_TYPE: return 'B'; | |
| 940 case S_TYPE: return 'S'; | |
| 941 case SI_TYPE:return 'i'; | |
| 942 case SP_TYPE:return 'p'; | |
| 943 default: return '?'; | |
| 944 } | |
| 945 } | |
| 946 | |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
947 /* av_log API */ |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
948 |
| 2733 | 949 static int av_log_level = AV_LOG_INFO; |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
950 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
951 static void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
952 { |
| 1600 | 953 static int print_prefix=1; |
| 1856 | 954 AVClass* avc= ptr ? *(AVClass**)ptr : NULL; |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
955 if(level>av_log_level) |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
956 return; |
|
1823
a660ef952580
(f)printf() is disallowed in libavcodec, compilation will fail now if its used, except that codecs which where added after the printf->av_log change which did ignore av_log() and used prinf are now silent and wont print anything, they should be changed to use av_log, i could do that, but its better if the orginal developer decides which AV_LOG level each message should get
michael
parents:
1799
diff
changeset
|
957 #undef fprintf |
| 1856 | 958 if(print_prefix && avc) { |
| 959 fprintf(stderr, "[%s @ %p]", avc->item_name(ptr), avc); | |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
960 } |
|
1823
a660ef952580
(f)printf() is disallowed in libavcodec, compilation will fail now if its used, except that codecs which where added after the printf->av_log change which did ignore av_log() and used prinf are now silent and wont print anything, they should be changed to use av_log, i could do that, but its better if the orginal developer decides which AV_LOG level each message should get
michael
parents:
1799
diff
changeset
|
961 #define fprintf please_use_av_log |
| 1600 | 962 |
| 1776 | 963 print_prefix= strstr(fmt, "\n") != NULL; |
| 1600 | 964 |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
965 vfprintf(stderr, fmt, vl); |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
966 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
967 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
968 static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback; |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
969 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
970 void av_log(void* avcl, int level, const char *fmt, ...) |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
971 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
972 va_list vl; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
973 va_start(vl, fmt); |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
974 av_vlog(avcl, level, fmt, vl); |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
975 va_end(vl); |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
976 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
977 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
978 void av_vlog(void* avcl, int level, const char *fmt, va_list vl) |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
979 { |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
980 av_log_callback(avcl, level, fmt, vl); |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
981 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
982 |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
983 int av_log_get_level(void) |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
984 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
985 return av_log_level; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
986 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
987 |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
988 void av_log_set_level(int level) |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
989 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
990 av_log_level = level; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
991 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
992 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
993 void av_log_set_callback(void (*callback)(void*, int, const char*, va_list)) |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
994 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
995 av_log_callback = callback; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
996 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
997 |
|
2362
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2324
diff
changeset
|
998 #if !defined(HAVE_THREADS) |
|
2013
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
999 int avcodec_thread_init(AVCodecContext *s, int thread_count){ |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
1000 return -1; |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
1001 } |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
1002 #endif |
| 2676 | 1003 |
| 1004 unsigned int av_xiphlacing(unsigned char *s, unsigned int v) | |
| 1005 { | |
| 1006 unsigned int n = 0; | |
| 1007 | |
| 1008 while(v >= 0xff) { | |
| 1009 *s++ = 0xff; | |
| 1010 v -= 0xff; | |
| 1011 n++; | |
| 1012 } | |
| 1013 *s = v; | |
| 1014 n++; | |
| 1015 return n; | |
| 1016 } |
