aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-27 01:57:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-27 01:57:34 +0200
commit0a7f3af27fa29f2eb9cab0de22703d9c26d12b2c (patch)
tree62ce5239426c430905853811a0664351fc55ccee /libavcodec/utils.c
parentd1ce43a3e8fe18e29a334b1a2fda82215f86f2b9 (diff)
parent53abe32409f13687c864b3cda077a1aa906a2459 (diff)
downloadffmpeg-0a7f3af27fa29f2eb9cab0de22703d9c26d12b2c.tar.gz
Merge commit '53abe32409f13687c864b3cda077a1aa906a2459'
* commit '53abe32409f13687c864b3cda077a1aa906a2459': avcodec: Mark argument in av_{parser|hwaccel|bitstream_filter}_next as const Conflicts: libavcodec/avcodec.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 24f059e699..6071380c40 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -3401,7 +3401,7 @@ void av_register_hwaccel(AVHWAccel *hwaccel)
last_hwaccel = &hwaccel->next;
}
-AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel)
+AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel)
{
return hwaccel ? hwaccel->next : first_hwaccel;
}