1 /*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 #include <string.h>
20
26
29
33 };
34
36 {
38
39 if (!pctx || !*pctx)
40 return;
41 ctx = *pctx;
42
47
49
53
56
58 }
59
61 {
66 }
67
74 };
75
77 {
79 }
80
82 {
84 int ret;
85
87 if (!ctx)
89
92
98 }
99
104 }
105
110 }
111
113
114 /* allocate priv data and init private options */
120 }
124 }
125 }
126
128 return 0;
131 return ret;
132 }
133
135 {
136 int ret, i;
137
138 /* check that the codec is supported */
142 break;
146 "bitstream filter '%s'. Supported codecs are: ",
152 }
155 }
156 }
157
158 /* initialize output parameters to be the same as input
159 * init below might overwrite that */
161 if (ret < 0)
162 return ret;
163
165
168 if (ret < 0)
169 return ret;
170 }
171
172 return 0;
173 }
174
176 {
177 int ret;
178
181 return 0;
182 }
183
187 }
188
192
194 if (ret < 0)
195 return ret;
197
198 return 0;
199 }
200
202 {
204 }
205
207 {
210
213
217
219 if (!tmp_pkt)
221
224
225 return 0;
226 }
227
229 {
231
234
238
240
241 return 0;
242 }
243
246
249
250 unsigned idx;
// index of currently processed BSF
252
255
256
258 {
260 int ret, i;
263
264 for (i = 0; i < lst->
nb_bsfs; ++i) {
266 if (ret < 0)
268
270
272 if (ret < 0)
274
277 }
278
281
283 return ret;
284 }
285
287 {
289 int ret;
290
293
294 while (1) {
298 /* no more packets from idx-1, try with previous */
299 ret = 0;
301 continue;
303 /* filter idx-1 is done, continue with idx...nb_bsfs */
305 continue;
306 }else if (ret < 0) {
307 /* filtering error */
308 break;
309 }
310 } else {
314 } else if (ret < 0)
315 break;
316 }
317
321 /* ff_bsf_get_packet_ref returned EOF and idx is first
322 * filter of yet not flushed filter chain */
324 } else {
326 }
328 if (ret < 0)
329 break;
331 } else {
332 /* The end of filter chain, break to return result */
333 break;
334 }
335 }
336
337 if (ret < 0)
339
340 return ret;
341 }
342
344 {
346 int i;
347
348 for (i = 0; i < lst->
nb_bsfs; ++i)
352 }
353
355 {
356 static const char *null_filter_name = "null";
359
361 return null_filter_name;
362
364 int i;
365 AVBPrint bp;
367
369 for (i = 0; i < lst->
nb_bsfs; i++)
372
374 }
375
377 }
378
383 };
384
388 .priv_class = &bsf_list_class,
392 };
393
397 };
398
400 {
402 }
403
405 {
406 int i;
407
408 if (!*lst)
409 return;
410
411 for (i = 0; i < (*lst)->nb_bsfs; ++i)
415 }
416
418 {
420 }
421
423 {
424 int ret;
427
429 if (!filter)
431
433 if (ret < 0)
434 return ret;
435
436 if (options) {
438 if (ret < 0)
440 }
441
443
445 if (ret < 0)
447
448 return ret;
449 }
450
452 {
453 int ret = 0;
455
456 if ((*lst)->nb_bsfs == 1) {
457 *bsf = (*lst)->bsfs[0];
459 (*lst)->nb_bsfs = 0;
461 }
462
464 if (ret < 0)
465 return ret;
466
467 ctx = (*bsf)->priv_data;
468
469 ctx->
bsfs = (*lst)->bsfs;
470 ctx->
nb_bsfs = (*lst)->nb_bsfs;
471
474 return ret;
475 }
476
478 {
479 char *bsf_name, *bsf_options_str, *
buf;
481 int ret = 0;
482
485
486 bsf_name =
av_strtok(buf,
"=", &bsf_options_str);
487 if (!bsf_name) {
490 }
491
492 if (bsf_options_str) {
494 if (ret < 0)
496 }
497
499
503 return ret;
504 }
505
507 {
509 char *bsf_str, *
buf, *dup, *saveptr;
510 int ret;
511
512 if (!str)
514
516 if (!lst)
518
522 }
523
524 while (1) {
526 if (!bsf_str)
527 break;
528
530 if (ret < 0)
532
534 }
535
538 if (ret < 0)
541 return ret;
542 }
543
545 {
547 }
void av_bsf_free(AVBSFContext **pctx)
Free a bitstream filter context and everything associated with it; write NULL into the supplied point...
const AVClass * priv_class
A class for the private data, used to declare bitstream filter private AVOptions. ...
AVCodecParameters * par_out
Parameters of the output stream.
void av_bprintf(AVBPrint *buf, const char *fmt,...)
static void * bsf_child_next(void *obj, void *prev)
#define LIBAVUTIL_VERSION_INT
Memory handling functions.
static av_cold int init(AVCodecContext *avctx)
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
const struct AVBitStreamFilter * filter
The bitstream filter this context is an instance of.
The bitstream filter state.
const char * av_default_item_name(void *ptr)
Return the context name.
const AVBitStreamFilter * av_bsf_get_by_name(const char *name)
Structure for chain/list of bitstream filters.
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
static const AVClass bsf_class
int av_bsf_get_null_filter(AVBSFContext **bsf)
Get null/pass-through bitstream filter.
void * priv_data
Opaque filter-specific private data.
This struct describes the properties of an encoded stream.
int av_bsf_init(AVBSFContext *ctx)
Prepare the filter for use, after all the parameters and options have been set.
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
void av_bsf_list_free(AVBSFList **lst)
Free list of bitstream filters.
int av_bsf_alloc(const AVBitStreamFilter *filter, AVBSFContext **pctx)
Allocate a context for a given bitstream filter.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
static const AVClass bsf_list_class
int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt)
Retrieve a filtered packet.
static void filter(int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, int clip)
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
AVCodecParameters * avcodec_parameters_alloc(void)
Allocate a new AVCodecParameters and set its fields to default values (unknown/invalid/0).
static av_cold int end(AVCodecContext *avctx)
static int bsf_parse_single(const char *str, AVBSFList *bsf_lst)
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
Move every field in src to dst and reset src.
#define AVERROR_EOF
End of file.
int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem)
Add an element to a dynamic array.
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
Copy the contents of src to dst.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int bsf_list_filter(AVBSFContext *bsf, AVPacket *out)
enum AVCodecID * codec_ids
A list of codec ids supported by the filter, terminated by AV_CODEC_ID_NONE.
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
AVRational time_base_in
The timebase used for the timestamps of the input packets.
static void bsf_list_close(AVBSFContext *bsf)
int(* init)(AVBSFContext *ctx)
void avcodec_parameters_free(AVCodecParameters **par)
Free an AVCodecParameters instance and everything associated with it and write NULL to the supplied p...
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
int av_bsf_list_append(AVBSFList *lst, AVBSFContext *bsf)
Append bitstream filter to the list of bitstream filters.
const AVClass * ff_bsf_child_class_next(const AVClass *prev)
const AVClass * av_bsf_get_class(void)
Get the AVClass for AVBSFContext.
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
int av_bsf_list_append2(AVBSFList *lst, const char *bsf_name, AVDictionary **options)
Construct new bitstream filter context given it's name and options and append it to the list of bitst...
AVRational time_base_out
The timebase used for the timestamps of the output packets.
int av_packet_make_refcounted(AVPacket *pkt)
Ensure the data described by a given packet is reference counted.
int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt)
Submit a packet for filtering.
const AVClass * av_class
A class for logging and AVOptions.
#define AVERROR_BSF_NOT_FOUND
Bitstream filter not found.
int av_opt_set_dict2(void *obj, AVDictionary **options, int search_flags)
Set all the options from a given dictionary on an object.
int av_dict_parse_string(AVDictionary **pm, const char *str, const char *key_val_sep, const char *pairs_sep, int flags)
Parse the key/value pairs list and add the parsed entries to a dictionary.
AVBSFList * av_bsf_list_alloc(void)
Allocate empty list of bitstream filters.
char * av_strdup(const char *s)
Duplicate a string.
Libavcodec external API header.
void(* close)(AVBSFContext *ctx)
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
Describe the class of an AVClass context structure.
Rational number (pair of numerator and denominator).
int(* filter)(AVBSFContext *ctx, AVPacket *pkt)
const char * name
Name of the codec described by this descriptor.
This struct describes the properties of a single codec described by an AVCodecID. ...
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok()...
const AVBitStreamFilter ff_list_bsf
int av_bsf_list_parse_str(const char *str, AVBSFContext **bsf_lst)
Parse string describing list of bitstream filters and create single AVBSFContext describing the whole...
void av_opt_free(void *obj)
Free all allocated objects in obj.
const OptionDef options[]
int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt)
Called by the bitstream filters to get the next packet for filtering.
static const char * bsf_list_item_name(void *ctx)
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
static int bsf_list_init(AVBSFContext *bsf)
AVBSFInternal * internal
Opaque libavcodec internal data.
This structure stores compressed data.
AVCodecParameters * par_in
Parameters of the input stream.
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
int av_bsf_list_finalize(AVBSFList **lst, AVBSFContext **bsf)
Finalize list of bitstream filters.