avcodec/mediacodec: use inline code for coderefs

Avoids doxy to interpret these as internal references forced by the #
character, fixing the warnings:

  warning: explicit link request to 'nanoTime()' could not be resolved
  warning: explicit link request to 'releaseOutputBuffer(int,long)'
  could not be resolved
This commit is contained in:
Marvin Scholz 2022-09-24 19:53:13 +02:00 committed by Anton Khirnov
parent aba8cf654f
commit 56bbfe1136
1 changed files with 3 additions and 3 deletions

View File

@ -88,9 +88,9 @@ int av_mediacodec_release_buffer(AVMediaCodecBuffer *buffer, int render);
/**
* Release a MediaCodec buffer and render it at the given time to the surface
* that is associated with the decoder. The timestamp must be within one second
* of the current java/lang/System#nanoTime() (which is implemented using
* CLOCK_MONOTONIC on Android). See the Android MediaCodec documentation
* of android/media/MediaCodec#releaseOutputBuffer(int,long) for more details.
* of the current `java/lang/System#nanoTime()` (which is implemented using
* `CLOCK_MONOTONIC` on Android). See the Android MediaCodec documentation
* of `android/media/MediaCodec#releaseOutputBuffer(int,long)` for more details.
*
* @param buffer the buffer to render
* @param time timestamp in nanoseconds of when to render the buffer