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>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user