Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
6e330816
Commit
6e330816
authored
17 years ago
by
Justin Ruggles
Browse files
Options
Downloads
Patches
Plain Diff
fix Ogg/FLAC header size
Originally committed as revision 12626 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f3eec1cf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavformat/oggenc.c
+2
-2
2 additions, 2 deletions
libavformat/oggenc.c
tests/libav.regression.ref
+2
-2
2 additions, 2 deletions
tests/libav.regression.ref
with
4 additions
and
4 deletions
libavformat/oggenc.c
+
2
−
2
View file @
6e330816
...
...
@@ -88,8 +88,8 @@ static int ogg_build_flac_headers(const uint8_t *extradata, int extradata_size,
uint8_t
*
p
;
if
(
extradata_size
!=
34
)
return
-
1
;
oggstream
->
header_len
[
0
]
=
79
;
oggstream
->
header
[
0
]
=
av_mallocz
(
79
);
// per ogg flac specs
oggstream
->
header_len
[
0
]
=
51
;
oggstream
->
header
[
0
]
=
av_mallocz
(
51
);
// per ogg flac specs
p
=
oggstream
->
header
[
0
];
bytestream_put_byte
(
&
p
,
0x7F
);
bytestream_put_buffer
(
&
p
,
"FLAC"
,
4
);
...
...
This diff is collapsed.
Click to expand it.
tests/libav.regression.ref
+
2
−
2
View file @
6e330816
...
...
@@ -84,8 +84,8 @@ ae3a23a7ea13c92a2909445ca8144dcd *./tests/data/b-libav.aif
8d117c49d6b210abe783d1b0b897cec7 *./tests/data/b-libav.voc
32768 ./tests/data/b-libav.voc
./tests/data/b-libav.voc CRC=0x49972c8c
d7e6e9091a600b7208b29500be94aa89
*./tests/data/b-libav.ogg
23
624
./tests/data/b-libav.ogg
8ac1fa6e0ee5d47ea98aea17b67d5908
*./tests/data/b-libav.ogg
23
596
./tests/data/b-libav.ogg
./tests/data/b-libav.ogg CRC=0x93baa056
ce356ce2708cb6033ab5d762da93cfd4 *./tests/data/b-libav-yuv420p.yuv
304128 ./tests/data/b-libav-yuv420p.yuv
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment