FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
bsf.c
Go to the documentation of this file.
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 
21 #include "libavutil/log.h"
22 #include "libavutil/mem.h"
23 #include "libavutil/opt.h"
24 #include "libavutil/avstring.h"
25 #include "libavutil/bprint.h"
26 
27 #include "avcodec.h"
28 #include "bsf.h"
29 
30 struct AVBSFInternal {
32  int eof;
33 };
34 
36 {
38 
39  if (!pctx || !*pctx)
40  return;
41  ctx = *pctx;
42 
43  if (ctx->filter->close)
44  ctx->filter->close(ctx);
45  if (ctx->filter->priv_class && ctx->priv_data)
46  av_opt_free(ctx->priv_data);
47 
48  av_opt_free(ctx);
49 
51  av_freep(&ctx->internal);
52  av_freep(&ctx->priv_data);
53 
56 
57  av_freep(pctx);
58 }
59 
60 static void *bsf_child_next(void *obj, void *prev)
61 {
62  AVBSFContext *ctx = obj;
63  if (!prev && ctx->filter->priv_class)
64  return ctx->priv_data;
65  return NULL;
66 }
67 
68 static const AVClass bsf_class = {
69  .class_name = "AVBSFContext",
70  .item_name = av_default_item_name,
71  .version = LIBAVUTIL_VERSION_INT,
72  .child_next = bsf_child_next,
73  .child_class_next = ff_bsf_child_class_next,
74 };
75 
77 {
78  return &bsf_class;
79 }
80 
82 {
84  int ret;
85 
86  ctx = av_mallocz(sizeof(*ctx));
87  if (!ctx)
88  return AVERROR(ENOMEM);
89 
90  ctx->av_class = &bsf_class;
91  ctx->filter = filter;
92 
95  if (!ctx->par_in || !ctx->par_out) {
96  ret = AVERROR(ENOMEM);
97  goto fail;
98  }
99 
100  ctx->internal = av_mallocz(sizeof(*ctx->internal));
101  if (!ctx->internal) {
102  ret = AVERROR(ENOMEM);
103  goto fail;
104  }
105 
107  if (!ctx->internal->buffer_pkt) {
108  ret = AVERROR(ENOMEM);
109  goto fail;
110  }
111 
112  av_opt_set_defaults(ctx);
113 
114  /* allocate priv data and init private options */
115  if (filter->priv_data_size) {
116  ctx->priv_data = av_mallocz(filter->priv_data_size);
117  if (!ctx->priv_data) {
118  ret = AVERROR(ENOMEM);
119  goto fail;
120  }
121  if (filter->priv_class) {
122  *(const AVClass **)ctx->priv_data = filter->priv_class;
124  }
125  }
126 
127  *pctx = ctx;
128  return 0;
129 fail:
130  av_bsf_free(&ctx);
131  return ret;
132 }
133 
135 {
136  int ret, i;
137 
138  /* check that the codec is supported */
139  if (ctx->filter->codec_ids) {
140  for (i = 0; ctx->filter->codec_ids[i] != AV_CODEC_ID_NONE; i++)
141  if (ctx->par_in->codec_id == ctx->filter->codec_ids[i])
142  break;
143  if (ctx->filter->codec_ids[i] == AV_CODEC_ID_NONE) {
145  av_log(ctx, AV_LOG_ERROR, "Codec '%s' (%d) is not supported by the "
146  "bitstream filter '%s'. Supported codecs are: ",
147  desc ? desc->name : "unknown", ctx->par_in->codec_id, ctx->filter->name);
148  for (i = 0; ctx->filter->codec_ids[i] != AV_CODEC_ID_NONE; i++) {
149  desc = avcodec_descriptor_get(ctx->filter->codec_ids[i]);
150  av_log(ctx, AV_LOG_ERROR, "%s (%d) ",
151  desc ? desc->name : "unknown", ctx->filter->codec_ids[i]);
152  }
153  av_log(ctx, AV_LOG_ERROR, "\n");
154  return AVERROR(EINVAL);
155  }
156  }
157 
158  /* initialize output parameters to be the same as input
159  * init below might overwrite that */
160  ret = avcodec_parameters_copy(ctx->par_out, ctx->par_in);
161  if (ret < 0)
162  return ret;
163 
164  ctx->time_base_out = ctx->time_base_in;
165 
166  if (ctx->filter->init) {
167  ret = ctx->filter->init(ctx);
168  if (ret < 0)
169  return ret;
170  }
171 
172  return 0;
173 }
174 
176 {
177  ctx->internal->eof = 0;
178 
180 
181  if (ctx->filter->flush)
182  ctx->filter->flush(ctx);
183 }
184 
186 {
187  int ret;
188 
189  if (!pkt || (!pkt->data && !pkt->side_data_elems)) {
190  ctx->internal->eof = 1;
191  return 0;
192  }
193 
194  if (ctx->internal->eof) {
195  av_log(ctx, AV_LOG_ERROR, "A non-NULL packet sent after an EOF.\n");
196  return AVERROR(EINVAL);
197  }
198 
199  if (ctx->internal->buffer_pkt->data ||
201  return AVERROR(EAGAIN);
202 
203  ret = av_packet_make_refcounted(pkt);
204  if (ret < 0)
205  return ret;
207 
208  return 0;
209 }
210 
212 {
213  return ctx->filter->filter(ctx, pkt);
214 }
215 
217 {
218  AVBSFInternal *in = ctx->internal;
219  AVPacket *tmp_pkt;
220 
221  if (in->eof)
222  return AVERROR_EOF;
223 
224  if (!ctx->internal->buffer_pkt->data &&
226  return AVERROR(EAGAIN);
227 
228  tmp_pkt = av_packet_alloc();
229  if (!tmp_pkt)
230  return AVERROR(ENOMEM);
231 
232  *pkt = ctx->internal->buffer_pkt;
233  ctx->internal->buffer_pkt = tmp_pkt;
234 
235  return 0;
236 }
237 
239 {
240  AVBSFInternal *in = ctx->internal;
241 
242  if (in->eof)
243  return AVERROR_EOF;
244 
245  if (!ctx->internal->buffer_pkt->data &&
247  return AVERROR(EAGAIN);
248 
250 
251  return 0;
252 }
253 
254 typedef struct BSFListContext {
255  const AVClass *class;
256 
258  int nb_bsfs;
259 
260  unsigned idx; // index of currently processed BSF
261  unsigned flushed_idx; // index of BSF being flushed
262 
263  char * item_name;
265 
266 
267 static int bsf_list_init(AVBSFContext *bsf)
268 {
269  BSFListContext *lst = bsf->priv_data;
270  int ret, i;
271  const AVCodecParameters *cod_par = bsf->par_in;
272  AVRational tb = bsf->time_base_in;
273 
274  for (i = 0; i < lst->nb_bsfs; ++i) {
275  ret = avcodec_parameters_copy(lst->bsfs[i]->par_in, cod_par);
276  if (ret < 0)
277  goto fail;
278 
279  lst->bsfs[i]->time_base_in = tb;
280 
281  ret = av_bsf_init(lst->bsfs[i]);
282  if (ret < 0)
283  goto fail;
284 
285  cod_par = lst->bsfs[i]->par_out;
286  tb = lst->bsfs[i]->time_base_out;
287  }
288 
289  bsf->time_base_out = tb;
290  ret = avcodec_parameters_copy(bsf->par_out, cod_par);
291 
292 fail:
293  return ret;
294 }
295 
297 {
298  BSFListContext *lst = bsf->priv_data;
299  int ret;
300 
301  if (!lst->nb_bsfs)
302  return ff_bsf_get_packet_ref(bsf, out);
303 
304  while (1) {
305  if (lst->idx > lst->flushed_idx) {
306  ret = av_bsf_receive_packet(lst->bsfs[lst->idx-1], out);
307  if (ret == AVERROR(EAGAIN)) {
308  /* no more packets from idx-1, try with previous */
309  ret = 0;
310  lst->idx--;
311  continue;
312  } else if (ret == AVERROR_EOF) {
313  /* filter idx-1 is done, continue with idx...nb_bsfs */
314  lst->flushed_idx = lst->idx;
315  continue;
316  }else if (ret < 0) {
317  /* filtering error */
318  break;
319  }
320  } else {
321  ret = ff_bsf_get_packet_ref(bsf, out);
322  if (ret == AVERROR_EOF) {
323  lst->idx = lst->flushed_idx;
324  } else if (ret < 0)
325  break;
326  }
327 
328  if (lst->idx < lst->nb_bsfs) {
329  AVPacket *pkt;
330  if (ret == AVERROR_EOF && lst->idx == lst->flushed_idx) {
331  /* ff_bsf_get_packet_ref returned EOF and idx is first
332  * filter of yet not flushed filter chain */
333  pkt = NULL;
334  } else {
335  pkt = out;
336  }
337  ret = av_bsf_send_packet(lst->bsfs[lst->idx], pkt);
338  if (ret < 0)
339  break;
340  lst->idx++;
341  } else {
342  /* The end of filter chain, break to return result */
343  break;
344  }
345  }
346 
347  if (ret < 0)
348  av_packet_unref(out);
349 
350  return ret;
351 }
352 
353 static void bsf_list_close(AVBSFContext *bsf)
354 {
355  BSFListContext *lst = bsf->priv_data;
356  int i;
357 
358  for (i = 0; i < lst->nb_bsfs; ++i)
359  av_bsf_free(&lst->bsfs[i]);
360  av_freep(&lst->bsfs);
361  av_freep(&lst->item_name);
362 }
363 
364 static const char *bsf_list_item_name(void *ctx)
365 {
366  static const char *null_filter_name = "null";
367  AVBSFContext *bsf_ctx = ctx;
368  BSFListContext *lst = bsf_ctx->priv_data;
369 
370  if (!lst->nb_bsfs)
371  return null_filter_name;
372 
373  if (!lst->item_name) {
374  int i;
375  AVBPrint bp;
376  av_bprint_init(&bp, 16, 128);
377 
378  av_bprintf(&bp, "bsf_list(");
379  for (i = 0; i < lst->nb_bsfs; i++)
380  av_bprintf(&bp, i ? ",%s" : "%s", lst->bsfs[i]->filter->name);
381  av_bprintf(&bp, ")");
382 
383  av_bprint_finalize(&bp, &lst->item_name);
384  }
385 
386  return lst->item_name;
387 }
388 
389 static const AVClass bsf_list_class = {
390  .class_name = "bsf_list",
391  .item_name = bsf_list_item_name,
392  .version = LIBAVUTIL_VERSION_INT,
393 };
394 
396  .name = "bsf_list",
397  .priv_data_size = sizeof(BSFListContext),
398  .priv_class = &bsf_list_class,
399  .init = bsf_list_init,
401  .close = bsf_list_close,
402 };
403 
404 struct AVBSFList {
406  int nb_bsfs;
407 };
408 
410 {
411  return av_mallocz(sizeof(AVBSFList));
412 }
413 
415 {
416  int i;
417 
418  if (!*lst)
419  return;
420 
421  for (i = 0; i < (*lst)->nb_bsfs; ++i)
422  av_bsf_free(&(*lst)->bsfs[i]);
423  av_free((*lst)->bsfs);
424  av_freep(lst);
425 }
426 
428 {
429  return av_dynarray_add_nofree(&lst->bsfs, &lst->nb_bsfs, bsf);
430 }
431 
432 int av_bsf_list_append2(AVBSFList *lst, const char *bsf_name, AVDictionary ** options)
433 {
434  int ret;
435  const AVBitStreamFilter *filter;
436  AVBSFContext *bsf;
437 
438  filter = av_bsf_get_by_name(bsf_name);
439  if (!filter)
440  return AVERROR_BSF_NOT_FOUND;
441 
442  ret = av_bsf_alloc(filter, &bsf);
443  if (ret < 0)
444  return ret;
445 
446  if (options) {
447  ret = av_opt_set_dict2(bsf, options, AV_OPT_SEARCH_CHILDREN);
448  if (ret < 0)
449  goto end;
450  }
451 
452  ret = av_bsf_list_append(lst, bsf);
453 
454 end:
455  if (ret < 0)
456  av_bsf_free(&bsf);
457 
458  return ret;
459 }
460 
462 {
463  int ret = 0;
465 
466  if ((*lst)->nb_bsfs == 1) {
467  *bsf = (*lst)->bsfs[0];
468  av_freep(&(*lst)->bsfs);
469  (*lst)->nb_bsfs = 0;
470  goto end;
471  }
472 
473  ret = av_bsf_alloc(&ff_list_bsf, bsf);
474  if (ret < 0)
475  return ret;
476 
477  ctx = (*bsf)->priv_data;
478 
479  ctx->bsfs = (*lst)->bsfs;
480  ctx->nb_bsfs = (*lst)->nb_bsfs;
481 
482 end:
483  av_freep(lst);
484  return ret;
485 }
486 
487 static int bsf_parse_single(const char *str, AVBSFList *bsf_lst)
488 {
489  char *bsf_name, *bsf_options_str, *buf;
490  AVDictionary *bsf_options = NULL;
491  int ret = 0;
492 
493  if (!(buf = av_strdup(str)))
494  return AVERROR(ENOMEM);
495 
496  bsf_name = av_strtok(buf, "=", &bsf_options_str);
497  if (!bsf_name) {
498  ret = AVERROR(EINVAL);
499  goto end;
500  }
501 
502  if (bsf_options_str) {
503  ret = av_dict_parse_string(&bsf_options, bsf_options_str, "=", ":", 0);
504  if (ret < 0)
505  goto end;
506  }
507 
508  ret = av_bsf_list_append2(bsf_lst, bsf_name, &bsf_options);
509 
510  av_dict_free(&bsf_options);
511 end:
512  av_free(buf);
513  return ret;
514 }
515 
516 int av_bsf_list_parse_str(const char *str, AVBSFContext **bsf_lst)
517 {
518  AVBSFList *lst;
519  char *bsf_str, *buf, *dup, *saveptr;
520  int ret;
521 
522  if (!str)
523  return av_bsf_get_null_filter(bsf_lst);
524 
525  lst = av_bsf_list_alloc();
526  if (!lst)
527  return AVERROR(ENOMEM);
528 
529  if (!(dup = buf = av_strdup(str))) {
530  ret = AVERROR(ENOMEM);
531  goto end;
532  }
533 
534  while (1) {
535  bsf_str = av_strtok(buf, ",", &saveptr);
536  if (!bsf_str)
537  break;
538 
539  ret = bsf_parse_single(bsf_str, lst);
540  if (ret < 0)
541  goto end;
542 
543  buf = NULL;
544  }
545 
546  ret = av_bsf_list_finalize(&lst, bsf_lst);
547 end:
548  if (ret < 0)
549  av_bsf_list_free(&lst);
550  av_free(dup);
551  return ret;
552 }
553 
555 {
556  return av_bsf_alloc(&ff_list_bsf, bsf);
557 }
void av_bsf_free(AVBSFContext **pctx)
Free a bitstream filter context and everything associated with it; write NULL into the supplied point...
Definition: bsf.c:35
#define NULL
Definition: coverity.c:32
AVBSFContext ** bsfs
Definition: bsf.c:257
const AVClass * priv_class
A class for the private data, used to declare bitstream filter private AVOptions. ...
Definition: avcodec.h:5771
AVCodecParameters * par_out
Parameters of the output stream.
Definition: avcodec.h:5737
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
static void * bsf_child_next(void *obj, void *prev)
Definition: bsf.c:60
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
Memory handling functions.
unsigned idx
Definition: bsf.c:260
const char * desc
Definition: nvenc.c:65
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1305
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3900
const struct AVBitStreamFilter * filter
The bitstream filter this context is an instance of.
Definition: avcodec.h:5712
The bitstream filter state.
Definition: avcodec.h:5703
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
const AVBitStreamFilter * av_bsf_get_by_name(const char *name)
Structure for chain/list of bitstream filters.
Definition: bsf.c:404
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:236
static AVPacket pkt
static const AVClass bsf_class
Definition: bsf.c:68
int av_bsf_get_null_filter(AVBSFContext **bsf)
Get null/pass-through bitstream filter.
Definition: bsf.c:554
void * priv_data
Opaque filter-specific private data.
Definition: avcodec.h:5724
This struct describes the properties of an encoded stream.
Definition: avcodec.h:3892
int av_bsf_init(AVBSFContext *ctx)
Prepare the filter for use, after all the parameters and options have been set.
Definition: bsf.c:134
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
void av_bsf_list_free(AVBSFList **lst)
Free list of bitstream filters.
Definition: bsf.c:414
int av_bsf_alloc(const AVBitStreamFilter *filter, AVBSFContext **pctx)
Allocate a context for a given bitstream filter.
Definition: bsf.c:81
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
static const AVClass bsf_list_class
Definition: bsf.c:389
int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt)
Retrieve a filtered packet.
Definition: bsf.c:211
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)
Definition: cfhd.c:153
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition: avpacket.c:62
AVOptions.
AVCodecParameters * avcodec_parameters_alloc(void)
Allocate a new AVCodecParameters and set its fields to default values (unknown/invalid/0).
Definition: utils.c:1992
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
static int bsf_parse_single(const char *str, AVBSFList *bsf_lst)
Definition: bsf.c:487
const char * name
Definition: avcodec.h:5753
uint8_t * data
Definition: avcodec.h:1445
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
Move every field in src to dst and reset src.
Definition: avpacket.c:653
#define AVERROR_EOF
End of file.
Definition: error.h:55
int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem)
Add an element to a dynamic array.
Definition: mem.c:294
#define av_log(a,...)
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
Copy the contents of src to dst.
Definition: utils.c:2013
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static int bsf_list_filter(AVBSFContext *bsf, AVPacket *out)
Definition: bsf.c:296
#define AVERROR(e)
Definition: error.h:43
enum AVCodecID * codec_ids
A list of codec ids supported by the filter, terminated by AV_CODEC_ID_NONE.
Definition: avcodec.h:5760
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:203
AVRational time_base_in
The timebase used for the timestamps of the input packets.
Definition: avcodec.h:5743
unsigned flushed_idx
Definition: bsf.c:261
int side_data_elems
Definition: avcodec.h:1457
static void bsf_list_close(AVBSFContext *bsf)
Definition: bsf.c:353
int eof
Definition: bsf.c:32
int(* init)(AVBSFContext *ctx)
Definition: avcodec.h:5782
void avcodec_parameters_free(AVCodecParameters **par)
Free an AVCodecParameters instance and everything associated with it and write NULL to the supplied p...
Definition: utils.c:2002
#define fail()
Definition: checkasm.h:117
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
Definition: codec_desc.c:3199
int av_bsf_list_append(AVBSFList *lst, AVBSFContext *bsf)
Append bitstream filter to the list of bitstream filters.
Definition: bsf.c:427
const AVClass * ff_bsf_child_class_next(const AVClass *prev)
const AVClass * av_bsf_get_class(void)
Get the AVClass for AVBSFContext.
Definition: bsf.c:76
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:556
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...
Definition: bsf.c:432
AVRational time_base_out
The timebase used for the timestamps of the output packets.
Definition: avcodec.h:5749
int av_packet_make_refcounted(AVPacket *pkt)
Ensure the data described by a given packet is reference counted.
Definition: avpacket.c:661
int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt)
Submit a packet for filtering.
Definition: bsf.c:185
char * item_name
Definition: bsf.c:263
AVFormatContext * ctx
Definition: movenc.c:48
const AVClass * av_class
A class for logging and AVOptions.
Definition: avcodec.h:5707
#define AVERROR_BSF_NOT_FOUND
Bitstream filter not found.
Definition: error.h:49
void(* flush)(AVBSFContext *ctx)
Definition: avcodec.h:5785
int av_opt_set_dict2(void *obj, AVDictionary **options, int search_flags)
Set all the options from a given dictionary on an object.
Definition: opt.c:1578
int nb_bsfs
Definition: bsf.c:258
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.
Definition: dict.c:180
AVBSFList * av_bsf_list_alloc(void)
Allocate empty list of bitstream filters.
Definition: bsf.c:409
AVBSFContext ** bsfs
Definition: bsf.c:405
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:251
Libavcodec external API header.
void(* close)(AVBSFContext *ctx)
Definition: avcodec.h:5784
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:598
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
void * buf
Definition: avisynth_c.h:690
Describe the class of an AVClass context structure.
Definition: log.h:67
AVPacket * buffer_pkt
Definition: bsf.c:31
Rational number (pair of numerator and denominator).
Definition: rational.h:58
int(* filter)(AVBSFContext *ctx, AVPacket *pkt)
Definition: avcodec.h:5783
const char * name
Name of the codec described by this descriptor.
Definition: avcodec.h:716
int nb_bsfs
Definition: bsf.c:406
This struct describes the properties of a single codec described by an AVCodecID. ...
Definition: avcodec.h:708
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()...
Definition: avstring.c:184
const AVBitStreamFilter ff_list_bsf
Definition: bsf.c:395
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...
Definition: bsf.c:516
void av_opt_free(void *obj)
Free all allocated objects in obj.
Definition: opt.c:1558
const OptionDef options[]
Definition: ffmpeg_opt.c:3324
int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt)
Called by the bitstream filters to get the next packet for filtering.
Definition: bsf.c:216
static const char * bsf_list_item_name(void *ctx)
Definition: bsf.c:364
#define av_free(p)
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition: avpacket.c:51
static int bsf_list_init(AVBSFContext *bsf)
Definition: bsf.c:267
void av_bsf_flush(AVBSFContext *ctx)
Reset the internal bitstream filter state / flush internal buffers.
Definition: bsf.c:175
FILE * out
Definition: movenc.c:54
#define av_freep(p)
AVBSFInternal * internal
Opaque libavcodec internal data.
Definition: avcodec.h:5718
This structure stores compressed data.
Definition: avcodec.h:1422
AVCodecParameters * par_in
Parameters of the input stream.
Definition: avcodec.h:5731
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition: bsf.c:238
#define tb
Definition: regdef.h:68
int av_bsf_list_finalize(AVBSFList **lst, AVBSFContext **bsf)
Finalize list of bitstream filters.
Definition: bsf.c:461