This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
removed warnings
Originally committed as revision 1496 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Fabrice Bellard
23 years ago
parent
7322a67c39
commit
2a6874fd24
2 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libavformat/dv.c
+1
-1
libavformat/raw.c
+ 2
- 1
libavformat/dv.c
View File
@@ -29,7 +29,8 @@ typedef struct DVDemuxContext {
static int dv_read_header(AVFormatContext *s,
AVFormatParameters *ap)
{
AVStream *vst, *ast;
AVStream *vst;
// AVStream *ast;
vst = av_new_stream(s, 0);
if (!vst)
+ 1
- 1
libavformat/raw.c
View File
@@ -82,7 +82,7 @@ int raw_read_packet(AVFormatContext *s,
AVPacket *pkt)
{
int ret, size;
AVStream *st = s->streams[0];
//
AVStream *st = s->streams[0];
size= RAW_PACKET_SIZE;
Write
Preview
Loading…
Cancel
Save