diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 09:45:27 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 2361e59b98f1c78d9720e72aabfb847dd9906f12 (patch) | |
tree | fec1dc565e332fb608728c74e331c81cf79a9e31 /libavcodec/dirac.h | |
parent | 242c73a0fd664be8fc1d69cc3e383c13524914b5 (diff) | |
download | ffmpeg-2361e59b98f1c78d9720e72aabfb847dd9906f12.tar.gz |
lavc: use avpriv_ prefix for ff_dirac_parse_sequence_header.
It's used in lavf.
Diffstat (limited to 'libavcodec/dirac.h')
-rw-r--r-- | libavcodec/dirac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dirac.h b/libavcodec/dirac.h index 0be66c2d91..f8063d9e28 100644 --- a/libavcodec/dirac.h +++ b/libavcodec/dirac.h @@ -51,7 +51,7 @@ typedef struct { uint8_t color_spec_index; ///< index into dirac_color_spec_presets[] } dirac_source_params; -int ff_dirac_parse_sequence_header(AVCodecContext *avctx, GetBitContext *gb, - dirac_source_params *source); +int avpriv_dirac_parse_sequence_header(AVCodecContext *avctx, GetBitContext *gb, + dirac_source_params *source); #endif /* AVCODEC_DIRAC_H */ |