rework ffmpeg seek, bld_script updates
[goodguy/history.git] / cinelerra-5.0 / cinelerra / fileffmpeg.C
index b5b459ef4faaca750407bdc743cbd755a0554a6e..1972a9eca9634824856e1427aecf285b0860e038 100644 (file)
@@ -247,22 +247,6 @@ int FileFFMPEG::close_file()
 }
 
 
-int FileFFMPEG::set_video_position(int64_t pos)
-{
-        if( !ff || pos < 0 || pos >= asset->video_length )
-               return 1;
-       return 0;
-}
-
-
-int FileFFMPEG::set_audio_position(int64_t pos)
-{
-        if( !ff || pos < 0 || pos >= asset->audio_length )
-               return 1;
-       return 0;
-}
-
-
 int FileFFMPEG::write_samples(double **buffer, int64_t len)
 {
         if( !ff || len < 0 ) return -1;