diff options
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/dv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index 6d698e2dc9..83019fc9a9 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -67,7 +67,7 @@ enum dv_pack_type { dv_audio_rectime = 0x53, dv_video_source = 0x60, dv_video_control = 0x61, - dv_viedo_recdate = 0x62, + dv_video_recdate = 0x62, dv_video_rectime = 0x63, dv_unknown_pack = 0xff, }; @@ -251,7 +251,7 @@ static int dv_write_pack(enum dv_pack_type pack_id, DVMuxContext *c, uint8_t* bu 0x7f; /* genre category */ break; case dv_audio_recdate: - case dv_viedo_recdate: /* VAUX recording date */ + case dv_video_recdate: /* VAUX recording date */ ct = c->start_time + (time_t)(c->frames / ((float)c->sys->frame_rate / (float)c->sys->frame_rate_base)); brktimegm(ct, &tc); |