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
37284120
Commit
37284120
authored
May 05, 2010
by
David Conrad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schroenc: Use AV_RB32
Originally committed as revision 23029 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
31cf8c65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
libschroedingerenc.c
libavcodec/libschroedingerenc.c
+2
-4
No files found.
libavcodec/libschroedingerenc.c
View file @
37284120
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
#include "avcodec.h"
#include "avcodec.h"
#include "libdirac_libschro.h"
#include "libdirac_libschro.h"
#include "libschroedinger.h"
#include "libschroedinger.h"
#include "bytestream.h"
/** libschroedinger encoder private data */
/** libschroedinger encoder private data */
...
@@ -319,10 +320,7 @@ static int libschroedinger_encode_frame(AVCodecContext *avccontext,
...
@@ -319,10 +320,7 @@ static int libschroedinger_encode_frame(AVCodecContext *avccontext,
/* Parse the coded frame number from the bitstream. Bytes 14
/* Parse the coded frame number from the bitstream. Bytes 14
* through 17 represesent the frame number. */
* through 17 represesent the frame number. */
p_frame_output
->
frame_num
=
(
enc_buf
->
data
[
13
]
<<
24
)
+
p_frame_output
->
frame_num
=
AV_RB32
(
enc_buf
->
data
+
13
);
(
enc_buf
->
data
[
14
]
<<
16
)
+
(
enc_buf
->
data
[
15
]
<<
8
)
+
enc_buf
->
data
[
16
];
ff_dirac_schro_queue_push_back
(
&
p_schro_params
->
enc_frame_queue
,
ff_dirac_schro_queue_push_back
(
&
p_schro_params
->
enc_frame_queue
,
p_frame_output
);
p_frame_output
);
...
...
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