Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
bfe5454c
Commit
bfe5454c
authored
Nov 27, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: move ff_codec_get_tag() and ff_codec_get_id() definitions to internal.h
parent
cdaa1f84
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
9 additions
and
16 deletions
+9
-16
aiff.h
libavformat/aiff.h
+1
-1
au.c
libavformat/au.c
+0
-1
cafdec.c
libavformat/cafdec.c
+0
-1
gxfenc.c
libavformat/gxfenc.c
+0
-1
internal.h
libavformat/internal.h
+3
-0
isom.c
libavformat/isom.c
+0
-1
lxfdec.c
libavformat/lxfdec.c
+0
-1
nsvdec.c
libavformat/nsvdec.c
+0
-1
nut.h
libavformat/nut.h
+1
-1
nutdec.c
libavformat/nutdec.c
+1
-0
nutenc.c
libavformat/nutenc.c
+1
-0
omadec.c
libavformat/omadec.c
+0
-1
riff.h
libavformat/riff.h
+0
-2
rmdec.c
libavformat/rmdec.c
+0
-1
rsodec.c
libavformat/rsodec.c
+0
-1
smjpegenc.c
libavformat/smjpegenc.c
+0
-1
swf.h
libavformat/swf.h
+1
-1
voc.h
libavformat/voc.h
+1
-1
No files found.
libavformat/aiff.h
View file @
bfe5454c
...
...
@@ -28,7 +28,7 @@
#define AVFORMAT_AIFF_H
#include "avformat.h"
#include "
riff
.h"
#include "
internal
.h"
static
const
AVCodecTag
ff_codec_aiff_tags
[]
=
{
{
AV_CODEC_ID_PCM_S16BE
,
MKTAG
(
'N'
,
'O'
,
'N'
,
'E'
)
},
...
...
libavformat/au.c
View file @
bfe5454c
...
...
@@ -31,7 +31,6 @@
#include "internal.h"
#include "avio_internal.h"
#include "pcm.h"
#include "riff.h"
/* if we don't know the size in advance */
#define AU_UNKNOWN_SIZE ((uint32_t)(~0))
...
...
libavformat/cafdec.c
View file @
bfe5454c
...
...
@@ -27,7 +27,6 @@
#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "isom.h"
#include "mov_chan.h"
#include "libavutil/intreadwrite.h"
...
...
libavformat/gxfenc.c
View file @
bfe5454c
...
...
@@ -24,7 +24,6 @@
#include "avformat.h"
#include "internal.h"
#include "gxf.h"
#include "riff.h"
#include "audiointerleave.h"
#define GXF_AUDIO_PACKET_SIZE 65536
...
...
libavformat/internal.h
View file @
bfe5454c
...
...
@@ -354,5 +354,8 @@ void ff_compute_frame_duration(int *pnum, int *pden, AVStream *st,
int
ff_get_audio_frame_size
(
AVCodecContext
*
enc
,
int
size
,
int
mux
);
unsigned
int
ff_codec_get_tag
(
const
AVCodecTag
*
tags
,
enum
AVCodecID
id
);
enum
AVCodecID
ff_codec_get_id
(
const
AVCodecTag
*
tags
,
unsigned
int
tag
);
#endif
/* AVFORMAT_INTERNAL_H */
libavformat/isom.c
View file @
bfe5454c
...
...
@@ -26,7 +26,6 @@
#include "avformat.h"
#include "internal.h"
#include "isom.h"
#include "riff.h"
#include "libavcodec/mpeg4audio.h"
#include "libavcodec/mpegaudiodata.h"
...
...
libavformat/lxfdec.c
View file @
bfe5454c
...
...
@@ -22,7 +22,6 @@
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "riff.h"
#define LXF_PACKET_HEADER_SIZE 60
#define LXF_HEADER_DATA_SIZE 120
...
...
libavformat/nsvdec.c
View file @
bfe5454c
...
...
@@ -23,7 +23,6 @@
#include "libavutil/mathematics.h"
#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "libavutil/dict.h"
//#define DEBUG_DUMP_INDEX // XXX dumbdriving-271.nsv breaks with it commented!!
...
...
libavformat/nut.h
View file @
bfe5454c
...
...
@@ -26,7 +26,7 @@
//#include "libavutil/adler32.h"
//#include "libavcodec/mpegaudio.h"
#include "avformat.h"
#include "
riff
.h"
#include "
internal
.h"
#include "metadata.h"
#define MAIN_STARTCODE (0x7A561F5F04ADULL + (((uint64_t)('N'<<8) + 'M')<<48))
...
...
libavformat/nutdec.c
View file @
bfe5454c
...
...
@@ -27,6 +27,7 @@
#include "libavutil/tree.h"
#include "avio_internal.h"
#include "nut.h"
#include "riff.h"
#undef NDEBUG
#include <assert.h>
...
...
libavformat/nutenc.c
View file @
bfe5454c
...
...
@@ -27,6 +27,7 @@
#include "nut.h"
#include "internal.h"
#include "avio_internal.h"
#include "riff.h"
static
int
find_expected_header
(
AVCodecContext
*
c
,
int
size
,
int
key_frame
,
uint8_t
out
[
64
])
...
...
libavformat/omadec.c
View file @
bfe5454c
...
...
@@ -47,7 +47,6 @@
#include "libavutil/des.h"
#include "oma.h"
#include "pcm.h"
#include "riff.h"
#include "id3v2.h"
...
...
libavformat/riff.h
View file @
bfe5454c
...
...
@@ -54,8 +54,6 @@ int ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size);
extern
const
AVCodecTag
ff_codec_bmp_tags
[];
extern
const
AVCodecTag
ff_codec_wav_tags
[];
unsigned
int
ff_codec_get_tag
(
const
AVCodecTag
*
tags
,
enum
AVCodecID
id
);
enum
AVCodecID
ff_codec_get_id
(
const
AVCodecTag
*
tags
,
unsigned
int
tag
);
void
ff_parse_specific_params
(
AVCodecContext
*
stream
,
int
*
au_rate
,
int
*
au_ssize
,
int
*
au_scale
);
int
ff_read_riff_info
(
AVFormatContext
*
s
,
int64_t
size
);
...
...
libavformat/rmdec.c
View file @
bfe5454c
...
...
@@ -25,7 +25,6 @@
#include "libavutil/dict.h"
#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "rmsipr.h"
#include "rm.h"
...
...
libavformat/rsodec.c
View file @
bfe5454c
...
...
@@ -25,7 +25,6 @@
#include "avformat.h"
#include "internal.h"
#include "pcm.h"
#include "riff.h"
#include "rso.h"
static
int
rso_read_header
(
AVFormatContext
*
s
)
...
...
libavformat/smjpegenc.c
View file @
bfe5454c
...
...
@@ -26,7 +26,6 @@
#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "smjpeg.h"
typedef
struct
SMJPEGMuxContext
{
...
...
libavformat/swf.h
View file @
bfe5454c
...
...
@@ -26,7 +26,7 @@
#include "libavutil/fifo.h"
#include "avformat.h"
#include "avio.h"
#include "
riff.h"
/* for CodecTag */
#include "
internal.h"
/* should have a generic way to indicate probable size */
#define DUMMY_FILE_SIZE (100 * 1024 * 1024)
...
...
libavformat/voc.h
View file @
bfe5454c
...
...
@@ -23,7 +23,7 @@
#define AVFORMAT_VOC_H
#include "avformat.h"
#include "
riff.h"
/* for CodecTag */
#include "
internal.h"
typedef
struct
voc_dec_context
{
int64_t
remaining_size
;
...
...
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