aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-09 17:08:49 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-17 14:45:15 +0200
commit6af21de373c979bc2087717acb61e834768ebe4b (patch)
treeab7a47fe7a592aa3720a1619e88dcf3e59dfa49e /libavformat/internal.h
parentf5bfc11b5decdf4eef06d25d9699a1d4dcda0b8a (diff)
downloadffmpeg-6af21de373c979bc2087717acb61e834768ebe4b.tar.gz
avformat/utils: Use st for AVStream variable in avpriv_set_pts_info
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index d14dee5422..cc8c8f4b43 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -696,13 +696,13 @@ int64_t ff_gen_search(AVFormatContext *s, int stream_index,
* (numerator or denominator are non-positive), it leaves the stream
* unchanged.
*
- * @param s stream
+ * @param st stream
* @param pts_wrap_bits number of bits effectively used by the pts
* (used for wrap control)
* @param pts_num time base numerator
* @param pts_den time base denominator
*/
-void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits,
+void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits,
unsigned int pts_num, unsigned int pts_den);
/**