Mercurial > libavcodec.hg
annotate utils.c @ 11037:dfc8f928cc8a libavcodec
Factor mv/ref compare code out.
This is a hair slower (0.15% maybe) but i really dont want to have the
identical code duplicated 3 times because gcc adds odd threaded jumps with
register reshuffling and register safe/restore.
| author | michael |
|---|---|
| date | Thu, 28 Jan 2010 10:10:02 +0000 |
| parents | bf309c7ce615 |
| children | 31bdf73a0330 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * utils for libavcodec | |
|
8629
04423b2f6e0b
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
8611
diff
changeset
|
3 * Copyright (c) 2001 Fabrice Bellard |
|
1739
07a484280a82
copyright year update of the files i touched and remembered, things look annoyingly unmaintained otherwise
michael
parents:
1730
diff
changeset
|
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> |
| 0 | 5 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3916
diff
changeset
|
6 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3916
diff
changeset
|
7 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3916
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
| 429 | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3916
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
| 0 | 12 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3916
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
| 0 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Lesser General Public License for more details. | |
| 0 | 17 * |
| 429 | 18 * You should have received a copy of the GNU Lesser General Public |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3916
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
3031
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 21 */ |
| 2967 | 22 |
| 1106 | 23 /** |
|
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
8629
diff
changeset
|
24 * @file libavcodec/utils.c |
| 1106 | 25 * utils. |
| 26 */ | |
| 2967 | 27 |
|
7576
e50e9def7428
ensure we get explicit definition of various _XOPEN_SOURCE functions we use
aurel
parents:
7530
diff
changeset
|
28 /* needed for mkstemp() */ |
| 7936 | 29 #define _XOPEN_SOURCE 600 |
|
7576
e50e9def7428
ensure we get explicit definition of various _XOPEN_SOURCE functions we use
aurel
parents:
7530
diff
changeset
|
30 |
| 8110 | 31 #include "libavutil/avstring.h" |
| 6763 | 32 #include "libavutil/integer.h" |
| 33 #include "libavutil/crc.h" | |
| 394 | 34 #include "avcodec.h" |
| 0 | 35 #include "dsputil.h" |
| 2880 | 36 #include "opt.h" |
| 6360 | 37 #include "imgconvert.h" |
|
7454
bb5e8cae1d71
Write sample format description within avcodec_string()
pross
parents:
7409
diff
changeset
|
38 #include "audioconvert.h" |
|
8603
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
39 #include "internal.h" |
|
7576
e50e9def7428
ensure we get explicit definition of various _XOPEN_SOURCE functions we use
aurel
parents:
7530
diff
changeset
|
40 #include <stdlib.h> |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1588
diff
changeset
|
41 #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
|
42 #include <limits.h> |
| 2862 | 43 #include <float.h> |
| 8590 | 44 #if !HAVE_MKSTEMP |
|
3233
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
45 #include <fcntl.h> |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
46 #endif |
| 0 | 47 |
| 2806 | 48 static int volatile entangled_thread_counter=0; |
| 9742 | 49 int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op); |
| 50 static void *codec_mutex; | |
| 2806 | 51 |
| 1057 | 52 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
|
53 { |
| 2967 | 54 if(min_size < *size) |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
55 return ptr; |
| 2967 | 56 |
| 2422 | 57 *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
|
58 |
|
6532
8aafb712389e
Fix possible heap overflow caused by av_fast_realloc()
michael
parents:
6488
diff
changeset
|
59 ptr= av_realloc(ptr, *size); |
|
8aafb712389e
Fix possible heap overflow caused by av_fast_realloc()
michael
parents:
6488
diff
changeset
|
60 if(!ptr) //we could set this to the unmodified min_size but this is safer if the user lost the ptr and uses NULL now |
|
8aafb712389e
Fix possible heap overflow caused by av_fast_realloc()
michael
parents:
6488
diff
changeset
|
61 *size= 0; |
|
8aafb712389e
Fix possible heap overflow caused by av_fast_realloc()
michael
parents:
6488
diff
changeset
|
62 |
|
8aafb712389e
Fix possible heap overflow caused by av_fast_realloc()
michael
parents:
6488
diff
changeset
|
63 return ptr; |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
64 } |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
998
diff
changeset
|
65 |
|
9415
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
66 void av_fast_malloc(void *ptr, unsigned int *size, unsigned int min_size) |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
67 { |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
68 void **p = ptr; |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
69 if (min_size < *size) |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
70 return; |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
71 *size= FFMAX(17*min_size/16 + 32, min_size); |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
72 av_free(*p); |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
73 *p = av_malloc(*size); |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
74 if (!*p) *size = 0; |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
75 } |
|
141badec76fc
Add a av_fast_malloc function and replace several uses of av_fast_realloc,
reimar
parents:
9379
diff
changeset
|
76 |
| 0 | 77 /* encoder management */ |
| 7992 | 78 static AVCodec *first_avcodec = NULL; |
| 0 | 79 |
| 6011 | 80 AVCodec *av_codec_next(AVCodec *c){ |
| 81 if(c) return c->next; | |
| 82 else return first_avcodec; | |
| 83 } | |
| 84 | |
|
8750
2528b6a2b5d3
Rename register_avcodec() as avcodec_register() and deprecate the old
stefano
parents:
8748
diff
changeset
|
85 void avcodec_register(AVCodec *codec) |
| 0 | 86 { |
| 87 AVCodec **p; | |
| 8325 | 88 avcodec_init(); |
| 0 | 89 p = &first_avcodec; |
| 90 while (*p != NULL) p = &(*p)->next; | |
|
8324
343f0476fd1d
Use a more explicit "codec" rather than "format" as the parameter of
stefano
parents:
8281
diff
changeset
|
91 *p = codec; |
|
343f0476fd1d
Use a more explicit "codec" rather than "format" as the parameter of
stefano
parents:
8281
diff
changeset
|
92 codec->next = NULL; |
| 0 | 93 } |
| 94 | |
|
8752
7fd1422a8703
Drop the deprecated function register_avcodec() at the next major
stefano
parents:
8750
diff
changeset
|
95 #if LIBAVCODEC_VERSION_MAJOR < 53 |
|
8750
2528b6a2b5d3
Rename register_avcodec() as avcodec_register() and deprecate the old
stefano
parents:
8748
diff
changeset
|
96 void register_avcodec(AVCodec *codec) |
|
2528b6a2b5d3
Rename register_avcodec() as avcodec_register() and deprecate the old
stefano
parents:
8748
diff
changeset
|
97 { |
|
2528b6a2b5d3
Rename register_avcodec() as avcodec_register() and deprecate the old
stefano
parents:
8748
diff
changeset
|
98 avcodec_register(codec); |
|
2528b6a2b5d3
Rename register_avcodec() as avcodec_register() and deprecate the old
stefano
parents:
8748
diff
changeset
|
99 } |
|
8752
7fd1422a8703
Drop the deprecated function register_avcodec() at the next major
stefano
parents:
8750
diff
changeset
|
100 #endif |
|
8750
2528b6a2b5d3
Rename register_avcodec() as avcodec_register() and deprecate the old
stefano
parents:
8748
diff
changeset
|
101 |
| 2270 | 102 void avcodec_set_dimensions(AVCodecContext *s, int width, int height){ |
| 103 s->coded_width = width; | |
| 104 s->coded_height= height; | |
| 105 s->width = -((-width )>>s->lowres); | |
| 106 s->height= -((-height)>>s->lowres); | |
| 107 } | |
| 108 | |
| 1214 | 109 typedef struct InternalBuffer{ |
| 903 | 110 int last_pic_num; |
| 1214 | 111 uint8_t *base[4]; |
| 903 | 112 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
|
113 int linesize[4]; |
|
5522
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
114 int width, height; |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
115 enum PixelFormat pix_fmt; |
| 1214 | 116 }InternalBuffer; |
| 117 | |
| 118 #define INTERNAL_BUFFER_SIZE 32 | |
| 903 | 119 |
| 1538 | 120 void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){ |
| 2967 | 121 int w_align= 1; |
| 122 int h_align= 1; | |
| 123 | |
| 1538 | 124 switch(s->pix_fmt){ |
| 125 case PIX_FMT_YUV420P: | |
|
4494
ce643a22f049
Replace deprecated PIX_FMT names by the newer variants.
diego
parents:
4453
diff
changeset
|
126 case PIX_FMT_YUYV422: |
|
2137
ef47c0b1ff28
UYVY support patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
michael
parents:
2125
diff
changeset
|
127 case PIX_FMT_UYVY422: |
| 1538 | 128 case PIX_FMT_YUV422P: |
| 10549 | 129 case PIX_FMT_YUV440P: |
| 1538 | 130 case PIX_FMT_YUV444P: |
| 131 case PIX_FMT_GRAY8: | |
| 4066 | 132 case PIX_FMT_GRAY16BE: |
| 133 case PIX_FMT_GRAY16LE: | |
| 1538 | 134 case PIX_FMT_YUVJ420P: |
| 135 case PIX_FMT_YUVJ422P: | |
| 10549 | 136 case PIX_FMT_YUVJ440P: |
| 1538 | 137 case PIX_FMT_YUVJ444P: |
|
5706
3e8764a25c53
add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents:
5576
diff
changeset
|
138 case PIX_FMT_YUVA420P: |
| 1538 | 139 w_align= 16; //FIXME check for non mpeg style codecs and use less alignment |
| 140 h_align= 16; | |
| 10549 | 141 if(s->codec_id == CODEC_ID_MPEG2VIDEO || s->codec_id == CODEC_ID_MJPEG || s->codec_id == CODEC_ID_AMV || s->codec_id == CODEC_ID_THP) |
|
9379
d31c367da415
Make sure mpeg2 has its height rounded up to 32 as that is needed
michael
parents:
9355
diff
changeset
|
142 h_align= 32; // interlaced is rounded up to 2 MBs |
| 1538 | 143 break; |
| 144 case PIX_FMT_YUV411P: | |
|
4494
ce643a22f049
Replace deprecated PIX_FMT names by the newer variants.
diego
parents:
4453
diff
changeset
|
145 case PIX_FMT_UYYVYY411: |
| 1538 | 146 w_align=32; |
| 147 h_align=8; | |
| 148 break; | |
| 149 case PIX_FMT_YUV410P: | |
| 150 if(s->codec_id == CODEC_ID_SVQ1){ | |
| 151 w_align=64; | |
| 152 h_align=64; | |
| 153 } | |
| 2104 | 154 case PIX_FMT_RGB555: |
| 155 if(s->codec_id == CODEC_ID_RPZA){ | |
| 156 w_align=4; | |
| 157 h_align=4; | |
| 158 } | |
| 159 case PIX_FMT_PAL8: | |
|
8748
eaa08ce79f9a
Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents:
8718
diff
changeset
|
160 case PIX_FMT_BGR8: |
|
eaa08ce79f9a
Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents:
8718
diff
changeset
|
161 case PIX_FMT_RGB8: |
| 2104 | 162 if(s->codec_id == CODEC_ID_SMC){ |
| 163 w_align=4; | |
| 164 h_align=4; | |
| 165 } | |
| 1538 | 166 break; |
|
2418
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
167 case PIX_FMT_BGR24: |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
168 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
|
169 w_align=4; |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
170 h_align=4; |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
171 } |
|
82af834636c2
Check pointers before writing to memory, fix possible integer overflows
rtognimp
parents:
2398
diff
changeset
|
172 break; |
| 1538 | 173 default: |
| 174 w_align= 1; | |
| 175 h_align= 1; | |
| 176 break; | |
| 177 } | |
| 178 | |
|
9686
bc32976d6d9d
Move ALIGN macro to libavutil/common.h and use it in various places
conrad
parents:
9545
diff
changeset
|
179 *width = FFALIGN(*width , w_align); |
|
bc32976d6d9d
Move ALIGN macro to libavutil/common.h and use it in various places
conrad
parents:
9545
diff
changeset
|
180 *height= FFALIGN(*height, h_align); |
|
7942
64f35acc2407
Allocate 1 line more in the chroma plane for H.264, this avoids some
michael
parents:
7941
diff
changeset
|
181 if(s->codec_id == CODEC_ID_H264) |
|
64f35acc2407
Allocate 1 line more in the chroma plane for H.264, this avoids some
michael
parents:
7941
diff
changeset
|
182 *height+=2; // some of the optimized chroma MC reads one line too much |
| 1538 | 183 } |
| 184 | |
| 2422 | 185 int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){ |
|
9536
f522c8e05a29
Update safety check as the maximum pixel size is no longer 4.
michael
parents:
9415
diff
changeset
|
186 if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8) |
| 2422 | 187 return 0; |
| 2967 | 188 |
| 2422 | 189 av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h); |
| 190 return -1; | |
| 191 } | |
| 192 | |
| 925 | 193 int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 194 int i; |
| 1538 | 195 int w= s->width; |
| 196 int h= s->height; | |
| 1214 | 197 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
|
198 int *picture_number; |
| 2422 | 199 |
|
4453
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
200 if(pic->data[0]!=NULL) { |
|
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
201 av_log(s, AV_LOG_ERROR, "pic->data[0]!=NULL in avcodec_default_get_buffer\n"); |
|
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
202 return -1; |
|
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
203 } |
|
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
204 if(s->internal_buffer_count >= INTERNAL_BUFFER_SIZE) { |
|
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
205 av_log(s, AV_LOG_ERROR, "internal_buffer_count overflow (missing release_buffer?)\n"); |
|
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
206 return -1; |
|
22827cd6b228
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,
takis
parents:
4351
diff
changeset
|
207 } |
| 903 | 208 |
| 2422 | 209 if(avcodec_check_dimensions(s,w,h)) |
| 210 return -1; | |
| 211 | |
| 1214 | 212 if(s->internal_buffer==NULL){ |
|
7307
52764a3665d8
Make the ugly hack which uses an unused entry in the internal buffer
michael
parents:
7293
diff
changeset
|
213 s->internal_buffer= av_mallocz((INTERNAL_BUFFER_SIZE+1)*sizeof(InternalBuffer)); |
| 1214 | 214 } |
| 215 #if 0 | |
| 216 s->internal_buffer= av_fast_realloc( | |
| 2967 | 217 s->internal_buffer, |
| 218 &s->internal_buffer_size, | |
| 1214 | 219 sizeof(InternalBuffer)*FFMAX(99, s->internal_buffer_count+1)/*FIXME*/ |
| 220 ); | |
| 221 #endif | |
| 2967 | 222 |
| 1214 | 223 buf= &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; |
|
7307
52764a3665d8
Make the ugly hack which uses an unused entry in the internal buffer
michael
parents:
7293
diff
changeset
|
224 picture_number= &(((InternalBuffer*)s->internal_buffer)[INTERNAL_BUFFER_SIZE]).last_pic_num; //FIXME ugly hack |
|
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
|
225 (*picture_number)++; |
| 2967 | 226 |
|
5522
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
227 if(buf->base[0] && (buf->width != w || buf->height != h || buf->pix_fmt != s->pix_fmt)){ |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
228 for(i=0; i<4; i++){ |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
229 av_freep(&buf->base[i]); |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
230 buf->data[i]= NULL; |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
231 } |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
232 } |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
233 |
| 1214 | 234 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
|
235 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
|
236 buf->last_pic_num= *picture_number; |
| 903 | 237 }else{ |
| 1538 | 238 int h_chroma_shift, v_chroma_shift; |
| 6360 | 239 int size[4] = {0}; |
| 240 int tmpsize; | |
|
9192
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
241 int unaligned; |
| 2950 | 242 AVPicture picture; |
|
7941
8a3f24796fa9
Replace second (and wrong) call to avcodec_align_dimensions() by adjusting
michael
parents:
7936
diff
changeset
|
243 int stride_align[4]; |
| 2950 | 244 |
| 903 | 245 avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift); |
| 1538 | 246 |
| 247 avcodec_align_dimensions(s, &w, &h); | |
| 2967 | 248 |
| 903 | 249 if(!(s->flags&CODEC_FLAG_EMU_EDGE)){ |
| 250 w+= EDGE_WIDTH*2; | |
| 251 h+= EDGE_WIDTH*2; | |
| 252 } | |
| 4986 | 253 |
|
9192
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
254 do { |
|
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
255 // NOTE: do not align linesizes individually, this breaks e.g. assumptions |
|
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
256 // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2 |
| 9193 | 257 ff_fill_linesize(&picture, s->pix_fmt, w); |
|
9192
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
258 // increase alignment of w for next try (rhs gives the lowest bit set in w) |
|
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
259 w += w & ~(w-1); |
| 6360 | 260 |
|
9192
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
261 unaligned = 0; |
| 9193 | 262 for (i=0; i<4; i++){ |
|
7941
8a3f24796fa9
Replace second (and wrong) call to avcodec_align_dimensions() by adjusting
michael
parents:
7936
diff
changeset
|
263 //STRIDE_ALIGN is 8 for SSE* but this does not work for SVQ1 chroma planes |
|
8a3f24796fa9
Replace second (and wrong) call to avcodec_align_dimensions() by adjusting
michael
parents:
7936
diff
changeset
|
264 //we could change STRIDE_ALIGN to 16 for x86/sse but it would increase the |
|
8a3f24796fa9
Replace second (and wrong) call to avcodec_align_dimensions() by adjusting
michael
parents:
7936
diff
changeset
|
265 //picture size unneccessarily in some cases. The solution here is not |
|
8a3f24796fa9
Replace second (and wrong) call to avcodec_align_dimensions() by adjusting
michael
parents:
7936
diff
changeset
|
266 //pretty and better ideas are welcome! |
| 8590 | 267 #if HAVE_MMX |
| 9193 | 268 if(s->codec_id == CODEC_ID_SVQ1) |
| 269 stride_align[i]= 16; | |
| 270 else | |
|
7941
8a3f24796fa9
Replace second (and wrong) call to avcodec_align_dimensions() by adjusting
michael
parents:
7936
diff
changeset
|
271 #endif |
| 9193 | 272 stride_align[i] = STRIDE_ALIGN; |
|
9192
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
273 unaligned |= picture.linesize[i] % stride_align[i]; |
| 9193 | 274 } |
|
9192
6faca73d75cc
Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]
reimar
parents:
9032
diff
changeset
|
275 } while (unaligned); |
| 6360 | 276 |
| 277 tmpsize = ff_fill_pointer(&picture, NULL, s->pix_fmt, h); | |
|
9014
1de11a984fc6
Check return value of ff_fill_pointer in avcodec_default_get_buffer,
reimar
parents:
9011
diff
changeset
|
278 if (tmpsize < 0) |
|
1de11a984fc6
Check return value of ff_fill_pointer in avcodec_default_get_buffer,
reimar
parents:
9011
diff
changeset
|
279 return -1; |
| 6360 | 280 |
| 281 for (i=0; i<3 && picture.data[i+1]; i++) | |
| 282 size[i] = picture.data[i+1] - picture.data[i]; | |
| 6390 | 283 size[i] = tmpsize - (picture.data[i] - picture.data[0]); |
| 2950 | 284 |
| 1214 | 285 buf->last_pic_num= -256*256*256*64; |
| 2950 | 286 memset(buf->base, 0, sizeof(buf->base)); |
| 287 memset(buf->data, 0, sizeof(buf->data)); | |
| 903 | 288 |
|
5706
3e8764a25c53
add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents:
5576
diff
changeset
|
289 for(i=0; i<4 && size[i]; i++){ |
| 1165 | 290 const int h_shift= i==0 ? 0 : h_chroma_shift; |
| 291 const int v_shift= i==0 ? 0 : v_chroma_shift; | |
| 903 | 292 |
| 2950 | 293 buf->linesize[i]= picture.linesize[i]; |
| 903 | 294 |
| 2950 | 295 buf->base[i]= av_malloc(size[i]+16); //FIXME 16 |
| 1214 | 296 if(buf->base[i]==NULL) return -1; |
| 2950 | 297 memset(buf->base[i], 128, size[i]); |
| 298 | |
|
8748
eaa08ce79f9a
Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents:
8718
diff
changeset
|
299 // no edge if EDEG EMU or not planar YUV |
|
eaa08ce79f9a
Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents:
8718
diff
changeset
|
300 if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2]) |
| 1214 | 301 buf->data[i] = buf->base[i]; |
| 903 | 302 else |
|
9686
bc32976d6d9d
Move ALIGN macro to libavutil/common.h and use it in various places
conrad
parents:
9545
diff
changeset
|
303 buf->data[i] = buf->base[i] + FFALIGN((buf->linesize[i]*EDGE_WIDTH>>v_shift) + (EDGE_WIDTH>>h_shift), stride_align[i]); |
| 903 | 304 } |
|
8748
eaa08ce79f9a
Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents:
8718
diff
changeset
|
305 if(size[1] && !size[2]) |
|
eaa08ce79f9a
Ensure that the palette is set in data[1] for all 8bit formats.
michael
parents:
8718
diff
changeset
|
306 ff_set_systematic_pal((uint32_t*)buf->data[1], s->pix_fmt); |
|
5522
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
307 buf->width = s->width; |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
308 buf->height = s->height; |
|
acaaff7b6fb8
ensure that default_get_buffer() doesnt reuse images if the dimension or
michael
parents:
5383
diff
changeset
|
309 buf->pix_fmt= s->pix_fmt; |
| 903 | 310 pic->age= 256*256*256*64; |
| 311 } | |
|
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
|
312 pic->type= FF_BUFFER_TYPE_INTERNAL; |
| 903 | 313 |
| 1214 | 314 for(i=0; i<4; i++){ |
| 315 pic->base[i]= buf->base[i]; | |
| 316 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
|
317 pic->linesize[i]= buf->linesize[i]; |
| 1214 | 318 } |
| 319 s->internal_buffer_count++; | |
| 320 | |
|
7631
b5b4bf0944b8
Provide a simpler way for the user to reorder her timestamps.
michael
parents:
7613
diff
changeset
|
321 pic->reordered_opaque= s->reordered_opaque; |
|
b5b4bf0944b8
Provide a simpler way for the user to reorder her timestamps.
michael
parents:
7613
diff
changeset
|
322 |
|
7406
7b2819083061
Add a new -debug option for tracing calls to the default get/release_buffer functions.
astrange
parents:
7331
diff
changeset
|
323 if(s->debug&FF_DEBUG_BUFFERS) |
|
7b2819083061
Add a new -debug option for tracing calls to the default get/release_buffer functions.
astrange
parents:
7331
diff
changeset
|
324 av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count); |
|
7b2819083061
Add a new -debug option for tracing calls to the default get/release_buffer functions.
astrange
parents:
7331
diff
changeset
|
325 |
| 903 | 326 return 0; |
| 327 } | |
| 328 | |
| 925 | 329 void avcodec_default_release_buffer(AVCodecContext *s, AVFrame *pic){ |
| 903 | 330 int i; |
| 4558 | 331 InternalBuffer *buf, *last; |
| 1214 | 332 |
| 924 | 333 assert(pic->type==FF_BUFFER_TYPE_INTERNAL); |
| 1396 | 334 assert(s->internal_buffer_count); |
| 1214 | 335 |
| 1455 | 336 buf = NULL; /* avoids warning */ |
| 1214 | 337 for(i=0; i<s->internal_buffer_count; i++){ //just 3-5 checks so is not worth to optimize |
| 338 buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 339 if(buf->data[0] == pic->data[0]) | |
| 340 break; | |
| 341 } | |
| 342 assert(i < s->internal_buffer_count); | |
| 343 s->internal_buffer_count--; | |
| 344 last = &((InternalBuffer*)s->internal_buffer)[s->internal_buffer_count]; | |
| 345 | |
| 4558 | 346 FFSWAP(InternalBuffer, *buf, *last); |
| 1214 | 347 |
|
5706
3e8764a25c53
add support for yuva420p colorspace (yuv420p + alpha)
aurel
parents:
5576
diff
changeset
|
348 for(i=0; i<4; i++){ |
| 903 | 349 pic->data[i]=NULL; |
| 1214 | 350 // pic->base[i]=NULL; |
| 351 } | |
| 903 | 352 //printf("R%X\n", pic->opaque); |
|
7406
7b2819083061
Add a new -debug option for tracing calls to the default get/release_buffer functions.
astrange
parents:
7331
diff
changeset
|
353 |
|
7b2819083061
Add a new -debug option for tracing calls to the default get/release_buffer functions.
astrange
parents:
7331
diff
changeset
|
354 if(s->debug&FF_DEBUG_BUFFERS) |
|
7b2819083061
Add a new -debug option for tracing calls to the default get/release_buffer functions.
astrange
parents:
7331
diff
changeset
|
355 av_log(s, AV_LOG_DEBUG, "default_release_buffer called on pic %p, %d buffers used\n", pic, s->internal_buffer_count); |
| 903 | 356 } |
| 357 | |
| 1630 | 358 int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){ |
| 359 AVFrame temp_pic; | |
| 360 int i; | |
| 361 | |
| 362 /* If no picture return a new buffer */ | |
| 363 if(pic->data[0] == NULL) { | |
| 364 /* We will copy from buffer, so must be readable */ | |
| 365 pic->buffer_hints |= FF_BUFFER_HINTS_READABLE; | |
| 366 return s->get_buffer(s, pic); | |
| 367 } | |
| 368 | |
| 369 /* If internal buffer type return the same buffer */ | |
|
10684
7e316791ac7b
Set reordered_opaque in default_reget_buffer() with internal buffers.
michael
parents:
10550
diff
changeset
|
370 if(pic->type == FF_BUFFER_TYPE_INTERNAL) { |
|
7e316791ac7b
Set reordered_opaque in default_reget_buffer() with internal buffers.
michael
parents:
10550
diff
changeset
|
371 pic->reordered_opaque= s->reordered_opaque; |
| 1630 | 372 return 0; |
|
10684
7e316791ac7b
Set reordered_opaque in default_reget_buffer() with internal buffers.
michael
parents:
10550
diff
changeset
|
373 } |
| 1630 | 374 |
| 375 /* | |
| 376 * Not internal type and reget_buffer not overridden, emulate cr buffer | |
| 377 */ | |
| 378 temp_pic = *pic; | |
| 379 for(i = 0; i < 4; i++) | |
| 380 pic->data[i] = pic->base[i] = NULL; | |
| 381 pic->opaque = NULL; | |
| 382 /* Allocate new frame */ | |
| 383 if (s->get_buffer(s, pic)) | |
| 384 return -1; | |
| 385 /* Copy image data from old buffer to new buffer */ | |
|
4624
6a900f539e2c
Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"
takis
parents:
4621
diff
changeset
|
386 av_picture_copy((AVPicture*)pic, (AVPicture*)&temp_pic, s->pix_fmt, s->width, |
| 1630 | 387 s->height); |
| 388 s->release_buffer(s, &temp_pic); // Release old frame | |
| 389 return 0; | |
| 390 } | |
| 391 | |
|
8129
a9734fe0811e
Making it easier to send arbitrary structures as work orders to MT workers
romansh
parents:
8110
diff
changeset
|
392 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){ |
| 1799 | 393 int i; |
| 394 | |
| 395 for(i=0; i<count; i++){ | |
|
8129
a9734fe0811e
Making it easier to send arbitrary structures as work orders to MT workers
romansh
parents:
8110
diff
changeset
|
396 int r= func(c, (char*)arg + i*size); |
| 1799 | 397 if(ret) ret[i]= r; |
| 398 } | |
| 399 return 0; | |
| 400 } | |
| 401 | |
|
10386
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
402 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr),void *arg, int *ret, int count){ |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
403 int i; |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
404 |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
405 for(i=0; i<count; i++){ |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
406 int r= func(c, arg, i, 0); |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
407 if(ret) ret[i]= r; |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
408 } |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
409 return 0; |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
410 } |
|
98501365c3aa
Add an execute2 function that is more flexible and allows to use parallel
reimar
parents:
10345
diff
changeset
|
411 |
|
9011
90c99bda19f5
Approved hunks for VAAPI / our new shiny hwaccel API
michael
parents:
8772
diff
changeset
|
412 enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const enum PixelFormat *fmt){ |
|
90c99bda19f5
Approved hunks for VAAPI / our new shiny hwaccel API
michael
parents:
8772
diff
changeset
|
413 while (*fmt != PIX_FMT_NONE && ff_is_hwaccel_pix_fmt(*fmt)) |
|
90c99bda19f5
Approved hunks for VAAPI / our new shiny hwaccel API
michael
parents:
8772
diff
changeset
|
414 ++fmt; |
| 998 | 415 return fmt[0]; |
| 416 } | |
| 417 | |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
418 void avcodec_get_frame_defaults(AVFrame *pic){ |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
419 memset(pic, 0, sizeof(AVFrame)); |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
420 |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
421 pic->pts= AV_NOPTS_VALUE; |
| 2488 | 422 pic->key_frame= 1; |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
423 } |
|
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
424 |
| 925 | 425 AVFrame *avcodec_alloc_frame(void){ |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
426 AVFrame *pic= av_malloc(sizeof(AVFrame)); |
| 2967 | 427 |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
428 if(pic==NULL) return NULL; |
| 2967 | 429 |
|
1831
cd2d7fcfab7a
use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0
michael
parents:
1823
diff
changeset
|
430 avcodec_get_frame_defaults(pic); |
| 2967 | 431 |
| 903 | 432 return pic; |
| 433 } | |
| 434 | |
|
5542
b0a566346fb1
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
5537
diff
changeset
|
435 int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec) |
| 0 | 436 { |
| 2806 | 437 int ret= -1; |
| 2967 | 438 |
| 9742 | 439 /* If there is a user-supplied mutex locking routine, call it. */ |
| 440 if (ff_lockmgr_cb) { | |
| 441 if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN)) | |
| 442 return -1; | |
| 443 } | |
| 444 | |
| 2806 | 445 entangled_thread_counter++; |
| 446 if(entangled_thread_counter != 1){ | |
| 447 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
| 448 goto end; | |
| 449 } | |
| 0 | 450 |
|
6069
3670c9e7ff4d
Check for avcodec_open codec parameter == NULL and return error in that case
reimar
parents:
6047
diff
changeset
|
451 if(avctx->codec || !codec) |
| 2806 | 452 goto end; |
|
1456
670fca257a69
detect avcodec_open() on an already opened AVCodecContext
michaelni
parents:
1455
diff
changeset
|
453 |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
454 if (codec->priv_data_size > 0) { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
455 avctx->priv_data = av_mallocz(codec->priv_data_size); |
|
5382
7f96f6e16f81
Return AVERROR(ENOMEM) on memory allocation failure of avcodec_open.
takis
parents:
5356
diff
changeset
|
456 if (!avctx->priv_data) { |
|
7f96f6e16f81
Return AVERROR(ENOMEM) on memory allocation failure of avcodec_open.
takis
parents:
5356
diff
changeset
|
457 ret = AVERROR(ENOMEM); |
| 2806 | 458 goto end; |
|
5382
7f96f6e16f81
Return AVERROR(ENOMEM) on memory allocation failure of avcodec_open.
takis
parents:
5356
diff
changeset
|
459 } |
|
374
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
460 } else { |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
461 avctx->priv_data = NULL; |
|
02147e22f8c8
* Don't allocate 0 bytes of memory. It upsets electricFence!
philipjsg
parents:
362
diff
changeset
|
462 } |
| 2270 | 463 |
| 464 if(avctx->coded_width && avctx->coded_height) | |
| 465 avcodec_set_dimensions(avctx, avctx->coded_width, avctx->coded_height); | |
| 466 else if(avctx->width && avctx->height) | |
| 467 avcodec_set_dimensions(avctx, avctx->width, avctx->height); | |
| 468 | |
|
10179
0ac7e80ecc76
perform sanity check on number of audio channels in avcodec_open()
pross
parents:
9891
diff
changeset
|
469 #define SANE_NB_CHANNELS 128U |
|
10201
1b2ef85867a9
Add parentheses to logical expression to avoid the warning:
diego
parents:
10179
diff
changeset
|
470 if (((avctx->coded_width || avctx->coded_height) |
|
1b2ef85867a9
Add parentheses to logical expression to avoid the warning:
diego
parents:
10179
diff
changeset
|
471 && avcodec_check_dimensions(avctx, avctx->coded_width, avctx->coded_height)) |
|
1b2ef85867a9
Add parentheses to logical expression to avoid the warning:
diego
parents:
10179
diff
changeset
|
472 || avctx->channels > SANE_NB_CHANNELS) { |
|
5383
8a28860d54ba
Return AVERROR(EINVAL) when invalid width and/or height are specified to
takis
parents:
5382
diff
changeset
|
473 ret = AVERROR(EINVAL); |
|
10255
b81ec4ac8f96
Make sure priv_data is freed and codec is set to NULL in case of failure of avcodec_open().
michael
parents:
10229
diff
changeset
|
474 goto free_and_end; |
| 2422 | 475 } |
| 476 | |
| 3159 | 477 avctx->codec = codec; |
|
10345
294c444866f7
Make avcodec_open set codec_id and codec_type if they haven't been set.
reimar
parents:
10255
diff
changeset
|
478 if ((avctx->codec_type == CODEC_TYPE_UNKNOWN || avctx->codec_type == codec->type) && |
|
294c444866f7
Make avcodec_open set codec_id and codec_type if they haven't been set.
reimar
parents:
10255
diff
changeset
|
479 avctx->codec_id == CODEC_ID_NONE) { |
|
294c444866f7
Make avcodec_open set codec_id and codec_type if they haven't been set.
reimar
parents:
10255
diff
changeset
|
480 avctx->codec_type = codec->type; |
|
294c444866f7
Make avcodec_open set codec_id and codec_type if they haven't been set.
reimar
parents:
10255
diff
changeset
|
481 avctx->codec_id = codec->id; |
|
294c444866f7
Make avcodec_open set codec_id and codec_type if they haven't been set.
reimar
parents:
10255
diff
changeset
|
482 } |
|
10229
bd1c4a438c7f
Check codec_id and codec_type in avcodec_open(), based on 43_codec_type_mismatch.patch from chrome
michael
parents:
10201
diff
changeset
|
483 if(avctx->codec_id != codec->id || avctx->codec_type != codec->type){ |
|
bd1c4a438c7f
Check codec_id and codec_type in avcodec_open(), based on 43_codec_type_mismatch.patch from chrome
michael
parents:
10201
diff
changeset
|
484 av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n"); |
|
10255
b81ec4ac8f96
Make sure priv_data is freed and codec is set to NULL in case of failure of avcodec_open().
michael
parents:
10229
diff
changeset
|
485 goto free_and_end; |
|
10229
bd1c4a438c7f
Check codec_id and codec_type in avcodec_open(), based on 43_codec_type_mismatch.patch from chrome
michael
parents:
10201
diff
changeset
|
486 } |
| 3159 | 487 avctx->frame_number = 0; |
| 4762 | 488 if(avctx->codec->init){ |
| 4763 | 489 ret = avctx->codec->init(avctx); |
| 490 if (ret < 0) { | |
|
10255
b81ec4ac8f96
Make sure priv_data is freed and codec is set to NULL in case of failure of avcodec_open().
michael
parents:
10229
diff
changeset
|
491 goto free_and_end; |
| 4763 | 492 } |
| 4762 | 493 } |
| 2806 | 494 ret=0; |
| 495 end: | |
| 496 entangled_thread_counter--; | |
| 9742 | 497 |
| 498 /* Release any user-supplied mutex. */ | |
| 499 if (ff_lockmgr_cb) { | |
| 500 (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE); | |
| 501 } | |
| 2806 | 502 return ret; |
|
10255
b81ec4ac8f96
Make sure priv_data is freed and codec is set to NULL in case of failure of avcodec_open().
michael
parents:
10229
diff
changeset
|
503 free_and_end: |
|
b81ec4ac8f96
Make sure priv_data is freed and codec is set to NULL in case of failure of avcodec_open().
michael
parents:
10229
diff
changeset
|
504 av_freep(&avctx->priv_data); |
|
b81ec4ac8f96
Make sure priv_data is freed and codec is set to NULL in case of failure of avcodec_open().
michael
parents:
10229
diff
changeset
|
505 avctx->codec= NULL; |
|
b81ec4ac8f96
Make sure priv_data is freed and codec is set to NULL in case of failure of avcodec_open().
michael
parents:
10229
diff
changeset
|
506 goto end; |
| 0 | 507 } |
| 508 | |
|
5542
b0a566346fb1
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
5537
diff
changeset
|
509 int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 0 | 510 const short *samples) |
| 511 { | |
| 2422 | 512 if(buf_size < FF_MIN_BUFFER_SIZE && 0){ |
| 4526 | 513 av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n"); |
| 2422 | 514 return -1; |
| 515 } | |
| 2091 | 516 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || samples){ |
|
8756
153d7e5d5a5b
remove useless cast, it does not remove warning, encode prototype must be changed
bcoudurier
parents:
8752
diff
changeset
|
517 int ret = avctx->codec->encode(avctx, buf, buf_size, samples); |
| 2091 | 518 avctx->frame_number++; |
| 519 return ret; | |
| 520 }else | |
| 521 return 0; | |
| 0 | 522 } |
| 523 | |
|
5542
b0a566346fb1
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
5537
diff
changeset
|
524 int attribute_align_arg avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 925 | 525 const AVFrame *pict) |
| 0 | 526 { |
| 2422 | 527 if(buf_size < FF_MIN_BUFFER_SIZE){ |
| 4526 | 528 av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n"); |
| 2422 | 529 return -1; |
| 530 } | |
| 531 if(avcodec_check_dimensions(avctx,avctx->width,avctx->height)) | |
| 532 return -1; | |
| 2091 | 533 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){ |
|
8756
153d7e5d5a5b
remove useless cast, it does not remove warning, encode prototype must be changed
bcoudurier
parents:
8752
diff
changeset
|
534 int ret = avctx->codec->encode(avctx, buf, buf_size, pict); |
| 2091 | 535 avctx->frame_number++; |
| 2764 | 536 emms_c(); //needed to avoid an emms_c() call before every return; |
| 2967 | 537 |
| 2091 | 538 return ret; |
| 539 }else | |
| 540 return 0; | |
| 0 | 541 } |
| 542 | |
| 2967 | 543 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, |
| 2756 | 544 const AVSubtitle *sub) |
| 545 { | |
| 546 int ret; | |
|
8771
f7442819cacf
Check that start_display_time is 0 in avcodec_encode_subtitle()
superdump
parents:
8757
diff
changeset
|
547 if(sub->start_display_time) { |
|
f7442819cacf
Check that start_display_time is 0 in avcodec_encode_subtitle()
superdump
parents:
8757
diff
changeset
|
548 av_log(avctx, AV_LOG_ERROR, "start_display_time must be 0.\n"); |
|
f7442819cacf
Check that start_display_time is 0 in avcodec_encode_subtitle()
superdump
parents:
8757
diff
changeset
|
549 return -1; |
|
f7442819cacf
Check that start_display_time is 0 in avcodec_encode_subtitle()
superdump
parents:
8757
diff
changeset
|
550 } |
|
8772
5a9485bd4421
Check that there are subtitle rects to encode in avcodec_encode_subtitle()
superdump
parents:
8771
diff
changeset
|
551 if(sub->num_rects == 0 || !sub->rects) |
|
5a9485bd4421
Check that there are subtitle rects to encode in avcodec_encode_subtitle()
superdump
parents:
8771
diff
changeset
|
552 return -1; |
|
8756
153d7e5d5a5b
remove useless cast, it does not remove warning, encode prototype must be changed
bcoudurier
parents:
8752
diff
changeset
|
553 ret = avctx->codec->encode(avctx, buf, buf_size, sub); |
| 2756 | 554 avctx->frame_number++; |
| 555 return ret; | |
| 556 } | |
| 557 | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
558 #if LIBAVCODEC_VERSION_MAJOR < 53 |
|
5542
b0a566346fb1
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
5537
diff
changeset
|
559 int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture, |
| 0 | 560 int *got_picture_ptr, |
|
6318
73c09e922744
Make avcodec_decode_* functions take const input buffers.
michael
parents:
6219
diff
changeset
|
561 const uint8_t *buf, int buf_size) |
| 0 | 562 { |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
563 AVPacket avpkt; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
564 av_init_packet(&avpkt); |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
565 avpkt.data = buf; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
566 avpkt.size = buf_size; |
| 9787 | 567 // HACK for CorePNG to decode as normal PNG by default |
| 568 avpkt.flags = AV_PKT_FLAG_KEY; | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
569 |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
570 return avcodec_decode_video2(avctx, picture, got_picture_ptr, &avpkt); |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
571 } |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
572 #endif |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
573 |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
574 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
575 int *got_picture_ptr, |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
576 AVPacket *avpkt) |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
577 { |
| 0 | 578 int ret; |
| 2967 | 579 |
| 2028 | 580 *got_picture_ptr= 0; |
| 2422 | 581 if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)) |
| 582 return -1; | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
583 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){ |
| 2967 | 584 ret = avctx->codec->decode(avctx, picture, got_picture_ptr, |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
585 avpkt); |
| 814 | 586 |
| 2764 | 587 emms_c(); //needed to avoid an emms_c() call before every return; |
| 2967 | 588 |
| 589 if (*got_picture_ptr) | |
| 2453 | 590 avctx->frame_number++; |
| 591 }else | |
| 592 ret= 0; | |
| 593 | |
| 0 | 594 return ret; |
| 595 } | |
| 596 | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
597 #if LIBAVCODEC_VERSION_MAJOR < 53 |
|
5542
b0a566346fb1
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
5537
diff
changeset
|
598 int attribute_align_arg avcodec_decode_audio2(AVCodecContext *avctx, int16_t *samples, |
| 0 | 599 int *frame_size_ptr, |
|
6318
73c09e922744
Make avcodec_decode_* functions take const input buffers.
michael
parents:
6219
diff
changeset
|
600 const uint8_t *buf, int buf_size) |
| 0 | 601 { |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
602 AVPacket avpkt; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
603 av_init_packet(&avpkt); |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
604 avpkt.data = buf; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
605 avpkt.size = buf_size; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
606 |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
607 return avcodec_decode_audio3(avctx, samples, frame_size_ptr, &avpkt); |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
608 } |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
609 #endif |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
610 |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
611 int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples, |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
612 int *frame_size_ptr, |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
613 AVPacket *avpkt) |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
614 { |
| 0 | 615 int ret; |
| 616 | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
617 if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){ |
|
4578
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
618 //FIXME remove the check below _after_ ensuring that all audio check that the available space is enough |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
619 if(*frame_size_ptr < AVCODEC_MAX_AUDIO_FRAME_SIZE){ |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
620 av_log(avctx, AV_LOG_ERROR, "buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE\n"); |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
621 return -1; |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
622 } |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
623 if(*frame_size_ptr < FF_MIN_BUFFER_SIZE || |
|
5707
c46509aca422
Remove check for input buffer size as it does not guarantee that
kostya
parents:
5706
diff
changeset
|
624 *frame_size_ptr < avctx->channels * avctx->frame_size * sizeof(int16_t)){ |
|
4578
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
625 av_log(avctx, AV_LOG_ERROR, "buffer %d too small\n", *frame_size_ptr); |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
626 return -1; |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
627 } |
|
006563b9ab27
dont check buffer size if the decode function wont be called at all
michael
parents:
4577
diff
changeset
|
628 |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
629 ret = avctx->codec->decode(avctx, samples, frame_size_ptr, avpkt); |
| 2791 | 630 avctx->frame_number++; |
| 4351 | 631 }else{ |
| 2791 | 632 ret= 0; |
| 4351 | 633 *frame_size_ptr=0; |
| 634 } | |
| 0 | 635 return ret; |
| 636 } | |
| 637 | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
638 #if LIBAVCODEC_VERSION_MAJOR < 53 |
| 2756 | 639 int avcodec_decode_subtitle(AVCodecContext *avctx, AVSubtitle *sub, |
| 640 int *got_sub_ptr, | |
| 641 const uint8_t *buf, int buf_size) | |
| 642 { | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
643 AVPacket avpkt; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
644 av_init_packet(&avpkt); |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
645 avpkt.data = buf; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
646 avpkt.size = buf_size; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
647 |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
648 return avcodec_decode_subtitle2(avctx, sub, got_sub_ptr, &avpkt); |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
649 } |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
650 #endif |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
651 |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
652 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
653 int *got_sub_ptr, |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
654 AVPacket *avpkt) |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
655 { |
| 2756 | 656 int ret; |
| 657 | |
| 658 *got_sub_ptr = 0; | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9328
diff
changeset
|
659 ret = avctx->codec->decode(avctx, sub, got_sub_ptr, avpkt); |
| 2756 | 660 if (*got_sub_ptr) |
| 661 avctx->frame_number++; | |
| 662 return ret; | |
| 663 } | |
| 664 | |
| 10867 | 665 av_cold int avcodec_close(AVCodecContext *avctx) |
| 0 | 666 { |
| 9742 | 667 /* If there is a user-supplied mutex locking routine, call it. */ |
| 668 if (ff_lockmgr_cb) { | |
| 669 if ((*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_OBTAIN)) | |
| 670 return -1; | |
| 671 } | |
| 672 | |
| 2806 | 673 entangled_thread_counter++; |
| 674 if(entangled_thread_counter != 1){ | |
| 675 av_log(avctx, AV_LOG_ERROR, "insufficient thread locking around avcodec_open/close()\n"); | |
| 676 entangled_thread_counter--; | |
| 677 return -1; | |
| 678 } | |
| 679 | |
|
8596
68e959302527
replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_
aurel
parents:
8590
diff
changeset
|
680 if (HAVE_THREADS && avctx->thread_opaque) |
| 5234 | 681 avcodec_thread_free(avctx); |
|
10505
e7f082df2d65
Add a NULL pointer check to avcodec_close() this should prevent a segfault
michael
parents:
10501
diff
changeset
|
682 if (avctx->codec && avctx->codec->close) |
| 0 | 683 avctx->codec->close(avctx); |
| 1994 | 684 avcodec_default_free_buffers(avctx); |
| 394 | 685 av_freep(&avctx->priv_data); |
| 0 | 686 avctx->codec = NULL; |
| 2806 | 687 entangled_thread_counter--; |
| 9742 | 688 |
| 689 /* Release any user-supplied mutex. */ | |
| 690 if (ff_lockmgr_cb) { | |
| 691 (*ff_lockmgr_cb)(&codec_mutex, AV_LOCK_RELEASE); | |
| 692 } | |
| 0 | 693 return 0; |
| 694 } | |
| 695 | |
| 696 AVCodec *avcodec_find_encoder(enum CodecID id) | |
| 697 { | |
| 698 AVCodec *p; | |
| 699 p = first_avcodec; | |
| 700 while (p) { | |
| 701 if (p->encode != NULL && p->id == id) | |
| 702 return p; | |
| 703 p = p->next; | |
| 704 } | |
| 705 return NULL; | |
| 706 } | |
| 707 | |
| 177 | 708 AVCodec *avcodec_find_encoder_by_name(const char *name) |
| 709 { | |
| 710 AVCodec *p; | |
|
8016
81dba4c59fd6
allows calling avcodec_find_(en|de)coder_by_name with NULL parameter
aurel
parents:
7992
diff
changeset
|
711 if (!name) |
|
81dba4c59fd6
allows calling avcodec_find_(en|de)coder_by_name with NULL parameter
aurel
parents:
7992
diff
changeset
|
712 return NULL; |
| 177 | 713 p = first_avcodec; |
| 714 while (p) { | |
| 715 if (p->encode != NULL && strcmp(name,p->name) == 0) | |
| 716 return p; | |
| 717 p = p->next; | |
| 718 } | |
| 719 return NULL; | |
| 720 } | |
| 721 | |
| 0 | 722 AVCodec *avcodec_find_decoder(enum CodecID id) |
| 723 { | |
| 724 AVCodec *p; | |
| 725 p = first_avcodec; | |
| 726 while (p) { | |
| 727 if (p->decode != NULL && p->id == id) | |
| 728 return p; | |
| 729 p = p->next; | |
| 730 } | |
| 731 return NULL; | |
| 732 } | |
| 733 | |
| 734 AVCodec *avcodec_find_decoder_by_name(const char *name) | |
| 735 { | |
| 736 AVCodec *p; | |
|
8016
81dba4c59fd6
allows calling avcodec_find_(en|de)coder_by_name with NULL parameter
aurel
parents:
7992
diff
changeset
|
737 if (!name) |
|
81dba4c59fd6
allows calling avcodec_find_(en|de)coder_by_name with NULL parameter
aurel
parents:
7992
diff
changeset
|
738 return NULL; |
| 0 | 739 p = first_avcodec; |
| 740 while (p) { | |
| 741 if (p->decode != NULL && strcmp(name,p->name) == 0) | |
| 742 return p; | |
| 743 p = p->next; | |
| 744 } | |
| 745 return NULL; | |
| 746 } | |
| 747 | |
|
10550
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
748 int av_get_bit_rate(AVCodecContext *ctx) |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
749 { |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
750 int bit_rate; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
751 int bits_per_sample; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
752 |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
753 switch(ctx->codec_type) { |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
754 case CODEC_TYPE_VIDEO: |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
755 bit_rate = ctx->bit_rate; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
756 break; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
757 case CODEC_TYPE_AUDIO: |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
758 bits_per_sample = av_get_bits_per_sample(ctx->codec_id); |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
759 bit_rate = bits_per_sample ? ctx->sample_rate * ctx->channels * bits_per_sample : ctx->bit_rate; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
760 break; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
761 case CODEC_TYPE_DATA: |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
762 bit_rate = ctx->bit_rate; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
763 break; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
764 case CODEC_TYPE_SUBTITLE: |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
765 bit_rate = ctx->bit_rate; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
766 break; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
767 case CODEC_TYPE_ATTACHMENT: |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
768 bit_rate = ctx->bit_rate; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
769 break; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
770 default: |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
771 bit_rate = 0; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
772 break; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
773 } |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
774 return bit_rate; |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
775 } |
|
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
776 |
| 0 | 777 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) |
| 778 { | |
| 779 const char *codec_name; | |
| 780 AVCodec *p; | |
| 781 char buf1[32]; | |
| 92 | 782 int bitrate; |
| 5837 | 783 AVRational display_aspect_ratio; |
| 0 | 784 |
| 785 if (encode) | |
| 786 p = avcodec_find_encoder(enc->codec_id); | |
| 787 else | |
| 788 p = avcodec_find_decoder(enc->codec_id); | |
| 789 | |
| 790 if (p) { | |
| 791 codec_name = p->name; | |
|
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
|
792 } 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
|
793 /* 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
|
794 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
|
795 codec_name = "mpeg2ts"; |
| 0 | 796 } else if (enc->codec_name[0] != '\0') { |
| 797 codec_name = enc->codec_name; | |
| 798 } else { | |
| 799 /* output avi tags */ | |
| 2967 | 800 if( isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF) |
| 2856 | 801 && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){ |
| 2967 | 802 snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X", |
| 0 | 803 enc->codec_tag & 0xff, |
| 804 (enc->codec_tag >> 8) & 0xff, | |
| 805 (enc->codec_tag >> 16) & 0xff, | |
| 2856 | 806 (enc->codec_tag >> 24) & 0xff, |
| 807 enc->codec_tag); | |
| 0 | 808 } else { |
| 809 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); | |
| 810 } | |
| 811 codec_name = buf1; | |
| 812 } | |
| 813 | |
| 814 switch(enc->codec_type) { | |
| 815 case CODEC_TYPE_VIDEO: | |
| 816 snprintf(buf, buf_size, | |
| 817 "Video: %s%s", | |
| 1389 | 818 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
|
819 if (enc->pix_fmt != PIX_FMT_NONE) { |
| 55 | 820 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 821 ", %s", | |
|
988
001b7d3045e5
moved avcodec_get_chroma_sub_sample() to imgconvert.c
bellard
parents:
963
diff
changeset
|
822 avcodec_get_pix_fmt_name(enc->pix_fmt)); |
| 55 | 823 } |
| 0 | 824 if (enc->width) { |
| 825 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
|
2884
a332778dfa06
print more time_base fps stuff if av_log level is at debug or above
michael
parents:
2881
diff
changeset
|
826 ", %dx%d", |
|
a332778dfa06
print more time_base fps stuff if av_log level is at debug or above
michael
parents:
2881
diff
changeset
|
827 enc->width, enc->height); |
| 6466 | 828 if (enc->sample_aspect_ratio.num) { |
| 6467 | 829 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den, |
| 830 enc->width*enc->sample_aspect_ratio.num, | |
| 831 enc->height*enc->sample_aspect_ratio.den, | |
| 832 1024*1024); | |
| 833 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 834 " [PAR %d:%d DAR %d:%d]", | |
| 835 enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den, | |
| 836 display_aspect_ratio.num, display_aspect_ratio.den); | |
| 6466 | 837 } |
| 6012 | 838 if(av_log_get_level() >= AV_LOG_DEBUG){ |
| 8611 | 839 int g= av_gcd(enc->time_base.num, enc->time_base.den); |
|
2884
a332778dfa06
print more time_base fps stuff if av_log level is at debug or above
michael
parents:
2881
diff
changeset
|
840 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
|
a332778dfa06
print more time_base fps stuff if av_log level is at debug or above
michael
parents:
2881
diff
changeset
|
841 ", %d/%d", |
|
a332778dfa06
print more time_base fps stuff if av_log level is at debug or above
michael
parents:
2881
diff
changeset
|
842 enc->time_base.num/g, enc->time_base.den/g); |
|
a332778dfa06
print more time_base fps stuff if av_log level is at debug or above
michael
parents:
2881
diff
changeset
|
843 } |
| 0 | 844 } |
| 741 | 845 if (encode) { |
| 846 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 847 ", q=%d-%d", enc->qmin, enc->qmax); | |
| 848 } | |
| 0 | 849 break; |
| 850 case CODEC_TYPE_AUDIO: | |
| 851 snprintf(buf, buf_size, | |
| 852 "Audio: %s", | |
| 853 codec_name); | |
| 854 if (enc->sample_rate) { | |
| 855 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 8098 | 856 ", %d Hz", enc->sample_rate); |
| 0 | 857 } |
| 8098 | 858 av_strlcat(buf, ", ", buf_size); |
| 859 avcodec_get_channel_layout_string(buf + strlen(buf), buf_size - strlen(buf), enc->channels, enc->channel_layout); | |
|
7454
bb5e8cae1d71
Write sample format description within avcodec_string()
pross
parents:
7409
diff
changeset
|
860 if (enc->sample_fmt != SAMPLE_FMT_NONE) { |
|
bb5e8cae1d71
Write sample format description within avcodec_string()
pross
parents:
7409
diff
changeset
|
861 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
|
bb5e8cae1d71
Write sample format description within avcodec_string()
pross
parents:
7409
diff
changeset
|
862 ", %s", avcodec_get_sample_fmt_name(enc->sample_fmt)); |
|
bb5e8cae1d71
Write sample format description within avcodec_string()
pross
parents:
7409
diff
changeset
|
863 } |
| 0 | 864 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
|
865 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
|
866 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
|
867 break; |
| 2756 | 868 case CODEC_TYPE_SUBTITLE: |
| 869 snprintf(buf, buf_size, "Subtitle: %s", codec_name); | |
| 870 break; | |
| 6184 | 871 case CODEC_TYPE_ATTACHMENT: |
| 872 snprintf(buf, buf_size, "Attachment: %s", codec_name); | |
| 873 break; | |
| 0 | 874 default: |
| 2281 | 875 snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type); |
| 876 return; | |
| 0 | 877 } |
| 741 | 878 if (encode) { |
| 879 if (enc->flags & CODEC_FLAG_PASS1) | |
| 880 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 881 ", pass 1"); | |
| 882 if (enc->flags & CODEC_FLAG_PASS2) | |
| 883 snprintf(buf + strlen(buf), buf_size - strlen(buf), | |
| 884 ", pass 2"); | |
| 885 } | |
|
10550
eb415f52f9f9
Factorize av_get_bit_rate (for future use outside of libavcodec).
cehoyos
parents:
10549
diff
changeset
|
886 bitrate = av_get_bit_rate(enc); |
| 92 | 887 if (bitrate != 0) { |
| 2967 | 888 snprintf(buf + strlen(buf), buf_size - strlen(buf), |
| 92 | 889 ", %d kb/s", bitrate / 1000); |
| 0 | 890 } |
| 891 } | |
| 892 | |
| 362 | 893 unsigned avcodec_version( void ) |
| 894 { | |
| 895 return LIBAVCODEC_VERSION_INT; | |
| 896 } | |
| 55 | 897 |
|
10764
4546d91de818
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
stefano
parents:
10684
diff
changeset
|
898 const char *avcodec_configuration(void) |
|
10536
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
899 { |
|
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
900 return FFMPEG_CONFIGURATION; |
|
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
901 } |
|
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
902 |
|
10764
4546d91de818
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
stefano
parents:
10684
diff
changeset
|
903 const char *avcodec_license(void) |
|
10536
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
904 { |
|
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
905 #define LICENSE_PREFIX "libavcodec license: " |
|
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
906 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |
|
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
907 } |
|
046dcf7aa19c
Add functions to return library license and library configuration.
diego
parents:
10505
diff
changeset
|
908 |
| 0 | 909 void avcodec_init(void) |
| 910 { | |
| 6350 | 911 static int initialized = 0; |
|
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
912 |
| 6350 | 913 if (initialized != 0) |
| 2979 | 914 return; |
| 6350 | 915 initialized = 1; |
|
303
9a931fd8d06c
multiple init bugfix (patch by Alex Beregszaszi <alex@naxine.org>)
michaelni
parents:
267
diff
changeset
|
916 |
| 4197 | 917 dsputil_static_init(); |
| 0 | 918 } |
| 919 | |
| 341 | 920 void avcodec_flush_buffers(AVCodecContext *avctx) |
| 921 { | |
| 1368 | 922 if(avctx->codec->flush) |
| 923 avctx->codec->flush(avctx); | |
| 341 | 924 } |
| 925 | |
| 2231 | 926 void avcodec_default_free_buffers(AVCodecContext *s){ |
| 1214 | 927 int i, j; |
| 928 | |
| 929 if(s->internal_buffer==NULL) return; | |
| 2967 | 930 |
|
10398
11b685acd280
Print a warning message when avcodec_default_free_buffers finds unreleased
reimar
parents:
10386
diff
changeset
|
931 if (s->internal_buffer_count) |
|
11b685acd280
Print a warning message when avcodec_default_free_buffers finds unreleased
reimar
parents:
10386
diff
changeset
|
932 av_log(s, AV_LOG_WARNING, "Found %i unreleased buffers!\n", s->internal_buffer_count); |
| 1214 | 933 for(i=0; i<INTERNAL_BUFFER_SIZE; i++){ |
| 934 InternalBuffer *buf= &((InternalBuffer*)s->internal_buffer)[i]; | |
| 935 for(j=0; j<4; j++){ | |
| 936 av_freep(&buf->base[j]); | |
| 937 buf->data[j]= NULL; | |
| 938 } | |
| 939 } | |
| 940 av_freep(&s->internal_buffer); | |
| 2967 | 941 |
| 1214 | 942 s->internal_buffer_count=0; |
| 943 } | |
| 944 | |
| 1264 | 945 char av_get_pict_type_char(int pict_type){ |
| 946 switch(pict_type){ | |
| 6450 | 947 case FF_I_TYPE: return 'I'; |
| 948 case FF_P_TYPE: return 'P'; | |
| 949 case FF_B_TYPE: return 'B'; | |
| 950 case FF_S_TYPE: return 'S'; | |
| 951 case FF_SI_TYPE:return 'i'; | |
| 952 case FF_SP_TYPE:return 'p'; | |
| 6456 | 953 case FF_BI_TYPE:return 'b'; |
| 6455 | 954 default: return '?'; |
| 1264 | 955 } |
| 956 } | |
| 957 | |
| 3433 | 958 int av_get_bits_per_sample(enum CodecID codec_id){ |
| 959 switch(codec_id){ | |
|
3435
ffa9e863f3be
simplify the voc demuxer using av_get_bits_per_sample()
aurel
parents:
3433
diff
changeset
|
960 case CODEC_ID_ADPCM_SBPRO_2: |
| 3438 | 961 return 2; |
|
3435
ffa9e863f3be
simplify the voc demuxer using av_get_bits_per_sample()
aurel
parents:
3433
diff
changeset
|
962 case CODEC_ID_ADPCM_SBPRO_3: |
| 3438 | 963 return 3; |
|
3435
ffa9e863f3be
simplify the voc demuxer using av_get_bits_per_sample()
aurel
parents:
3433
diff
changeset
|
964 case CODEC_ID_ADPCM_SBPRO_4: |
| 3438 | 965 case CODEC_ID_ADPCM_CT: |
| 10779 | 966 case CODEC_ID_ADPCM_IMA_WAV: |
|
10777
c4e157b47af5
Handle more ADPCM codecs in av_get_bits_per_sample().
daniel
parents:
10764
diff
changeset
|
967 case CODEC_ID_ADPCM_MS: |
|
c4e157b47af5
Handle more ADPCM codecs in av_get_bits_per_sample().
daniel
parents:
10764
diff
changeset
|
968 case CODEC_ID_ADPCM_YAMAHA: |
| 3438 | 969 return 4; |
| 3433 | 970 case CODEC_ID_PCM_ALAW: |
| 971 case CODEC_ID_PCM_MULAW: | |
| 972 case CODEC_ID_PCM_S8: | |
| 973 case CODEC_ID_PCM_U8: | |
|
7475
eaf0ebba81d7
Make avcodec_string() and av_get_bits_per_sample() report the sample size for CODEC_ID_PCM_ZORK
pross
parents:
7454
diff
changeset
|
974 case CODEC_ID_PCM_ZORK: |
| 3433 | 975 return 8; |
| 976 case CODEC_ID_PCM_S16BE: | |
| 977 case CODEC_ID_PCM_S16LE: | |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5837
diff
changeset
|
978 case CODEC_ID_PCM_S16LE_PLANAR: |
| 3433 | 979 case CODEC_ID_PCM_U16BE: |
| 980 case CODEC_ID_PCM_U16LE: | |
| 981 return 16; | |
| 982 case CODEC_ID_PCM_S24DAUD: | |
| 983 case CODEC_ID_PCM_S24BE: | |
| 984 case CODEC_ID_PCM_S24LE: | |
| 985 case CODEC_ID_PCM_U24BE: | |
| 986 case CODEC_ID_PCM_U24LE: | |
| 987 return 24; | |
| 988 case CODEC_ID_PCM_S32BE: | |
| 989 case CODEC_ID_PCM_S32LE: | |
| 990 case CODEC_ID_PCM_U32BE: | |
| 991 case CODEC_ID_PCM_U32LE: | |
|
7409
21770337ff2d
add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents:
7406
diff
changeset
|
992 case CODEC_ID_PCM_F32BE: |
| 7613 | 993 case CODEC_ID_PCM_F32LE: |
| 3433 | 994 return 32; |
| 7613 | 995 case CODEC_ID_PCM_F64BE: |
| 996 case CODEC_ID_PCM_F64LE: | |
| 997 return 64; | |
| 3433 | 998 default: |
| 999 return 0; | |
| 1000 } | |
| 1001 } | |
| 1002 | |
| 5537 | 1003 int av_get_bits_per_sample_format(enum SampleFormat sample_fmt) { |
| 1004 switch (sample_fmt) { | |
| 1005 case SAMPLE_FMT_U8: | |
| 1006 return 8; | |
| 1007 case SAMPLE_FMT_S16: | |
| 1008 return 16; | |
| 1009 case SAMPLE_FMT_S32: | |
| 1010 case SAMPLE_FMT_FLT: | |
| 1011 return 32; | |
| 7612 | 1012 case SAMPLE_FMT_DBL: |
| 1013 return 64; | |
| 5537 | 1014 default: |
| 1015 return 0; | |
| 1016 } | |
| 1017 } | |
| 1018 | |
| 8590 | 1019 #if !HAVE_THREADS |
|
2013
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
1020 int avcodec_thread_init(AVCodecContext *s, int thread_count){ |
|
9545
59073f92f0e2
Make avcodec_thread_init() set the thread count, even in the case when
stefano
parents:
9536
diff
changeset
|
1021 s->thread_count = thread_count; |
|
2013
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
1022 return -1; |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
1023 } |
|
85e547a18d87
dummy avcodec_thread_init() to avoid linking issues
michael
parents:
2002
diff
changeset
|
1024 #endif |
| 2676 | 1025 |
| 1026 unsigned int av_xiphlacing(unsigned char *s, unsigned int v) | |
| 1027 { | |
| 1028 unsigned int n = 0; | |
| 1029 | |
| 1030 while(v >= 0xff) { | |
| 1031 *s++ = 0xff; | |
| 1032 v -= 0xff; | |
| 1033 n++; | |
| 1034 } | |
| 1035 *s = v; | |
| 1036 n++; | |
| 1037 return n; | |
| 1038 } | |
|
3233
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1039 |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1040 /* Wrapper to work around the lack of mkstemp() on mingw/cygin. |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1041 * Also, tries to create file in /tmp first, if possible. |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1042 * *prefix can be a character constant; *filename will be allocated internally. |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1043 * Returns file descriptor of opened file (or -1 on error) |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1044 * and opened file name in **filename. */ |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1045 int av_tempfile(char *prefix, char **filename) { |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1046 int fd=-1; |
| 8590 | 1047 #if !HAVE_MKSTEMP |
|
3233
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1048 *filename = tempnam(".", prefix); |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1049 #else |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1050 size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX\0" */ |
| 3372 | 1051 *filename = av_malloc(len); |
|
3233
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1052 #endif |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1053 /* -----common section-----*/ |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1054 if (*filename == NULL) { |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1055 av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n"); |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1056 return -1; |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1057 } |
| 8590 | 1058 #if !HAVE_MKSTEMP |
| 5285 | 1059 fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444); |
|
3233
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1060 #else |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1061 snprintf(*filename, len, "/tmp/%sXXXXXX", prefix); |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1062 fd = mkstemp(*filename); |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1063 if (fd < 0) { |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1064 snprintf(*filename, len, "./%sXXXXXX", prefix); |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1065 fd = mkstemp(*filename); |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1066 } |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1067 #endif |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1068 /* -----common section-----*/ |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1069 if (fd < 0) { |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1070 av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename); |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1071 return -1; |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1072 } |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1073 return fd; /* success */ |
|
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
3171
diff
changeset
|
1074 } |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1075 |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1076 typedef struct { |
|
5176
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1077 const char *abbr; |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1078 int width, height; |
|
5176
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1079 } VideoFrameSizeAbbr; |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1080 |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1081 typedef struct { |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1082 const char *abbr; |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1083 int rate_num, rate_den; |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1084 } VideoFrameRateAbbr; |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1085 |
| 7129 | 1086 static const VideoFrameSizeAbbr video_frame_size_abbrs[] = { |
|
5176
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1087 { "ntsc", 720, 480 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1088 { "pal", 720, 576 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1089 { "qntsc", 352, 240 }, /* VCD compliant NTSC */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1090 { "qpal", 352, 288 }, /* VCD compliant PAL */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1091 { "sntsc", 640, 480 }, /* square pixel NTSC */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1092 { "spal", 768, 576 }, /* square pixel PAL */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1093 { "film", 352, 240 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1094 { "ntsc-film", 352, 240 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1095 { "sqcif", 128, 96 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1096 { "qcif", 176, 144 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1097 { "cif", 352, 288 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1098 { "4cif", 704, 576 }, |
|
9328
6a1ad1d933cd
Add 16cif video frame size abbreviation. i.e. -s alias for 1408x1152.
gb
parents:
9193
diff
changeset
|
1099 { "16cif", 1408,1152 }, |
|
5176
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1100 { "qqvga", 160, 120 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1101 { "qvga", 320, 240 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1102 { "vga", 640, 480 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1103 { "svga", 800, 600 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1104 { "xga", 1024, 768 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1105 { "uxga", 1600,1200 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1106 { "qxga", 2048,1536 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1107 { "sxga", 1280,1024 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1108 { "qsxga", 2560,2048 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1109 { "hsxga", 5120,4096 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1110 { "wvga", 852, 480 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1111 { "wxga", 1366, 768 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1112 { "wsxga", 1600,1024 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1113 { "wuxga", 1920,1200 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1114 { "woxga", 2560,1600 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1115 { "wqsxga", 3200,2048 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1116 { "wquxga", 3840,2400 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1117 { "whsxga", 6400,4096 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1118 { "whuxga", 7680,4800 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1119 { "cga", 320, 200 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1120 { "ega", 640, 350 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1121 { "hd480", 852, 480 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1122 { "hd720", 1280, 720 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1123 { "hd1080", 1920,1080 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1124 }; |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1125 |
| 7129 | 1126 static const VideoFrameRateAbbr video_frame_rate_abbrs[]= { |
|
5176
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1127 { "ntsc", 30000, 1001 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1128 { "pal", 25, 1 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1129 { "qntsc", 30000, 1001 }, /* VCD compliant NTSC */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1130 { "qpal", 25, 1 }, /* VCD compliant PAL */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1131 { "sntsc", 30000, 1001 }, /* square pixel NTSC */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1132 { "spal", 25, 1 }, /* square pixel PAL */ |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1133 { "film", 24, 1 }, |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1134 { "ntsc-film", 24000, 1001 }, |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1135 }; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1136 |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1137 int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str) |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1138 { |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1139 int i; |
| 8042 | 1140 int n = FF_ARRAY_ELEMS(video_frame_size_abbrs); |
|
8757
d529e239a510
Remove 'const' qualifier from variable in av_parse_video_frame_size().
bcoudurier
parents:
8756
diff
changeset
|
1141 char *p; |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1142 int frame_width = 0, frame_height = 0; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1143 |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1144 for(i=0;i<n;i++) { |
|
5176
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1145 if (!strcmp(video_frame_size_abbrs[i].abbr, str)) { |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1146 frame_width = video_frame_size_abbrs[i].width; |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1147 frame_height = video_frame_size_abbrs[i].height; |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1148 break; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1149 } |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1150 } |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1151 if (i == n) { |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1152 p = str; |
|
8757
d529e239a510
Remove 'const' qualifier from variable in av_parse_video_frame_size().
bcoudurier
parents:
8756
diff
changeset
|
1153 frame_width = strtol(p, &p, 10); |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1154 if (*p) |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1155 p++; |
|
8757
d529e239a510
Remove 'const' qualifier from variable in av_parse_video_frame_size().
bcoudurier
parents:
8756
diff
changeset
|
1156 frame_height = strtol(p, &p, 10); |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1157 } |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1158 if (frame_width <= 0 || frame_height <= 0) |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1159 return -1; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1160 *width_ptr = frame_width; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1161 *height_ptr = frame_height; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1162 return 0; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1163 } |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1164 |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1165 int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg) |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1166 { |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1167 int i; |
| 8042 | 1168 int n = FF_ARRAY_ELEMS(video_frame_rate_abbrs); |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1169 char* cp; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1170 |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1171 /* First, we check our abbreviation table */ |
|
5176
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1172 for (i = 0; i < n; ++i) |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1173 if (!strcmp(video_frame_rate_abbrs[i].abbr, arg)) { |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1174 frame_rate->num = video_frame_rate_abbrs[i].rate_num; |
|
82f7eaa32f46
split frame rate and frame size abbreviation into two structures
benoit
parents:
5127
diff
changeset
|
1175 frame_rate->den = video_frame_rate_abbrs[i].rate_den; |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1176 return 0; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1177 } |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1178 |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1179 /* Then, we try to parse it as fraction */ |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1180 cp = strchr(arg, '/'); |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1181 if (!cp) |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1182 cp = strchr(arg, ':'); |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1183 if (cp) { |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1184 char* cpp; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1185 frame_rate->num = strtol(arg, &cpp, 10); |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1186 if (cpp != arg || cpp == cp) |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1187 frame_rate->den = strtol(cp+1, &cpp, 10); |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1188 else |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1189 frame_rate->num = 0; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1190 } |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1191 else { |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1192 /* Finally we give up and parse it as double */ |
| 7826 | 1193 AVRational time_base = av_d2q(strtod(arg, 0), 1001000); |
|
5126
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1194 frame_rate->den = time_base.den; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1195 frame_rate->num = time_base.num; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1196 } |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1197 if (!frame_rate->num || !frame_rate->den) |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1198 return -1; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1199 else |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1200 return 0; |
|
7982b376b58a
Move the video size and rate abbreviations system from libavformat to libavcodec
benoit
parents:
4986
diff
changeset
|
1201 } |
|
7530
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1202 |
|
10832
f20726a6d538
Add a function to match a 2 element vector of uint16_t and use it in h263 and svq1
michael
parents:
10779
diff
changeset
|
1203 int ff_match_2uint16(const uint16_t (*tab)[2], int size, int a, int b){ |
|
f20726a6d538
Add a function to match a 2 element vector of uint16_t and use it in h263 and svq1
michael
parents:
10779
diff
changeset
|
1204 int i; |
|
f20726a6d538
Add a function to match a 2 element vector of uint16_t and use it in h263 and svq1
michael
parents:
10779
diff
changeset
|
1205 for(i=0; i<size && !(tab[i][0]==a && tab[i][1]==b); i++); |
|
f20726a6d538
Add a function to match a 2 element vector of uint16_t and use it in h263 and svq1
michael
parents:
10779
diff
changeset
|
1206 return i; |
|
f20726a6d538
Add a function to match a 2 element vector of uint16_t and use it in h263 and svq1
michael
parents:
10779
diff
changeset
|
1207 } |
|
f20726a6d538
Add a function to match a 2 element vector of uint16_t and use it in h263 and svq1
michael
parents:
10779
diff
changeset
|
1208 |
|
9891
7ad7d4094d1f
Rename ff_log_missing_feature() to av_log_missing_feature().
rbultje
parents:
9787
diff
changeset
|
1209 void av_log_missing_feature(void *avc, const char *feature, int want_sample) |
|
7530
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1210 { |
|
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1211 av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg " |
|
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1212 "version to the newest one from SVN. If the problem still " |
|
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1213 "occurs, it means that your file has a feature which has not " |
|
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1214 "been implemented.", feature); |
|
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1215 if(want_sample) |
|
9891
7ad7d4094d1f
Rename ff_log_missing_feature() to av_log_missing_feature().
rbultje
parents:
9787
diff
changeset
|
1216 av_log_ask_for_sample(avc, NULL); |
|
8603
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1217 else |
|
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1218 av_log(avc, AV_LOG_WARNING, "\n"); |
|
7530
398636f16e7e
Add a generic function to lavc to log messages about missing features.
superdump
parents:
7475
diff
changeset
|
1219 } |
|
8603
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1220 |
|
9891
7ad7d4094d1f
Rename ff_log_missing_feature() to av_log_missing_feature().
rbultje
parents:
9787
diff
changeset
|
1221 void av_log_ask_for_sample(void *avc, const char *msg) |
|
8603
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1222 { |
|
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1223 if (msg) |
|
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1224 av_log(avc, AV_LOG_WARNING, "%s ", msg); |
|
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1225 av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample " |
|
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1226 "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ " |
|
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1227 "and contact the ffmpeg-devel mailing list.\n"); |
|
555c2ab21d84
Split ff_log_missing_feature into ff_log_missing_feature
benoit
parents:
8596
diff
changeset
|
1228 } |
| 9030 | 1229 |
| 1230 static AVHWAccel *first_hwaccel = NULL; | |
| 1231 | |
| 1232 void av_register_hwaccel(AVHWAccel *hwaccel) | |
| 1233 { | |
| 1234 AVHWAccel **p = &first_hwaccel; | |
| 1235 while (*p) | |
| 1236 p = &(*p)->next; | |
| 1237 *p = hwaccel; | |
| 1238 hwaccel->next = NULL; | |
| 1239 } | |
| 9031 | 1240 |
| 1241 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel) | |
| 1242 { | |
| 1243 return hwaccel ? hwaccel->next : first_hwaccel; | |
| 1244 } | |
| 9032 | 1245 |
| 1246 AVHWAccel *ff_find_hwaccel(enum CodecID codec_id, enum PixelFormat pix_fmt) | |
| 1247 { | |
| 1248 AVHWAccel *hwaccel=NULL; | |
| 1249 | |
| 1250 while((hwaccel= av_hwaccel_next(hwaccel))){ | |
| 1251 if ( hwaccel->id == codec_id | |
| 1252 && hwaccel->pix_fmt == pix_fmt) | |
| 1253 return hwaccel; | |
| 1254 } | |
| 1255 return NULL; | |
| 1256 } | |
| 9742 | 1257 |
| 1258 int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op)) | |
| 1259 { | |
| 1260 if (ff_lockmgr_cb) { | |
| 1261 if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_DESTROY)) | |
| 1262 return -1; | |
| 1263 } | |
| 1264 | |
| 1265 ff_lockmgr_cb = cb; | |
| 1266 | |
| 1267 if (ff_lockmgr_cb) { | |
| 1268 if (ff_lockmgr_cb(&codec_mutex, AV_LOCK_CREATE)) | |
| 1269 return -1; | |
| 1270 } | |
| 1271 return 0; | |
| 1272 } |
