Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
25260b51
Commit
25260b51
authored
May 30, 2017
by
Tyler Jones
Committed by
Rostislav Pehlivanov
Jun 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vorbisenc: Include bufqueue and afqueue
parent
79941602
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
vorbisenc.c
libavcodec/vorbisenc.c
+10
-0
No files found.
libavcodec/vorbisenc.c
View file @
25260b51
...
@@ -34,6 +34,9 @@
...
@@ -34,6 +34,9 @@
#include "vorbis.h"
#include "vorbis.h"
#include "vorbis_enc_data.h"
#include "vorbis_enc_data.h"
#include "audio_frame_queue.h"
#include "libavfilter/bufferqueue.h"
#define BITSTREAM_WRITER_LE
#define BITSTREAM_WRITER_LE
#include "put_bits.h"
#include "put_bits.h"
...
@@ -111,6 +114,9 @@ typedef struct vorbis_enc_context {
...
@@ -111,6 +114,9 @@ typedef struct vorbis_enc_context {
float
*
coeffs
;
// also used for residue after floor
float
*
coeffs
;
// also used for residue after floor
float
quality
;
float
quality
;
AudioFrameQueue
afq
;
struct
FFBufQueue
bufqueue
;
int
ncodebooks
;
int
ncodebooks
;
vorbis_enc_codebook
*
codebooks
;
vorbis_enc_codebook
*
codebooks
;
...
@@ -1179,6 +1185,8 @@ static av_cold int vorbis_encode_close(AVCodecContext *avctx)
...
@@ -1179,6 +1185,8 @@ static av_cold int vorbis_encode_close(AVCodecContext *avctx)
ff_mdct_end
(
&
venc
->
mdct
[
0
]);
ff_mdct_end
(
&
venc
->
mdct
[
0
]);
ff_mdct_end
(
&
venc
->
mdct
[
1
]);
ff_mdct_end
(
&
venc
->
mdct
[
1
]);
ff_af_queue_close
(
&
venc
->
afq
);
ff_bufqueue_discard_all
(
&
venc
->
bufqueue
);
av_freep
(
&
avctx
->
extradata
);
av_freep
(
&
avctx
->
extradata
);
...
@@ -1211,6 +1219,8 @@ static av_cold int vorbis_encode_init(AVCodecContext *avctx)
...
@@ -1211,6 +1219,8 @@ static av_cold int vorbis_encode_init(AVCodecContext *avctx)
avctx
->
frame_size
=
1
<<
(
venc
->
log2_blocksize
[
0
]
-
1
);
avctx
->
frame_size
=
1
<<
(
venc
->
log2_blocksize
[
0
]
-
1
);
ff_af_queue_init
(
avctx
,
&
venc
->
afq
);
return
0
;
return
0
;
error:
error:
vorbis_encode_close
(
avctx
);
vorbis_encode_close
(
avctx
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment