Commit f9614891 authored by Michael Niedermayer's avatar Michael Niedermayer

Fix precission typos

Found-by: ubitux
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a46a23d3
...@@ -1241,7 +1241,7 @@ static int reap_filters(void) ...@@ -1241,7 +1241,7 @@ static int reap_filters(void)
filtered_frame = ost->filtered_frame; filtered_frame = ost->filtered_frame;
while (1) { while (1) {
double float_pts = AV_NOPTS_VALUE; // this is identical to filtered_frame.pts but with higher precission double float_pts = AV_NOPTS_VALUE; // this is identical to filtered_frame.pts but with higher precision
ret = av_buffersink_get_frame_flags(filter, filtered_frame, ret = av_buffersink_get_frame_flags(filter, filtered_frame,
AV_BUFFERSINK_FLAG_NO_REQUEST); AV_BUFFERSINK_FLAG_NO_REQUEST);
if (ret < 0) { if (ret < 0) {
......
...@@ -342,7 +342,7 @@ av_cold int ff_mpv_encode_init(AVCodecContext *avctx) ...@@ -342,7 +342,7 @@ av_cold int ff_mpv_encode_init(AVCodecContext *avctx)
s->rtp_mode = !!avctx->rtp_payload_size; s->rtp_mode = !!avctx->rtp_payload_size;
s->intra_dc_precision = avctx->intra_dc_precision; s->intra_dc_precision = avctx->intra_dc_precision;
// workaround some differences between how applications specify dc precission // workaround some differences between how applications specify dc precision
if (s->intra_dc_precision < 0) { if (s->intra_dc_precision < 0) {
s->intra_dc_precision += 8; s->intra_dc_precision += 8;
} else if (s->intra_dc_precision >= 8) } else if (s->intra_dc_precision >= 8)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment