mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Merge commit '53abe32409'
* commit '53abe32409':
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:
commit
0a7f3af27f
4 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue