Mercurial > libavcodec.hg
annotate utils.c @ 2817:b128802eb77b libavcodec
libavutil: Utility code from libavcodec moved to a separate library.
| author | al |
|---|---|
| date | Mon, 01 Aug 2005 20:07:05 +0000 |
| parents | af3a36e20010 |
| children | 22eec5a1b043 |
| 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 /** |
| 147 * Frees memory and sets the pointer to NULL. | |
| 148 * @param arg pointer to the pointer which should be freed | |
| 149 */ | |
| 150 void av_freep(void *arg) | |
| 400 | 151 { |
| 1854 | 152 void **ptr= (void**)arg; |
| 400 | 153 av_free(*ptr); |
| 154 *ptr = NULL; | |
| 155 } | |
| 156 | |
| 0 | 157 /* 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
|
158 AVCodec *first_avcodec = NULL; |
| 0 | 159 |
| 160 void register_avcodec(AVCodec *format) | |
| 161 { | |
| 162 AVCodec **p; | |
| 163 p = &first_avcodec; | |
| 164 while (*p != NULL) p = &(*p)->next; | |
| 165 *p = format; | |
| 166 format->next = NULL; | |
| 167 } | |
| 168 | |
| 2270 | 169 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){ |
| 170 s->coded_width = width; | |
| 171 s->coded_height= height; | |
| 172 s->width = -((-width )>>s->lowres); | |
| 173 s->height= -((-height)>>s->lowres); | |
| 174 } | |
| 175 | |
| 1214 | 176 typedef struct InternalBuffer{ |
| 903 | 177 int last_pic_num; |
| 1214 | 178 uint8_t *base[4]; |
| 903 | 179 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
|
180 int linesize[4]; |
| 1214 | 181 }InternalBuffer; |
| 182 | |
| 183 #define INTERNAL_BUFFER_SIZE 32 | |
| 903 | 184 |
| 1538 | 185 #define ALIGN(x, a) (((x)+(a)-1)&~((a)-1)) |
| 186 | |
| 187 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){ | |
| 188 int w_align= 1; | |
| 189 int h_align= 1; | |
| 190 | |
| 191 switch(s->pix_fmt){ | |
| 192 case PIX_FMT_YUV420P: | |
| 193 case PIX_FMT_YUV422: | |
|
2137
ef47c0b1ff28
UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents:
2125
diff
changeset
|
194 case PIX_FMT_UYVY422: |
| 1538 | 195 case PIX_FMT_YUV422P: |
| 196 case PIX_FMT_YUV444P: | |
| 197 case PIX_FMT_GRAY8: | |
| 198 case PIX_FMT_YUVJ420P: | |
| 199 case PIX_FMT_YUVJ422P: | |
| 200 case PIX_FMT_YUVJ444P: | |
| 201 w_align= 16; //FIXME check for non mpeg style codecs and use less alignment | |
| 202 h_align= 16; | |
| 203 break; | |
| 204 case PIX_FMT_YUV411P: | |
| 2309 | 205 case PIX_FMT_UYVY411: |
| 1538 | 206 w_align=32; |
| 207 h_align=8; | |
| 208 break; | |
| 209 case PIX_FMT_YUV410P: | |
| 210 if(s->codec_id == CODEC_ID_SVQ1){ | |
| 211 w_align=64; | |
| 212 h_align=64; | |
| 213 } | |
| 2104 | 214 case PIX_FMT_RGB555: |
| 215 if(s->codec_id == CODEC_ID_RPZA){ | |
| 216 w_align=4; | |
| 217 h_align=4; | |
| 218 } | |
| 219 case PIX_FMT_PAL8: | |
| 220 if(s->codec_id == CODEC_ID_SMC){ | |
| 221 w_align=4; | |
| 222 h_align=4; | |
| 223 } | |
| 1538 | 224 break; |
|
2418
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
225 case PIX_FMT_BGR24: |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
226 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
|
227 w_align=4; |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
228 h_align=4; |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
229 } |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
230 break; |
| 1538 | 231 default: |
| 232 w_align= 1; | |
| 233 h_align= 1; | |
| 234 break; | |
| 235 } | |
| 236 | |
| 237 *width = ALIGN(*width , w_align); | |
| 238 *height= ALIGN(*height, h_align); | |
| 239 } | |
| 240 | |
| 2422 | 241 int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){ |
| 242 if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4) | |
| 243 return 0; | |
| 244 | |
| 245 av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h); | |
| 246 return -1; | |
| 247 } | |
| 248 | |
| 925 | 249 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 250 int i; |
| 1538 | 251 int w= s->width; |
| 252 int h= s->height; | |
| 1214 | 253 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
|
254 int *picture_number; |
| 2422 | 255 |
| 924 | 256 assert(pic->data[0]==NULL); |
| 1214 | 257 assert(INTERNAL_BUFFER_SIZE > s->internal_buffer_count); |
| 903 | 258 |
| 2422 | 259 if(avcodec_check_dimensions(s,w,h)) |
| 260 return -1; | |
| 261 | |
| 1214 | 262 if(s->internal_buffer==NULL){ |
| 263 s->internal_buffer= av_mallocz(INTERNAL_BUFFER_SIZE*sizeof(InternalBuffer)); | |
| 264 } | |
| 265 #if 0 | |
| 266 s->internal_buffer= av_fast_realloc( | |
| 267 s->internal_buffer, | |
| 268 &s->internal_buffer_size, | |
| 269 sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/ | |
| 270 ); | |
| 271 #endif | |
| 272 | |
| 273 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
|
274 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
|
275 (*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
|
276 |
| 1214 | 277 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
|
278 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
|
279 buf->last_pic_num= *picture_number; |
| 903 | 280 }else{ |
| 1538 | 281 int h_chroma_shift, v_chroma_shift; |
| 2324 | 282 int pixel_size; |
| 903 | 283 |
| 284 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); | |
| 1538 | 285 |
| 903 | 286 switch(s->pix_fmt){ |
| 1291 | 287 case PIX_FMT_RGB555: |
| 288 case PIX_FMT_RGB565: | |
| 903 | 289 case PIX_FMT_YUV422: |
|
2137
ef47c0b1ff28
UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents:
2125
diff
changeset
|
290 case PIX_FMT_UYVY422: |
| 903 | 291 pixel_size=2; |
| 292 break; | |
| 293 case PIX_FMT_RGB24: | |
| 294 case PIX_FMT_BGR24: | |
| 295 pixel_size=3; | |
| 296 break; | |
| 297 case PIX_FMT_RGBA32: | |
| 298 pixel_size=4; | |
| 299 break; | |
| 300 default: | |
| 301 pixel_size=1; | |
| 302 } | |
| 1538 | 303 |
| 304 avcodec_align_dimensions(s, &w, &h); | |
| 305 | |
| 903 | 306 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ |
| 307 w+= EDGE_WIDTH*2; | |
| 308 h+= EDGE_WIDTH*2; | |
| 309 } | |
| 310 | |
| 1214 | 311 buf->last_pic_num= -256*256*256*64; |
| 903 | 312 |
| 313 for(i=0; i<3; i++){ | |
| 1165 | 314 const int h_shift= i==0 ? 0 : h_chroma_shift; |
| 315 const int v_shift= i==0 ? 0 : v_chroma_shift; | |
| 903 | 316 |
|
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
|
317 //FIXME next ensures that linesize= 2^x uvlinesize, thats needed because some MC code assumes it |
| 2324 | 318 buf->linesize[i]= ALIGN(pixel_size*w>>h_shift, STRIDE_ALIGN<<(h_chroma_shift-h_shift)); |
| 903 | 319 |
|
2426
1ee03f2a6cd5
av_malloc vs av_mallocz patch by (Kurosu <kurosu inforezo org>)
michael
parents:
2423
diff
changeset
|
320 buf->base[i]= av_malloc((buf->linesize[i]*h>>v_shift)+16); //FIXME 16 |
| 1214 | 321 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
|
322 memset(buf->base[i], 128, buf->linesize[i]*h>>v_shift); |
| 903 | 323 |
| 324 if(s->flags&CODEC_FLAG_EMU_EDGE) | |
| 1214 | 325 buf->data[i] = buf->base[i]; |
| 903 | 326 else |
| 2324 | 327 buf->data[i] = buf->base[i] + ALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), STRIDE_ALIGN); |
| 903 | 328 } |
| 329 pic->age= 256*256*256*64; | |
| 330 } | |
|
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
|
331 pic->type= FF_BUFFER_TYPE_INTERNAL; |
| 903 | 332 |
| 1214 | 333 for(i=0; i<4; i++){ |
| 334 pic->base[i]= buf->base[i]; | |
| 335 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
|
336 pic->linesize[i]= buf->linesize[i]; |
| 1214 | 337 } |
| 338 s->internal_buffer_count++; | |
| 339 | |
| 903 | 340 return 0; |
| 341 } | |
| 342 | |
| 925 | 343 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 344 int i; |
| 1214 | 345 InternalBuffer *buf, *last, temp; |
| 346 | |
| 924 | 347 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
| 1396 | 348 assert(s->internal_buffer_count); |
| 1214 | 349 |
| 1455 | 350 buf = NULL; /* avoids warning */ |
| 1214 | 351 for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize |
| 352 buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 353 if(buf->data[0] == pic->data[0]) | |
| 354 break; | |
| 355 } | |
| 356 assert(i < s->internal_buffer_count); | |
| 357 s->internal_buffer_count--; | |
| 358 last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
| 359 | |
| 360 temp= *buf; | |
| 361 *buf= *last; | |
| 362 *last= temp; | |
| 363 | |
| 364 for(i=0; i<3; i++){ | |
| 903 | 365 pic->data[i]=NULL; |
| 1214 | 366 // pic->base[i]=NULL; |
| 367 } | |
| 903 | 368 //printf("R%X\n", pic->opaque); |
| 369 } | |
| 370 | |
| 1630 | 371 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){ |
| 372 AVFrame temp_pic; | |
| 373 int i; | |
| 374 | |
| 375 /* If no picture return a new buffer */ | |
| 376 if(pic->data[0] == NULL) { | |
| 377 /* We will copy from buffer, so must be readable */ | |
| 378 pic->buffer_hints |= FF_BUFFER_HINTS_READABLE; | |
| 379 return s->get_buffer(s, pic); | |
| 380 } | |
| 381 | |
| 382 /* If internal buffer type return the same buffer */ | |
| 383 if(pic->type == FF_BUFFER_TYPE_INTERNAL) | |
| 384 return 0; | |
| 385 | |
| 386 /* | |
| 387 * Not internal type and reget_buffer not overridden, emulate cr buffer | |
| 388 */ | |
| 389 temp_pic = *pic; | |
| 390 for(i = 0; i < 4; i++) | |
| 391 pic->data[i] = pic->base[i] = NULL; | |
| 392 pic->opaque = NULL; | |
| 393 /* Allocate new frame */ | |
| 394 if (s->get_buffer(s, pic)) | |
| 395 return -1; | |
| 396 /* Copy image data from old buffer to new buffer */ | |
| 397 img_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width, | |
| 398 s->height); | |
| 399 s->release_buffer(s, &temp_pic); // Release old frame | |
| 400 return 0; | |
| 401 } | |
| 402 | |
| 1799 | 403 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void **arg, int *ret, int count){ |
| 404 int i; | |
| 405 | |
| 406 for(i=0; i<count; i++){ | |
| 407 int r= func(c, arg[i]); | |
| 408 if(ret) ret[i]= r; | |
| 409 } | |
| 410 return 0; | |
| 411 } | |
| 412 | |
| 1858 | 413 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat * fmt){ |
| 998 | 414 return fmt[0]; |
| 415 } | |
| 416 | |
| 1856 | 417 static const char* context_to_name(void* ptr) { |
| 418 AVCodecContext *avc= ptr; | |
| 419 | |
| 420 if(avc && avc->codec && avc->codec->name) | |
| 421 return avc->codec->name; | |
| 422 else | |
| 423 return "NULL"; | |
| 424 } | |
| 425 | |
| 426 static AVClass av_codec_context_class = { "AVCodecContext", context_to_name }; | |
| 427 | |
| 681 | 428 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
|
429 memset(s, 0, sizeof(AVCodecContext)); |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
430 |
| 1856 | 431 s->av_class= &av_codec_context_class; |
| 685 | 432 s->bit_rate= 800*1000; |
| 433 s->bit_rate_tolerance= s->bit_rate*10; | |
| 681 | 434 s->qmin= 2; |
| 435 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
|
436 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
|
437 s->mb_lmax= FF_QP2LAMBDA * 31; |
| 681 | 438 s->rc_eq= "tex^qComp"; |
| 439 s->qcompress= 0.5; | |
| 685 | 440 s->max_qdiff= 3; |
| 441 s->b_quant_factor=1.25; | |
| 442 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
|
443 s->i_quant_factor=-0.8; |
| 685 | 444 s->i_quant_offset=0.0; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
445 s->error_concealment= 3; |
| 762 | 446 s->error_resilience= 1; |
|
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
742
diff
changeset
|
447 s->workaround_bugs= FF_BUG_AUTODETECT; |
| 2637 | 448 s->time_base= (AVRational){0,1}; |
| 762 | 449 s->gop_size= 50; |
| 450 s->me_method= ME_EPZS; | |
| 903 | 451 s->get_buffer= avcodec_default_get_buffer; |
| 452 s->release_buffer= avcodec_default_release_buffer; | |
| 998 | 453 s->get_format= avcodec_default_get_format; |
| 1799 | 454 s->execute= avcodec_default_execute; |
| 455 s->thread_count=1; | |
| 954 | 456 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
|
457 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
|
458 s->lmax= FF_QP2LAMBDA * s->qmax; |
| 1548 | 459 s->sample_aspect_ratio= (AVRational){0,1}; |
| 1730 | 460 s->ildct_cmp= FF_CMP_VSAD; |
| 2167 | 461 s->profile= FF_PROFILE_UNKNOWN; |
| 462 s->level= FF_LEVEL_UNKNOWN; | |
| 2584 | 463 s->me_penalty_compensation= 256; |
| 2635 | 464 s->pix_fmt= PIX_FMT_NONE; |
| 1150 | 465 |
| 466 s->intra_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
| 467 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
|
468 s->palctrl = NULL; |
| 1630 | 469 s->reget_buffer= avcodec_default_reget_buffer; |
| 681 | 470 } |
| 471 | |
| 472 /** | |
| 473 * allocates a AVCodecContext and set it to defaults. | |
| 474 * this can be deallocated by simply calling free() | |
| 475 */ | |
| 703 | 476 AVCodecContext *avcodec_alloc_context(void){ |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
477 AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext)); |
| 681 | 478 |
| 479 if(avctx==NULL) return NULL; | |
| 480 | |
| 481 avcodec_get_context_defaults(avctx); | |
| 482 | |
| 483 return avctx; | |
| 484 } | |
| 485 | |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
486 void avcodec_get_frame_defaults(AVFrame *pic){ |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
487 memset(pic, 0, sizeof(AVFrame)); |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
488 |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
489 pic->pts= AV_NOPTS_VALUE; |
| 2488 | 490 pic->key_frame= 1; |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
491 } |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
492 |
| 903 | 493 /** |
| 925 | 494 * allocates a AVPFrame and set it to defaults. |
| 903 | 495 * this can be deallocated by simply calling free() |
| 496 */ | |
| 925 | 497 AVFrame *avcodec_alloc_frame(void){ |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
498 AVFrame *pic= av_malloc(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 if(pic==NULL) return NULL; |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
501 |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
502 avcodec_get_frame_defaults(pic); |
| 903 | 503 |
| 504 return pic; | |
| 505 } | |
| 506 | |
| 0 | 507 int avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
| 508 { | |
| 2806 | 509 int ret= -1; |
| 510 | |
| 511 entangled_thread_counter++; | |
| 512 if(entangled_thread_counter != 1){ | |
| 513 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
| 514 goto end; | |
| 515 } | |
| 0 | 516 |
|
1456
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
517 if(avctx->codec) |
| 2806 | 518 goto end; |
|
1456
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
519 |
| 0 | 520 avctx->codec = codec; |
| 927 | 521 avctx->codec_id = codec->id; |
| 0 | 522 avctx->frame_number = 0; |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
523 if (codec->priv_data_size > 0) { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
524 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
|
525 if (!avctx->priv_data) |
| 2806 | 526 goto end; |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
527 } else { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
528 avctx->priv_data = NULL; |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
529 } |
| 2270 | 530 |
| 531 if(avctx->coded_width && avctx->coded_height) | |
| 532 avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height); | |
| 533 else if(avctx->width && avctx->height) | |
| 534 avcodec_set_dimensions(avctx, avctx->width, avctx->height); | |
| 535 | |
| 2422 | 536 if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)){ |
| 537 av_freep(&avctx->priv_data); | |
| 2806 | 538 goto end; |
| 2422 | 539 } |
| 540 | |
| 0 | 541 ret = avctx->codec->init(avctx); |
| 542 if (ret < 0) { | |
| 394 | 543 av_freep(&avctx->priv_data); |
| 2806 | 544 goto end; |
| 0 | 545 } |
| 2806 | 546 ret=0; |
| 547 end: | |
| 548 entangled_thread_counter--; | |
| 549 return ret; | |
| 0 | 550 } |
| 551 | |
| 1064 | 552 int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 0 | 553 const short *samples) |
| 554 { | |
| 2422 | 555 if(buf_size < FF_MIN_BUFFER_SIZE && 0){ |
| 556 av_log(avctx, AV_LOG_ERROR, "buffer smaller then minimum size\n"); | |
| 557 return -1; | |
| 558 } | |
| 2091 | 559 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){ |
| 560 int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)samples); | |
| 561 avctx->frame_number++; | |
| 562 return ret; | |
| 563 }else | |
| 564 return 0; | |
| 0 | 565 } |
| 566 | |
| 1064 | 567 int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 925 | 568 const AVFrame *pict) |
| 0 | 569 { |
| 2422 | 570 if(buf_size < FF_MIN_BUFFER_SIZE){ |
| 571 av_log(avctx, AV_LOG_ERROR, "buffer smaller then minimum size\n"); | |
| 572 return -1; | |
| 573 } | |
| 574 if(avcodec_check_dimensions(avctx,avctx->width,avctx->height)) | |
| 575 return -1; | |
| 2091 | 576 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){ |
| 577 int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict); | |
| 578 avctx->frame_number++; | |
| 2764 | 579 emms_c(); //needed to avoid an emms_c() call before every return; |
| 814 | 580 |
| 2091 | 581 return ret; |
| 582 }else | |
| 583 return 0; | |
| 0 | 584 } |
| 585 | |
| 2756 | 586 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 587 const AVSubtitle *sub) | |
| 588 { | |
| 589 int ret; | |
| 590 ret = avctx->codec->encode(avctx, buf, buf_size, (void *)sub); | |
| 591 avctx->frame_number++; | |
| 592 return ret; | |
| 593 } | |
| 594 | |
| 1249 | 595 /** |
| 596 * decode a frame. | |
| 597 * @param buf bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE larger then the actual read bytes | |
| 598 * because some optimized bitstream readers read 32 or 64 bit at once and could read over the end | |
| 599 * @param buf_size the size of the buffer in bytes | |
| 600 * @param got_picture_ptr zero if no frame could be decompressed, Otherwise, it is non zero | |
| 601 * @return -1 if error, otherwise return the number of | |
| 602 * bytes used. | |
| 603 */ | |
| 925 | 604 int avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
| 0 | 605 int *got_picture_ptr, |
| 1064 | 606 uint8_t *buf, int buf_size) |
| 0 | 607 { |
| 608 int ret; | |
| 903 | 609 |
| 2028 | 610 *got_picture_ptr= 0; |
| 2422 | 611 if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)) |
| 612 return -1; | |
| 2453 | 613 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){ |
| 614 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, | |
| 615 buf, buf_size); | |
| 814 | 616 |
| 2764 | 617 emms_c(); //needed to avoid an emms_c() call before every return; |
| 903 | 618 |
| 2453 | 619 if (*got_picture_ptr) |
| 620 avctx->frame_number++; | |
| 621 }else | |
| 622 ret= 0; | |
| 623 | |
| 0 | 624 return ret; |
| 625 } | |
| 626 | |
| 627 /* decode an audio frame. return -1 if error, otherwise return the | |
| 628 *number of bytes used. If no frame could be decompressed, | |
| 629 *frame_size_ptr is zero. Otherwise, it is the decompressed frame | |
| 630 *size in BYTES. */ | |
| 1064 | 631 int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples, |
| 0 | 632 int *frame_size_ptr, |
| 1064 | 633 uint8_t *buf, int buf_size) |
| 0 | 634 { |
| 635 int ret; | |
| 636 | |
| 2028 | 637 *frame_size_ptr= 0; |
| 2791 | 638 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || buf_size){ |
| 639 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, | |
| 640 buf, buf_size); | |
| 641 avctx->frame_number++; | |
| 642 }else | |
| 643 ret= 0; | |
| 0 | 644 return ret; |
| 645 } | |
| 646 | |
| 2756 | 647 /* decode a subtitle message. return -1 if error, otherwise return the |
| 648 *number of bytes used. If no subtitle could be decompressed, | |
| 649 *got_sub_ptr is zero. Otherwise, the subtitle is stored in *sub. */ | |
| 650 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub, | |
| 651 int *got_sub_ptr, | |
| 652 const uint8_t *buf, int buf_size) | |
| 653 { | |
| 654 int ret; | |
| 655 | |
| 656 *got_sub_ptr = 0; | |
| 657 ret = avctx->codec->decode(avctx, sub, got_sub_ptr, | |
| 658 (uint8_t *)buf, buf_size); | |
| 659 if (*got_sub_ptr) | |
| 660 avctx->frame_number++; | |
| 661 return ret; | |
| 662 } | |
| 663 | |
| 0 | 664 int avcodec_close(AVCodecContext *avctx) |
| 665 { | |
| 2806 | 666 entangled_thread_counter++; |
| 667 if(entangled_thread_counter != 1){ | |
| 668 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
| 669 entangled_thread_counter--; | |
| 670 return -1; | |
| 671 } | |
| 672 | |
| 0 | 673 if (avctx->codec->close) |
| 674 avctx->codec->close(avctx); | |
| 1994 | 675 avcodec_default_free_buffers(avctx); |
| 394 | 676 av_freep(&avctx->priv_data); |
| 0 | 677 avctx->codec = NULL; |
| 2806 | 678 entangled_thread_counter--; |
| 0 | 679 return 0; |
| 680 } | |
| 681 | |
| 682 AVCodec *avcodec_find_encoder(enum CodecID id) | |
| 683 { | |
| 684 AVCodec *p; | |
| 685 p = first_avcodec; | |
| 686 while (p) { | |
| 687 if (p->encode != NULL && p->id == id) | |
| 688 return p; | |
| 689 p = p->next; | |
| 690 } | |
| 691 return NULL; | |
| 692 } | |
| 693 | |
| 177 | 694 AVCodec *avcodec_find_encoder_by_name(const char *name) |
| 695 { | |
| 696 AVCodec *p; | |
| 697 p = first_avcodec; | |
| 698 while (p) { | |
| 699 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
| 700 return p; | |
| 701 p = p->next; | |
| 702 } | |
| 703 return NULL; | |
| 704 } | |
| 705 | |
| 0 | 706 AVCodec *avcodec_find_decoder(enum CodecID id) |
| 707 { | |
| 708 AVCodec *p; | |
| 709 p = first_avcodec; | |
| 710 while (p) { | |
| 711 if (p->decode != NULL && p->id == id) | |
| 712 return p; | |
| 713 p = p->next; | |
| 714 } | |
| 715 return NULL; | |
| 716 } | |
| 717 | |
| 718 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
| 719 { | |
| 720 AVCodec *p; | |
| 721 p = first_avcodec; | |
| 722 while (p) { | |
| 723 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
| 724 return p; | |
| 725 p = p->next; | |
| 726 } | |
| 727 return NULL; | |
| 728 } | |
| 729 | |
| 730 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) | |
| 731 { | |
| 732 const char *codec_name; | |
| 733 AVCodec *p; | |
| 734 char buf1[32]; | |
| 337 | 735 char channels_str[100]; |
| 92 | 736 int bitrate; |
| 0 | 737 |
| 738 if (encode) | |
| 739 p = avcodec_find_encoder(enc->codec_id); | |
| 740 else | |
| 741 p = avcodec_find_decoder(enc->codec_id); | |
| 742 | |
| 743 if (p) { | |
| 744 codec_name = p->name; | |
|
1449
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
745 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
|
746 if (enc->sub_id == 2) |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
747 codec_name = "mp2"; |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
748 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
|
749 codec_name = "mp1"; |
|
7fbe89a76b73
update sub_id in mpegaudio decoding (might need same method as MPEG2VIDEO too ?)
bellard
parents:
1396
diff
changeset
|
750 } |
|
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
|
751 } 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
|
752 /* 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
|
753 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
|
754 codec_name = "mpeg2ts"; |
| 0 | 755 } else if (enc->codec_name[0] != '\0') { |
| 756 codec_name = enc->codec_name; | |
| 757 } else { | |
| 758 /* output avi tags */ | |
| 759 if (enc->codec_type == CODEC_TYPE_VIDEO) { | |
| 760 snprintf(buf1, sizeof(buf1), "%c%c%c%c", | |
| 761 enc->codec_tag & 0xff, | |
| 762 (enc->codec_tag >> 8) & 0xff, | |
| 763 (enc->codec_tag >> 16) & 0xff, | |
| 764 (enc->codec_tag >> 24) & 0xff); | |
| 765 } else { | |
| 766 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
| 767 } | |
| 768 codec_name = buf1; | |
| 769 } | |
| 770 | |
| 771 switch(enc->codec_type) { | |
| 772 case CODEC_TYPE_VIDEO: | |
| 773 snprintf(buf, buf_size, | |
| 774 "Video: %s%s", | |
| 1389 | 775 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
|
776 if (enc->pix_fmt != PIX_FMT_NONE) { |
| 55 | 777 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 778 ", %s", | |
|
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
779 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
| 55 | 780 } |
| 0 | 781 if (enc->width) { |
| 782 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 783 ", %dx%d, %0.2f fps", | |
| 784 enc->width, enc->height, | |
| 2637 | 785 1/av_q2d(enc->time_base)); |
| 0 | 786 } |
| 741 | 787 if (encode) { |
| 788 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 789 ", q=%d-%d", enc->qmin, enc->qmax); | |
| 790 } | |
| 92 | 791 bitrate = enc->bit_rate; |
| 0 | 792 break; |
| 793 case CODEC_TYPE_AUDIO: | |
| 794 snprintf(buf, buf_size, | |
| 795 "Audio: %s", | |
| 796 codec_name); | |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
797 switch (enc->channels) { |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
798 case 1: |
| 337 | 799 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
|
800 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
801 case 2: |
| 337 | 802 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
|
803 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
804 case 6: |
| 337 | 805 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
|
806 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
807 default: |
| 2423 | 808 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
|
809 break; |
|
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
810 } |
| 0 | 811 if (enc->sample_rate) { |
| 812 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 813 ", %d Hz, %s", | |
| 814 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
|
815 channels_str); |
| 0 | 816 } |
|
318
21697f35a9ca
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
pulento
parents:
315
diff
changeset
|
817 |
| 92 | 818 /* for PCM codecs, compute bitrate directly */ |
| 819 switch(enc->codec_id) { | |
| 820 case CODEC_ID_PCM_S16LE: | |
| 821 case CODEC_ID_PCM_S16BE: | |
| 822 case CODEC_ID_PCM_U16LE: | |
| 823 case CODEC_ID_PCM_U16BE: | |
| 94 | 824 bitrate = enc->sample_rate * enc->channels * 16; |
| 92 | 825 break; |
| 826 case CODEC_ID_PCM_S8: | |
| 827 case CODEC_ID_PCM_U8: | |
| 828 case CODEC_ID_PCM_ALAW: | |
| 829 case CODEC_ID_PCM_MULAW: | |
| 94 | 830 bitrate = enc->sample_rate * enc->channels * 8; |
| 92 | 831 break; |
| 832 default: | |
| 833 bitrate = enc->bit_rate; | |
| 834 break; | |
| 835 } | |
| 0 | 836 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
|
837 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
|
838 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
|
839 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
|
840 break; |
| 2756 | 841 case CODEC_TYPE_SUBTITLE: |
| 842 snprintf(buf, buf_size, "Subtitle: %s", codec_name); | |
| 843 bitrate = enc->bit_rate; | |
| 844 break; | |
| 0 | 845 default: |
| 2281 | 846 snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type); |
| 847 return; | |
| 0 | 848 } |
| 741 | 849 if (encode) { |
| 850 if (enc->flags & CODEC_FLAG_PASS1) | |
| 851 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 852 ", pass 1"); | |
| 853 if (enc->flags & CODEC_FLAG_PASS2) | |
| 854 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 855 ", pass 2"); | |
| 856 } | |
| 92 | 857 if (bitrate != 0) { |
| 0 | 858 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 92 | 859 ", %d kb/s", bitrate / 1000); |
| 0 | 860 } |
| 861 } | |
| 862 | |
| 362 | 863 unsigned avcodec_version( void ) |
| 864 { | |
| 865 return LIBAVCODEC_VERSION_INT; | |
| 866 } | |
| 55 | 867 |
| 379 | 868 unsigned avcodec_build( void ) |
| 869 { | |
| 870 return LIBAVCODEC_BUILD; | |
| 871 } | |
| 872 | |
| 0 | 873 /* must be called before any other functions */ |
| 874 void avcodec_init(void) | |
| 875 { | |
|
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
876 static int inited = 0; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
877 |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
878 if (inited != 0) |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
879 return; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
880 inited = 1; |
|
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
881 |
| 1201 | 882 dsputil_static_init(); |
| 0 | 883 } |
| 884 | |
| 1368 | 885 /** |
| 886 * Flush buffers, should be called when seeking or when swicthing to a different stream. | |
| 887 */ | |
| 341 | 888 void avcodec_flush_buffers(AVCodecContext *avctx) |
| 889 { | |
| 1368 | 890 if(avctx->codec->flush) |
| 891 avctx->codec->flush(avctx); | |
| 341 | 892 } |
| 893 | |
| 2231 | 894 void avcodec_default_free_buffers(AVCodecContext *s){ |
| 1214 | 895 int i, j; |
| 896 | |
| 897 if(s->internal_buffer==NULL) return; | |
| 898 | |
| 899 for(i=0; i<INTERNAL_BUFFER_SIZE; i++){ | |
| 900 InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 901 for(j=0; j<4; j++){ | |
| 902 av_freep(&buf->base[j]); | |
| 903 buf->data[j]= NULL; | |
| 904 } | |
| 905 } | |
| 906 av_freep(&s->internal_buffer); | |
| 907 | |
| 908 s->internal_buffer_count=0; | |
| 909 } | |
| 910 | |
| 1264 | 911 char av_get_pict_type_char(int pict_type){ |
| 912 switch(pict_type){ | |
| 913 case I_TYPE: return 'I'; | |
| 914 case P_TYPE: return 'P'; | |
| 915 case B_TYPE: return 'B'; | |
| 916 case S_TYPE: return 'S'; | |
| 917 case SI_TYPE:return 'i'; | |
| 918 case SP_TYPE:return 'p'; | |
| 919 default: return '?'; | |
| 920 } | |
| 921 } | |
| 922 | |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
923 /* av_log API */ |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
924 |
| 2733 | 925 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
|
926 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
927 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
|
928 { |
| 1600 | 929 static int print_prefix=1; |
| 1856 | 930 AVClass* avc= ptr ? *(AVClass**)ptr : NULL; |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
931 if(level>av_log_level) |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
932 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
|
933 #undef fprintf |
| 1856 | 934 if(print_prefix && avc) { |
| 935 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
|
936 } |
|
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
|
937 #define fprintf please_use_av_log |
| 1600 | 938 |
| 1776 | 939 print_prefix= strstr(fmt, "\n") != NULL; |
| 1600 | 940 |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
941 vfprintf(stderr, fmt, vl); |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
942 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
943 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
944 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
|
945 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
946 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
|
947 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
948 va_list vl; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
949 va_start(vl, fmt); |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
950 av_vlog(avcl, level, fmt, vl); |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
951 va_end(vl); |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
952 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
953 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
954 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
|
955 { |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
956 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
|
957 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
958 |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
959 int av_log_get_level(void) |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
960 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
961 return av_log_level; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
962 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
963 |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
964 void av_log_set_level(int level) |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
965 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
966 av_log_level = level; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
967 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
968 |
|
1855
bafde44145f9
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1854
diff
changeset
|
969 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
|
970 { |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
971 av_log_callback = callback; |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
972 } |
|
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
973 |
|
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
|
974 #if !defined(HAVE_THREADS) |
|
2013
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
975 int avcodec_thread_init(AVCodecContext *s, int thread_count){ |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
976 return -1; |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
977 } |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
978 #endif |
| 2676 | 979 |
| 980 unsigned int av_xiphlacing(unsigned char *s, unsigned int v) | |
| 981 { | |
| 982 unsigned int n = 0; | |
| 983 | |
| 984 while(v >= 0xff) { | |
| 985 *s++ = 0xff; | |
| 986 v -= 0xff; | |
| 987 n++; | |
| 988 } | |
| 989 *s = v; | |
| 990 n++; | |
| 991 return n; | |
| 992 } |
