Browse Source

lavc: rename bsf.h to bsf_internal.h

This will allow adding a public header named bsf.h
tags/n4.3
Anton Khirnov 5 years ago
parent
commit
bf80725352
39 changed files with 41 additions and 41 deletions
  1. +1
    -1
      libavcodec/aac_adtstoasc_bsf.c
  2. +1
    -1
      libavcodec/av1_frame_merge_bsf.c
  3. +1
    -1
      libavcodec/av1_frame_split_bsf.c
  4. +1
    -1
      libavcodec/av1_metadata_bsf.c
  5. +1
    -1
      libavcodec/bitstream_filters.c
  6. +1
    -1
      libavcodec/bsf.c
  7. +3
    -3
      libavcodec/bsf_internal.h
  8. +1
    -1
      libavcodec/chomp_bsf.c
  9. +1
    -1
      libavcodec/dca_core_bsf.c
  10. +1
    -1
      libavcodec/dump_extradata_bsf.c
  11. +1
    -1
      libavcodec/eac3_core_bsf.c
  12. +1
    -1
      libavcodec/extract_extradata_bsf.c
  13. +1
    -1
      libavcodec/filter_units_bsf.c
  14. +1
    -1
      libavcodec/h264_metadata_bsf.c
  15. +1
    -1
      libavcodec/h264_mp4toannexb_bsf.c
  16. +1
    -1
      libavcodec/h264_redundant_pps_bsf.c
  17. +1
    -1
      libavcodec/h265_metadata_bsf.c
  18. +1
    -1
      libavcodec/hapqa_extract_bsf.c
  19. +1
    -1
      libavcodec/hevc_mp4toannexb_bsf.c
  20. +1
    -1
      libavcodec/imx_dump_header_bsf.c
  21. +1
    -1
      libavcodec/mjpeg2jpeg_bsf.c
  22. +1
    -1
      libavcodec/mjpega_dump_header_bsf.c
  23. +1
    -1
      libavcodec/movsub_bsf.c
  24. +1
    -1
      libavcodec/mp3_header_decompress_bsf.c
  25. +1
    -1
      libavcodec/mpeg2_metadata_bsf.c
  26. +1
    -1
      libavcodec/mpeg4_unpack_bframes_bsf.c
  27. +1
    -1
      libavcodec/noise_bsf.c
  28. +1
    -1
      libavcodec/null_bsf.c
  29. +1
    -1
      libavcodec/opus_metadata_bsf.c
  30. +1
    -1
      libavcodec/pcm_rechunk_bsf.c
  31. +1
    -1
      libavcodec/prores_metadata_bsf.c
  32. +1
    -1
      libavcodec/remove_extradata_bsf.c
  33. +1
    -1
      libavcodec/trace_headers_bsf.c
  34. +1
    -1
      libavcodec/truehd_core_bsf.c
  35. +1
    -1
      libavcodec/vp9_metadata_bsf.c
  36. +1
    -1
      libavcodec/vp9_raw_reorder_bsf.c
  37. +1
    -1
      libavcodec/vp9_superframe_bsf.c
  38. +1
    -1
      libavcodec/vp9_superframe_split_bsf.c
  39. +1
    -1
      tools/target_bsf_fuzzer.c

+ 1
- 1
libavcodec/aac_adtstoasc_bsf.c View File

@@ -22,7 +22,7 @@
#include "adts_header.h"
#include "adts_parser.h"
#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "put_bits.h"
#include "get_bits.h"
#include "mpeg4audio.h"


+ 1
- 1
libavcodec/av1_frame_merge_bsf.c View File

@@ -19,7 +19,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_av1.h"



+ 1
- 1
libavcodec/av1_frame_split_bsf.c View File

@@ -33,7 +33,7 @@
#include "libavutil/avassert.h"

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_av1.h"



+ 1
- 1
libavcodec/av1_metadata_bsf.c View File

