aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/ffmpeg_opt.c
Commit message (Expand)AuthorAgeFilesLines
* fftools/ffmpeg_opt: Check creation of new programAndreas Rheinhardt2022-09-011-0/+2
* fftools: Use report_error_then_exit_program() for allocation failuresAndreas Rheinhardt2022-09-011-43/+27
* fftools/ffmpeg: drop OutputStream.fps_modeAnton Khirnov2022-08-291-4/+4
* fftools/ffmpeg: drop OutputStream.encAnton Khirnov2022-08-291-23/+31
* fftools/ffmpeg_opt: try to propagate the requested output channel layoutJames Almer2022-08-231-1/+37
* fftools/ffmpeg: call av_guess_frame_rate() when opening the fileAnton Khirnov2022-08-221-0/+2
* fftools/ffmpeg: store a separate copy of input codec parametersAnton Khirnov2022-08-161-1/+5
* fftools/ffmpeg_demux: do not store demux packet in the contextAnton Khirnov2022-08-081-3/+0
* fftools/ffmpeg: store the input file index in InputFileAnton Khirnov2022-08-081-4/+5
* fftools/ffmpeg: deprecate specifying a sync stream with -mapAnton Khirnov2022-08-081-34/+7
* fftools/ffmpeg: remove OutputStream.sync_istAnton Khirnov2022-08-081-12/+6
* fftools/ffmpeg: remove OutputStream.encoding_neededAnton Khirnov2022-08-081-6/+2
* fftools/ffmpeg: remove OutputStream.stream_copyAnton Khirnov2022-08-081-21/+12
* fftools/ffmpeg_opt: drop redundant decoder selectionAnton Khirnov2022-08-081-5/+0
* fftools/ffmpeg_opt: move adding metadata out of open_output_file()Anton Khirnov2022-08-081-62/+63
* fftools/ffmpeg_opt: move adding programs out of open_output_file()Anton Khirnov2022-08-081-65/+70
* fftools/ffmpeg_opt: move adding attachments out of open_output_file()Anton Khirnov2022-08-081-36/+43
* ffmpeg_opt: consider HW acceleration method when selecting decoderHaihao Xiang2022-08-031-4/+30
* ffmpeg_opt: select a decoder after getting values for per-stream hwdec optionsHaihao Xiang2022-08-031-66/+68
* fftools/ffmpeg_opt: Fix copyinkfAndreas Rheinhardt2022-08-021-0/+3
* fftools/ffmpeg_opt: reindentAnton Khirnov2022-07-281-70/+70
* fftools/ffmpeg_opt: factor manually mapping streams out of open_output_file()Anton Khirnov2022-07-281-76/+81
* fftools/ffmpeg_opt: reindentAnton Khirnov2022-07-281-9/+9
* fftools/ffmpeg_opt: factor auto-mapping data streams out of open_output_file()Anton Khirnov2022-07-281-12/+16
* fftools/ffmpeg_opt: reduce indentation in map_auto_subtitle()Anton Khirnov2022-07-281-29/+31
* fftools/ffmpeg_opt: factor auto-mapping subtitles out of open_output_file()Anton Khirnov2022-07-281-32/+38
* fftools/ffmpeg_opt: reduce indentation in map_auto_audio()Anton Khirnov2022-07-281-28/+29
* fftools/ffmpeg_opt: factor auto-mapping audio out of open_output_file()Anton Khirnov2022-07-281-31/+40
* fftools/ffmpeg_opt: reduce indentation in map_auto_video()Anton Khirnov2022-07-281-35/+37
* fftools/ffmpeg_opt: factor auto-mapping video out of open_output_file()Anton Khirnov2022-07-281-38/+46
* fftools/ffmpeg: deprecate the -map_channel optionAnton Khirnov2022-07-281-3/+16
* fftools/ffmpeg: move guess_input_channel_layout() to ffmpeg_opt.cAnton Khirnov2022-07-281-0/+19
* fftools/ffmpeg_opt: drop a redundant assignmentAnton Khirnov2022-07-281-1/+0
* fftools/ffmpeg: stop allocating an encoder context when not encodingAnton Khirnov2022-07-281-20/+16
* fftools/ffmpeg: deprecate -psnrAnton Khirnov2022-07-281-2/+10
* fftools/ffmpeg: drop OutputStream.ref_parAnton Khirnov2022-07-281-6/+0
* fftools/ffmpeg: drop the -vol optionAnton Khirnov2022-07-281-3/+0
* fftools/ffmpeg: move each muxer to a separate threadAnton Khirnov2022-07-231-2/+2
* fftools/ffmpeg: depend on threadsAnton Khirnov2022-07-231-2/+0
* fftools/ffmpeg: make the muxer AVFormatContext private to ffmpeg_mux.cAnton Khirnov2022-07-231-2/+4
* fftools/ffmpeg: use the sync queues to handle -framesAnton Khirnov2022-07-231-5/+19
* fftools/ffmpeg: rework -shortest implementationAnton Khirnov2022-07-231-0/+82
* fftools/ffmpeg: use last filter output pts to choose next output streamAnton Khirnov2022-07-231-0/+1
* fftools/ffmpeg: move output file opts into private contextAnton Khirnov2022-07-231-6/+6
* fftools/ffmpeg: move the mux queue into muxer private dataAnton Khirnov2022-07-231-9/+0
* fftools/ffmpeg: refactor the code checking for bitexact outputAnton Khirnov2022-07-231-1/+26
* fftools/ffmpeg: refactor limiting output file size with -fsAnton Khirnov2022-07-231-2/+1
* fftools/ffmpeg: fix the type of limit_filesizeAnton Khirnov2022-07-231-1/+1
* fftools/ffmpeg_mux: add private muxer contextAnton Khirnov2022-07-231-0/+6
* ffmpeg: add option -isyncGyan Doshi2022-07-141-0/+59