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