Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

max_b_frame and control bit_rate #121

Merged
merged 27 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions codec_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -455,3 +455,43 @@ func goAstiavCodecContextGetFormat(cc *C.AVCodecContext, pfsCPtr *C.enum_AVPixel
// Callback
return C.enum_AVPixelFormat(c(pfs))
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#a3e5334a611a3e2a6a653805bb9e2d4d4
func (cc *CodecContext) MaxBFrames() int {
return int(cc.c.max_b_frames)
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#a3e5334a611a3e2a6a653805bb9e2d4d4
func (cc *CodecContext) SetMaxBFrames(n int) {
cc.c.max_b_frames = C.int(n)
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#aa2b5582f1a360534310b686cc3f7c668
func (cc *CodecContext) RcMaxRate() int64 {
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
return int64(cc.c.rc_max_rate)
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#aa2b5582f1a360534310b686cc3f7c668
func (cc *CodecContext) SetRcMaxRate(n int64) {
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
cc.c.rc_max_rate = C.int64_t(n)
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#ac265c70b89e87455ec05eb2978def81b
func (cc *CodecContext) RcMinRate() int64 {
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
return int64(cc.c.rc_min_rate)
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#ac265c70b89e87455ec05eb2978def81b
func (cc *CodecContext) SetRcMinRate(n int64) {
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
cc.c.rc_min_rate = C.int64_t(n)
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#a15000607a7e2371162348bb35b0184c1
func (cc *CodecContext) RcBufferSize() int {
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
return int(cc.c.rc_buffer_size)
}

// https://ffmpeg.org/doxygen/7.0/structAVCodecContext.html#a15000607a7e2371162348bb35b0184c1
func (cc *CodecContext) SetRcBufferSize(n int) {
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
cc.c.rc_buffer_size = C.int(n)
}
8 changes: 8 additions & 0 deletions codec_context_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ func TestCodecContext(t *testing.T) {
cc4.SetTimeBase(NewRational(15, 1))
cc4.SetWidth(16)
cc4.SetExtraHardwareFrames(4)
cc4.SetMaxBFrames(1)
cc4.SetRcMaxRate(1_5000_000)
cc4.SetRcMinRate(1_5000_000)
cc4.SetRcBufferSize(1_5000_000)
require.Equal(t, int64(1), cc4.BitRate())
require.True(t, cc4.ChannelLayout().Equal(ChannelLayout21))
require.Equal(t, NewCodecContextFlags(4), cc4.Flags())
Expand All @@ -121,6 +125,10 @@ func TestCodecContext(t *testing.T) {
require.Equal(t, NewRational(15, 1), cc4.TimeBase())
require.Equal(t, 16, cc4.Width())
require.Equal(t, 4, cc4.ExtraHardwareFrames())
require.Equal(t, 1, cc4.MaxBFrames())
require.Equal(t, 1_5000_000, cc4.RcMaxRate())
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
require.Equal(t, 1_5000_000, cc4.RcMinRate())
oldma3095 marked this conversation as resolved.
Show resolved Hide resolved
require.Equal(t, 1_5000_000, cc4.RcBufferSize())

cc5 := AllocCodecContext(nil)
require.NotNil(t, cc5)
Expand Down
Loading