Browse Source

avcodec/dnxhddata: remove dead code

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.0
James Almer 7 years ago
parent
commit
1b6e52c68f
2 changed files with 1 additions and 11 deletions
  1. +0
    -7
      libavcodec/dnxhddata.c
  2. +1
    -4
      libavcodec/dnxhddata.h

+ 0
- 7
libavcodec/dnxhddata.c View File

@@ -1100,13 +1100,6 @@ int avpriv_dnxhd_get_interlaced(int cid)
return ff_dnxhd_cid_table[i].flags & DNXHD_INTERLACED ? 1 : 0;
}

#if LIBAVCODEC_VERSION_MAJOR < 58
uint64_t avpriv_dnxhd_parse_header_prefix(const uint8_t *buf)
{
return ff_dnxhd_parse_header_prefix(buf);
}
#endif

static int dnxhd_find_hr_cid(AVCodecContext *avctx)
{
switch (avctx->profile) {


+ 1
- 4
libavcodec/dnxhddata.h View File

@@ -105,8 +105,5 @@ static av_always_inline int ff_dnxhd_get_hr_frame_size(int cid, int w, int h)

int avpriv_dnxhd_get_frame_size(int cid);
int avpriv_dnxhd_get_interlaced(int cid);
#if LIBAVCODEC_VERSION_MAJOR < 58
attribute_deprecated
uint64_t avpriv_dnxhd_parse_header_prefix(const uint8_t *buf);
#endif

#endif /* AVCODEC_DNXHDDATA_H */

Loading…
Cancel
Save