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
5aa083ee
Commit
5aa083ee
authored
Jul 31, 2005
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A.B.C versions
Originally committed as revision 4486 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e53222d1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
10 deletions
+15
-10
avcodec.h
libavcodec/avcodec.h
+7
-6
h263.c
libavcodec/h263.c
+4
-0
avformat.h
libavformat/avformat.h
+4
-4
No files found.
libavcodec/avcodec.h
View file @
5aa083ee
...
...
@@ -15,17 +15,18 @@ extern "C" {
#include "rational.h"
#include <sys/types.h>
/* size_t */
//FIXME the following 2 really dont belong in here
#define FFMPEG_VERSION_INT 0x000409
#define FFMPEG_VERSION "CVS"
#define LIBAVCODEC_BUILD 4759
#define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
#define LIBAVCODEC_VERSION FFMPEG_VERSION
#define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s
#define LIBAVCODEC_IDENT "FFmpeg" LIBAVCODEC_VERSION "b" AV_STRINGIFY(LIBAVCODEC_BUILD)
#define LIBAVCODEC_VERSION_INT ((49<<16)+(0<<8)+0)
#define LIBAVCODEC_VERSION 49.0.0
#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
#define AV_NOPTS_VALUE int64_t_C(0x8000000000000000)
#define AV_TIME_BASE 1000000
...
...
libavcodec/h263.c
View file @
5aa083ee
...
...
@@ -5766,6 +5766,10 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){
e
=
sscanf
(
buf
,
"FFmpe%*[^b]b%d"
,
&
build
)
+
3
;
if
(
e
!=
4
)
e
=
sscanf
(
buf
,
"FFmpeg v%d.%d.%d / libavcodec build: %d"
,
&
ver
,
&
ver2
,
&
ver3
,
&
build
);
if
(
e
!=
4
){
e
=
sscanf
(
buf
,
"Lavc%d.%d.%d"
,
&
ver
,
&
ver2
,
&
ver3
)
+
1
;
build
=
(
ver
<<
16
)
+
(
ver2
<<
8
)
+
ver3
;
}
if
(
e
!=
4
){
if
(
strcmp
(
buf
,
"ffmpeg"
)
==
0
){
s
->
lavc_build
=
4600
;
...
...
libavformat/avformat.h
View file @
5aa083ee
...
...
@@ -5,11 +5,11 @@
extern
"C"
{
#endif
#define LIBAVFORMAT_BUILD 4629
#define LIBAVFORMAT_VERSION_INT ((49<<16)+(0<<8)+0)
#define LIBAVFORMAT_VERSION 49.0.0
#define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT
#define LIBAVFORMAT_VERSION_INT FFMPEG_VERSION_INT
#define LIBAVFORMAT_VERSION FFMPEG_VERSION
#define LIBAVFORMAT_IDENT "FFmpeg" FFMPEG_VERSION "b" AV_STRINGIFY(LIBAVFORMAT_BUILD)
#define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
#include <time.h>
#include <stdio.h>
/* FILE */
...
...
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