@@ -19,7 +19,7 @@
#include "libavutil/common.h"
#include "libavutil/opt.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_av1.h"



+ 1
- 1
libavcodec/bitstream_filters.c View File

@@ -22,7 +22,7 @@
#include "libavutil/log.h"

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

extern const AVBitStreamFilter ff_aac_adtstoasc_bsf;
extern const AVBitStreamFilter ff_av1_frame_merge_bsf;


+ 1
- 1
libavcodec/bsf.c View File

@@ -26,7 +26,7 @@
#include "libavutil/bprint.h"

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

#define IS_EMPTY(pkt) (!(pkt)->data && !(pkt)->side_data_elems)



libavcodec/bsf.h → libavcodec/bsf_internal.h View File

@@ -16,8 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef AVCODEC_BSF_H
#define AVCODEC_BSF_H
#ifndef AVCODEC_BSF_INTERNAL_H
#define AVCODEC_BSF_INTERNAL_H

#include "avcodec.h"

@@ -41,4 +41,4 @@ int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt);

const AVClass *ff_bsf_child_class_next(const AVClass *prev);

#endif /* AVCODEC_BSF_H */
#endif /* AVCODEC_BSF_INTERNAL_H */

+ 1
- 1
libavcodec/chomp_bsf.c View File

@@ -20,7 +20,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

