diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-03-21 08:36:51 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-03-28 09:43:31 +0200 |
commit | 52ec149fbee57b6ca817049c9706212a0774a32c (patch) | |
tree | 0e211fd70da5d81069da110d8eb8e50a255ad77b /libavcodec/h2645_parse.h | |
parent | 8229eff4b7a98ae5d85bb75f3bb072781b4a8ebe (diff) | |
download | ffmpeg-52ec149fbee57b6ca817049c9706212a0774a32c.tar.gz |
h2645_parse: change the AVCodecContext* parameter to void*
This should make it more clear that it is not supposed to be used for
anything except logging.
Diffstat (limited to 'libavcodec/h2645_parse.h')
-rw-r--r-- | libavcodec/h2645_parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h2645_parse.h b/libavcodec/h2645_parse.h index eaf7d60917..db9800736f 100644 --- a/libavcodec/h2645_parse.h +++ b/libavcodec/h2645_parse.h @@ -59,7 +59,7 @@ int ff_h2645_extract_rbsp(const uint8_t *src, int length, * Split an input packet into NAL units. */ int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length, - AVCodecContext *avctx, int is_nalff, int nal_length_size); + void *logctx, int is_nalff, int nal_length_size); /** * Free all the allocated memory in the packet. |