You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
3.4KB

  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <string.h>
  21. #include "avcodec.h"
  22. #include "bsf.h"
  23. #include "libavutil/log.h"
  24. #include "libavutil/opt.h"
  25. enum DumpFreq {
  26. DUMP_FREQ_KEYFRAME,
  27. DUMP_FREQ_ALL,
  28. };
  29. typedef struct DumpExtradataContext {
  30. const AVClass *class;
  31. AVPacket pkt;
  32. int freq;
  33. } DumpExtradataContext;
  34. static int dump_extradata(AVBSFContext *ctx, AVPacket *out)
  35. {
  36. DumpExtradataContext *s = ctx->priv_data;
  37. AVPacket *in = &s->pkt;
  38. int ret = 0;
  39. ret = ff_bsf_get_packet_ref(ctx, in);
  40. if (ret < 0)
  41. return ret;
  42. if (ctx->par_in->extradata &&
  43. (s->freq == DUMP_FREQ_ALL ||
  44. (s->freq == DUMP_FREQ_KEYFRAME && in->flags & AV_PKT_FLAG_KEY)) &&
  45. (in->size < ctx->par_in->extradata_size ||
  46. memcmp(in->data, ctx->par_in->extradata, ctx->par_in->extradata_size))) {
  47. if (in->size >= INT_MAX - ctx->par_in->extradata_size) {
  48. ret = AVERROR(ERANGE);
  49. goto fail;
  50. }
  51. ret = av_new_packet(out, in->size + ctx->par_in->extradata_size);
  52. if (ret < 0)
  53. goto fail;
  54. ret = av_packet_copy_props(out, in);
  55. if (ret < 0) {
  56. av_packet_unref(out);
  57. goto fail;
  58. }
  59. memcpy(out->data, ctx->par_in->extradata, ctx->par_in->extradata_size);
  60. memcpy(out->data + ctx->par_in->extradata_size, in->data, in->size);
  61. } else {
  62. av_packet_move_ref(out, in);
  63. }
  64. fail:
  65. av_packet_unref(in);
  66. return ret;
  67. }
  68. #define OFFSET(x) offsetof(DumpExtradataContext, x)
  69. #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM)
  70. static const AVOption options[] = {
  71. { "freq", "When to dump extradata", OFFSET(freq), AV_OPT_TYPE_INT,
  72. { .i64 = DUMP_FREQ_KEYFRAME }, DUMP_FREQ_KEYFRAME, DUMP_FREQ_ALL, FLAGS, "freq" },
  73. { "k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
  74. { "keyframe", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
  75. { "e", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL }, .flags = FLAGS, .unit = "freq" },
  76. { "all", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL }, .flags = FLAGS, .unit = "freq" },
  77. { NULL },
  78. };
  79. static const AVClass dump_extradata_class = {
  80. .class_name = "dump_extradata bsf",
  81. .item_name = av_default_item_name,
  82. .option = options,
  83. .version = LIBAVUTIL_VERSION_INT,
  84. };
  85. const AVBitStreamFilter ff_dump_extradata_bsf = {
  86. .name = "dump_extra",
  87. .priv_data_size = sizeof(DumpExtradataContext),
  88. .priv_class = &dump_extradata_class,
  89. .filter = dump_extradata,
  90. };