Browse Source

hevc: rename hevc.[ch] to hevcdec.[ch]

This is more consistent with the rest of libav and frees up the hevc.h
name for decoder-independent shared declarations.
tags/n3.3
Anton Khirnov 8 years ago
parent
commit
4abe3b049d
22 changed files with 24 additions and 24 deletions
  1. +1
    -1
      libavcodec/Makefile
  2. +1
    -1
      libavcodec/dxva2_hevc.c
  3. +1
    -1
      libavcodec/hevc_cabac.c
  4. +1
    -1
      libavcodec/hevc_data.c
  5. +1
    -1
      libavcodec/hevc_filter.c
  6. +1
    -1
      libavcodec/hevc_mp4toannexb_bsf.c
  7. +1
    -1
      libavcodec/hevc_mvs.c
  8. +1
    -1
      libavcodec/hevc_parser.c
  9. +1
    -1
      libavcodec/hevc_ps.c
  10. +1
    -1
      libavcodec/hevc_ps_enc.c
  11. +1
    -1
      libavcodec/hevc_refs.c
  12. +1
    -1
      libavcodec/hevc_sei.c
  13. +1
    -1
      libavcodec/hevcdec.c
  14. +3
    -3
      libavcodec/hevcdec.h
  15. +1
    -1
      libavcodec/hevcdsp_template.c
  16. +1
    -1
      libavcodec/hevcpred.c
  17. +1
    -1
      libavcodec/hevcpred_template.c
  18. +1
    -1
      libavcodec/qsvenc_hevc.c
  19. +1
    -1
      libavcodec/vaapi_encode_h265.c
  20. +1
    -1
      libavcodec/vdpau_hevc.c
  21. +1
    -1
      libavformat/hevc.c
  22. +1
    -1
      libavformat/hevcdec.c

+ 1
- 1
libavcodec/Makefile View File

@@ -264,7 +264,7 @@ OBJS-$(CONFIG_H264_QSV_ENCODER) += qsvenc_h264.o
OBJS-$(CONFIG_H264_VAAPI_ENCODER) += vaapi_encode_h264.o vaapi_encode_h26x.o
OBJS-$(CONFIG_HAP_DECODER) += hapdec.o hap.o
OBJS-$(CONFIG_HAP_ENCODER) += hapenc.o hap.o
OBJS-$(CONFIG_HEVC_DECODER) += hevc.o hevc_mvs.o hevc_ps.o hevc_sei.o \
OBJS-$(CONFIG_HEVC_DECODER) += hevcdec.o hevc_mvs.o hevc_ps.o hevc_sei.o \
hevc_cabac.o hevc_refs.o hevcpred.o \
hevcdsp.o hevc_filter.o h2645_parse.o hevc_data.o
OBJS-$(CONFIG_HEVC_NVENC_ENCODER) += nvenc_hevc.o


+ 1
- 1
libavcodec/dxva2_hevc.c View File

@@ -22,7 +22,7 @@

#include "libavutil/avassert.h"

#include "hevc.h"
#include "hevcdec.h"

// The headers above may include w32threads.h, which uses the original
// _WIN32_WINNT define, while dxva2_internal.h redefines it to target a


+ 1
- 1
libavcodec/hevc_cabac.c View File

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

#include "cabac_functions.h"
#include "hevc.h"
#include "hevcdec.h"

#define CABAC_MAX_BIN 31



+ 1
- 1
libavcodec/hevc_data.c View File

@@ -20,7 +20,7 @@

#include <stdint.h>

#include "hevc.h"
#include "hevcdec.h"

