Browse Source

avcodec/h264dec: move ff_h264_ps_uninit prototype to h264_ps.h

It's the proper place since 8c7932884d

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n3.2
James Almer 9 years ago
parent
commit
613c86299f
2 changed files with 5 additions and 6 deletions
  1. +5
    -0
      libavcodec/h264_ps.h
  2. +0
    -6
      libavcodec/h264dec.h

+ 5
- 0
libavcodec/h264_ps.h View File

@@ -156,4 +156,9 @@ int ff_h264_decode_seq_parameter_set(GetBitContext *gb, AVCodecContext *avctx,
int ff_h264_decode_picture_parameter_set(GetBitContext *gb, AVCodecContext *avctx,
H264ParamSets *ps, int bit_length);

/**
* Uninit H264 param sets structure.
*/
void ff_h264_ps_uninit(H264ParamSets *ps);

#endif /* AVCODEC_H264_PS_H */

+ 0
- 6
libavcodec/h264dec.h View File

@@ -563,12 +563,6 @@ typedef struct H264Context {

extern const uint16_t ff_h264_mb_sizes[4];

/**
* Uninit H264 param sets structure.
*/

void ff_h264_ps_uninit(H264ParamSets *ps);

/**
* Reconstruct bitstream slice_type.
*/


Loading…
Cancel
Save