static int chomp_filter(AVBSFContext *ctx, AVPacket *pkt)
{


+ 1
- 1
libavcodec/dca_core_bsf.c View File

@@ -19,7 +19,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"
#include "dca_syncwords.h"



+ 1
- 1
libavcodec/dump_extradata_bsf.c View File

@@ -21,7 +21,7 @@
#include <string.h>

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

#include "libavutil/log.h"
#include "libavutil/opt.h"


+ 1
- 1
libavcodec/eac3_core_bsf.c View File

@@ -19,7 +19,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "get_bits.h"
#include "ac3_parser_internal.h"



+ 1
- 1
libavcodec/extract_extradata_bsf.c View File

@@ -26,7 +26,7 @@
#include "avcodec.h"
#include "av1.h"
#include "av1_parse.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"
#include "h2645_parse.h"
#include "h264.h"


+ 1
- 1
libavcodec/filter_units_bsf.c View File

@@ -21,7 +21,7 @@
#include "libavutil/common.h"
#include "libavutil/opt.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"




+ 1
- 1
libavcodec/h264_metadata_bsf.c View File

@@ -21,7 +21,7 @@
#include "libavutil/common.h"
#include "libavutil/opt.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_h264.h"
#include "h264.h"


+ 1
- 1
libavcodec/h264_mp4toannexb_bsf.c View File

@@ -26,7 +26,7 @@
#include "libavutil/mem.h"

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"
#include "h264.h"



+ 1
- 1
libavcodec/h264_redundant_pps_bsf.c View File

@@ -21,7 +21,7 @@
#include "libavutil/common.h"
#include "libavutil/mem.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_h264.h"
#include "h264.h"


+ 1
- 1
libavcodec/h265_metadata_bsf.c View File

@@ -19,7 +19,7 @@
#include "libavutil/common.h"
#include "libavutil/opt.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_h265.h"
#include "hevc.h"


+ 1
- 1
libavcodec/hapqa_extract_bsf.c View File

@@ -26,7 +26,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"
#include "hap.h"



+ 1
- 1
libavcodec/hevc_mp4toannexb_bsf.c View File

@@ -25,7 +25,7 @@
#include "libavutil/mem.h"

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"
#include "hevc.h"



+ 1
- 1
libavcodec/imx_dump_header_bsf.c View File

@@ -26,7 +26,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"




+ 1
- 1
libavcodec/mjpeg2jpeg_bsf.c View File

@@ -30,7 +30,7 @@
#include "libavutil/intreadwrite.h"

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "jpegtables.h"
#include "mjpeg.h"



+ 1
- 1
libavcodec/mjpega_dump_header_bsf.c View File

@@ -26,7 +26,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"
#include "mjpeg.h"



+ 1
- 1
libavcodec/movsub_bsf.c View File

@@ -21,7 +21,7 @@
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

static int text2movsub(AVBSFContext *ctx, AVPacket *out)
{


+ 1
- 1
libavcodec/mp3_header_decompress_bsf.c View File

@@ -21,7 +21,7 @@
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "mpegaudiodecheader.h"
#include "mpegaudiodata.h"



+ 1
- 1
libavcodec/mpeg2_metadata_bsf.c View File

@@ -20,7 +20,7 @@
#include "libavutil/common.h"
#include "libavutil/opt.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_mpeg2.h"
#include "mpeg12.h"


+ 1
- 1
libavcodec/mpeg4_unpack_bframes_bsf.c View File

@@ -20,7 +20,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "internal.h"
#include "mpeg4video.h"



+ 1
- 1
libavcodec/noise_bsf.c View File

@@ -21,7 +21,7 @@
#include <stdlib.h>

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

#include "libavutil/log.h"
#include "libavutil/opt.h"


+ 1
- 1
libavcodec/null_bsf.c View File

@@ -22,7 +22,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

const AVBitStreamFilter ff_null_bsf = {
.name = "null",


+ 1
- 1
libavcodec/opus_metadata_bsf.c View File

@@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "bsf.h"
#include "bsf_internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"



+ 1
- 1
libavcodec/pcm_rechunk_bsf.c View File

@@ -19,7 +19,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "libavutil/avassert.h"
#include "libavutil/opt.h"



+ 1
- 1
libavcodec/prores_metadata_bsf.c View File

@@ -28,7 +28,7 @@
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "bsf.h"
#include "bsf_internal.h"

typedef struct ProresMetadataContext {
const AVClass *class;


+ 1
- 1
libavcodec/remove_extradata_bsf.c View File

@@ -22,7 +22,7 @@
#include "libavutil/opt.h"

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"

enum RemoveFreq {
REMOVE_FREQ_KEYFRAME,


+ 1
- 1
libavcodec/trace_headers_bsf.c View File

@@ -22,7 +22,7 @@
#include "libavutil/common.h"
#include "libavutil/log.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"




+ 1
- 1
libavcodec/truehd_core_bsf.c View File

@@ -19,7 +19,7 @@
*/

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "get_bits.h"
#include "mlp_parse.h"
#include "mlp.h"


+ 1
- 1
libavcodec/vp9_metadata_bsf.c View File

@@ -20,7 +20,7 @@
#include "libavutil/common.h"
#include "libavutil/opt.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "cbs.h"
#include "cbs_vp9.h"



+ 1
- 1
libavcodec/vp9_raw_reorder_bsf.c View File

@@ -21,7 +21,7 @@
#include "libavutil/log.h"
#include "libavutil/mem.h"

#include "bsf.h"
#include "bsf_internal.h"
#include "get_bits.h"
#include "put_bits.h"



+ 1
- 1
libavcodec/vp9_superframe_bsf.c View File

@@ -21,7 +21,7 @@

#include "libavutil/avassert.h"
#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "get_bits.h"

#define MAX_CACHE 8


+ 1
- 1
libavcodec/vp9_superframe_split_bsf.c View File

@@ -25,7 +25,7 @@
#include <stddef.h>

#include "avcodec.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "bytestream.h"
#include "get_bits.h"



+ 1
- 1
tools/target_bsf_fuzzer.c View File

@@ -20,7 +20,7 @@
#include "libavutil/imgutils.h"

#include "libavcodec/avcodec.h"
#include "libavcodec/bsf.h"
#include "libavcodec/bsf_internal.h"
#include "libavcodec/bytestream.h"
#include "libavcodec/internal.h"



Loading…
Cancel
Save