const uint8_t ff_hevc_diag_scan4x4_x[16] = {
0, 0, 1, 0,


+ 1
- 1
libavcodec/hevc_filter.c View File

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

#include "cabac_functions.h"
#include "hevc.h"
#include "hevcdec.h"

#define LUMA 0
#define CB 1


+ 1
- 1
libavcodec/hevc_mp4toannexb_bsf.c View File

@@ -27,7 +27,7 @@
#include "avcodec.h"
#include "bsf.h"
#include "bytestream.h"
#include "hevc.h"
#include "hevcdec.h"

#define MIN_HEVCC_LENGTH 23



+ 1
- 1
libavcodec/hevc_mvs.c View File

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

#include "hevc.h"
#include "hevcdec.h"

static const uint8_t l0_l1_cand_idx[12][2] = {
{ 0, 1, },


+ 1
- 1
libavcodec/hevc_parser.c View File

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

#include "golomb.h"
#include "hevc.h"
#include "hevcdec.h"
#include "h2645_parse.h"
#include "parser.h"



+ 1
- 1
libavcodec/hevc_ps.c View File

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

#include "golomb.h"
#include "hevc.h"
#include "hevcdec.h"

static const uint8_t default_scaling_list_intra[] = {
16, 16, 16, 16, 17, 18, 21, 24,


+ 1
- 1
libavcodec/hevc_ps_enc.c View File

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

#include "golomb.h"
#include "hevc.h"
#include "hevcdec.h"
#include "put_bits.h"

static void write_ptl_layer(PutBitContext *pb, PTLCommon *ptl)


+ 1
- 1
libavcodec/hevc_refs.c View File

@@ -26,7 +26,7 @@

#include "internal.h"
#include "thread.h"
#include "hevc.h"
#include "hevcdec.h"

void ff_hevc_unref_frame(HEVCContext *s, HEVCFrame *frame, int flags)
{


+ 1
- 1
libavcodec/hevc_sei.c View File

@@ -23,7 +23,7 @@
*/

#include "golomb.h"
#include "hevc.h"
#include "hevcdec.h"

enum HEVC_SEI_TYPE {
SEI_TYPE_BUFFERING_PERIOD = 0,


libavcodec/hevc.c → libavcodec/hevcdec.c View File

@@ -36,7 +36,7 @@
#include "bytestream.h"
#include "cabac_functions.h"
#include "golomb.h"
#include "hevc.h"
#include "hevcdec.h"
#include "profiles.h"

const uint8_t ff_hevc_qpel_extra_before[4] = { 0, 3, 3, 3 };

libavcodec/hevc.h → libavcodec/hevcdec.h View File

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

#ifndef AVCODEC_HEVC_H
#define AVCODEC_HEVC_H
#ifndef AVCODEC_HEVCDEC_H
#define AVCODEC_HEVCDEC_H

#include <stddef.h>
#include <stdint.h>
@@ -1013,4 +1013,4 @@ extern const uint8_t ff_hevc_diag_scan4x4_y[16];
extern const uint8_t ff_hevc_diag_scan8x8_x[64];
extern const uint8_t ff_hevc_diag_scan8x8_y[64];

#endif /* AVCODEC_HEVC_H */
#endif /* AVCODEC_HEVCDEC_H */

+ 1
- 1
libavcodec/hevcdsp_template.c View File

@@ -21,7 +21,7 @@
*/

#include "get_bits.h"
#include "hevc.h"
#include "hevcdec.h"

#include "bit_depth_template.c"



+ 1
- 1
libavcodec/hevcpred.c View File

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

#include "hevc.h"
#include "hevcdec.h"

#define BIT_DEPTH 8
#include "hevcpred_template.c"


+ 1
- 1
libavcodec/hevcpred_template.c View File

@@ -22,7 +22,7 @@

#include "libavutil/pixdesc.h"

#include "hevc.h"
#include "hevcdec.h"

#include "bit_depth_template.c"



+ 1
- 1
libavcodec/qsvenc_hevc.c View File

@@ -30,7 +30,7 @@
#include "avcodec.h"
#include "bytestream.h"
#include "get_bits.h"
#include "hevc.h"
#include "hevcdec.h"
#include "h2645_parse.h"
#include "internal.h"
#include "qsv.h"


+ 1
- 1
libavcodec/vaapi_encode_h265.c View File

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

#include "avcodec.h"
#include "hevc.h"
#include "hevcdec.h"
#include "internal.h"
#include "put_bits.h"
#include "vaapi_encode.h"


+ 1
- 1
libavcodec/vdpau_hevc.c View File

@@ -24,7 +24,7 @@

#include "avcodec.h"
#include "internal.h"
#include "hevc.h"
#include "hevcdec.h"
#include "vdpau.h"
#include "vdpau_internal.h"



+ 1
- 1
libavformat/hevc.c View File

@@ -20,7 +20,7 @@

#include "libavcodec/get_bits.h"
#include "libavcodec/golomb.h"
#include "libavcodec/hevc.h"
#include "libavcodec/hevcdec.h"
#include "libavutil/intreadwrite.h"
#include "avc.h"
#include "avio.h"


+ 1
- 1
libavformat/hevcdec.c View File

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

#include "libavcodec/hevc.h"
#include "libavcodec/hevcdec.h"

#include "avformat.h"
#include "rawdec.h"


Loading…
Cancel
Save